diff -rNC3 sed-4.0.1/BUGS sed-4.0.2/BUGS *** sed-4.0.1/BUGS Sat Oct 26 14:15:20 2002 --- sed-4.0.2/BUGS Fri Nov 8 21:39:59 2002 *************** *** 29,38 **** * KNOWN BUGS The regular expression matcher chokes on some more complicated tests ! on some platforms. This should be no problem for more common sed usages. ! It is unknown whether this is a bug in gcc or whatever, only failures ! seem more common on PowerPC and MIPS machines, and with recent versions ! of gcc. Alpha, SPARC and x86 seem to be fine. * NON-BUGS --- 29,38 ---- * KNOWN BUGS The regular expression matcher chokes on some more complicated tests ! on some platforms. This should be no problem for more common sed ! usages. It is unknown whether this is a bug in gcc or whatever, only ! failures seem more common on PowerPC and MIPS machines. Alpha, SPARC ! and x86 seem to be fine. * NON-BUGS diff -rNC3 sed-4.0.1/Makefile.am sed-4.0.2/Makefile.am *** sed-4.0.1/Makefile.am Fri Oct 25 20:07:04 2002 --- sed-4.0.2/Makefile.am Fri Nov 8 21:36:47 2002 *************** *** 6,12 **** PACKAGE = sed ! SUBDIRS = doc lib intl po sed testsuite noinst_DATA = bootstrap.sh noinst_HEADERS = basicdefs.h --- 6,12 ---- PACKAGE = sed ! SUBDIRS = intl lib po sed doc testsuite noinst_DATA = bootstrap.sh noinst_HEADERS = basicdefs.h diff -rNC3 sed-4.0.1/Makefile.in sed-4.0.2/Makefile.in *** sed-4.0.1/Makefile.in Mon Oct 28 08:34:21 2002 --- sed-4.0.2/Makefile.in Tue Nov 19 20:32:32 2002 *************** *** 147,153 **** AUTOMAKE_OPTIONS = gnu 1.4 ACLOCAL_AMFLAGS = -I config ! SUBDIRS = doc lib intl po sed testsuite noinst_DATA = bootstrap.sh noinst_HEADERS = basicdefs.h --- 147,153 ---- AUTOMAKE_OPTIONS = gnu 1.4 ACLOCAL_AMFLAGS = -I config ! SUBDIRS = intl lib po sed doc testsuite noinst_DATA = bootstrap.sh noinst_HEADERS = basicdefs.h diff -rNC3 sed-4.0.1/NEWS sed-4.0.2/NEWS *** sed-4.0.1/NEWS Mon Oct 28 07:52:00 2002 --- sed-4.0.2/NEWS Tue Nov 19 20:38:40 2002 *************** *** 1,3 **** --- 1,10 ---- + Sed 4.0.2 + + * more translations + + * fix build problems (vpath builds and bootstrap builds) + + ---------------------------------------------------------------------------- Sed 4.0.1 * Remove last vestiges of super-sed diff -rNC3 sed-4.0.1/bootstrap.sh sed-4.0.2/bootstrap.sh *** sed-4.0.1/bootstrap.sh Mon Oct 28 08:35:55 2002 --- sed-4.0.2/bootstrap.sh Tue Nov 19 20:35:58 2002 *************** *** 19,25 **** */ #define PACKAGE "sed" ! #define VERSION "4.0.1-boot" #define BOOTSTRAP 1 /* Undefine if your compiler/headers have a conflicting definition. */ --- 19,25 ---- */ #define PACKAGE "sed" ! #define VERSION "4.0.2-boot" #define BOOTSTRAP 1 /* Undefine if your compiler/headers have a conflicting definition. */ *************** *** 46,61 **** cd lib || exit 1 ${CC} -DHAVE_CONFIG_H -I.. -I. -c \ alloca.c getline.c getopt.c getopt1.c memchr.c memcmp.c memmove.c \ ! obstack.c snprintf.c strerror.c utils.c || exit 1 ! ! cd ../pcre || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c \ ! regdebug.c regexec.c regexp.c reginfo.c regperl.c regposix.c \ ! regstudy.c regsub.c regtables.c || exit 1 cd ../sed || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -I../pcre -c \ ! sed.c compile.c execute.c regex.c || exit 1 ! ${CC} -o sed sed.o compile.o execute.o regex.o \ ! ../lib/*.o ../pcre/*.o || exit 1 --- 46,55 ---- cd lib || exit 1 ${CC} -DHAVE_CONFIG_H -I.. -I. -c \ alloca.c getline.c getopt.c getopt1.c memchr.c memcmp.c memmove.c \ ! obstack.c regex.c snprintf.c strerror.c utils.c || exit 1 cd ../sed || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c \ ! sed.c fmt.c compile.c execute.c regex.c || exit 1 ! ${CC} -o sed *.o ../lib/*.o || exit 1 diff -rNC3 sed-4.0.1/bootstrap.sh.in sed-4.0.2/bootstrap.sh.in *** sed-4.0.1/bootstrap.sh.in Thu Dec 27 11:17:44 2001 --- sed-4.0.2/bootstrap.sh.in Tue Nov 19 20:35:57 2002 *************** *** 46,61 **** cd lib || exit 1 ${CC} -DHAVE_CONFIG_H -I.. -I. -c \ alloca.c getline.c getopt.c getopt1.c memchr.c memcmp.c memmove.c \ ! obstack.c snprintf.c strerror.c utils.c || exit 1 ! ! cd ../pcre || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c \ ! regdebug.c regexec.c regexp.c reginfo.c regperl.c regposix.c \ ! regstudy.c regsub.c regtables.c || exit 1 cd ../sed || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -I../pcre -c \ ! sed.c compile.c execute.c regex.c || exit 1 ! ${CC} -o sed sed.o compile.o execute.o regex.o \ ! ../lib/*.o ../pcre/*.o || exit 1 --- 46,55 ---- cd lib || exit 1 ${CC} -DHAVE_CONFIG_H -I.. -I. -c \ alloca.c getline.c getopt.c getopt1.c memchr.c memcmp.c memmove.c \ ! obstack.c regex.c snprintf.c strerror.c utils.c || exit 1 cd ../sed || exit 1 ! ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c \ ! sed.c fmt.c compile.c execute.c regex.c || exit 1 ! ${CC} -o sed *.o ../lib/*.o || exit 1 diff -rNC3 sed-4.0.1/configure sed-4.0.2/configure *** sed-4.0.1/configure Mon Oct 28 08:34:28 2002 --- sed-4.0.2/configure Tue Nov 19 20:32:33 2002 *************** *** 1,6 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.54 for sed 4.0.1. # # Report bugs to . # --- 1,6 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.54 for sed 4.0.2. # # Report bugs to . # *************** *** 265,272 **** # Identity of this package. PACKAGE_NAME='sed' PACKAGE_TARNAME='sed' ! PACKAGE_VERSION='4.0.1' ! PACKAGE_STRING='sed 4.0.1' PACKAGE_BUGREPORT='bonzini@gnu.org' ac_unique_file="sed/sed.c" --- 265,272 ---- # Identity of this package. PACKAGE_NAME='sed' PACKAGE_TARNAME='sed' ! PACKAGE_VERSION='4.0.2' ! PACKAGE_STRING='sed 4.0.2' PACKAGE_BUGREPORT='bonzini@gnu.org' ac_unique_file="sed/sed.c" *************** *** 776,782 **** # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures sed 4.0.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... --- 776,782 ---- # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures sed 4.0.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... *************** *** 842,848 **** if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of sed 4.0.1:";; esac cat <<\_ACEOF --- 842,848 ---- if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of sed 4.0.2:";; esac cat <<\_ACEOF *************** *** 936,942 **** test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! sed configure 4.0.1 generated by GNU Autoconf 2.54 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 --- 936,942 ---- test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! sed configure 4.0.2 generated by GNU Autoconf 2.54 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 *************** *** 951,957 **** This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by sed $as_me 4.0.1, which was generated by GNU Autoconf 2.54. Invocation command line was $ $0 $@ --- 951,957 ---- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by sed $as_me 4.0.2, which was generated by GNU Autoconf 2.54. Invocation command line was $ $0 $@ *************** *** 1525,1531 **** # Define the identity of the package. PACKAGE=sed ! VERSION=4.0.1 cat >>confdefs.h <<_ACEOF --- 1525,1531 ---- # Define the identity of the package. PACKAGE=sed ! VERSION=4.0.2 cat >>confdefs.h <<_ACEOF *************** *** 7124,7130 **** } >&5 cat >&5 <<_CSEOF ! This file was extended by sed $as_me 4.0.1, which was generated by GNU Autoconf 2.54. Invocation command line was CONFIG_FILES = $CONFIG_FILES --- 7124,7130 ---- } >&5 cat >&5 <<_CSEOF ! This file was extended by sed $as_me 4.0.2, which was generated by GNU Autoconf 2.54. Invocation command line was CONFIG_FILES = $CONFIG_FILES *************** *** 7186,7192 **** cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! sed config.status 4.0.1 configured by $0, generated by GNU Autoconf 2.54, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" --- 7186,7192 ---- cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! sed config.status 4.0.2 configured by $0, generated by GNU Autoconf 2.54, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff -rNC3 sed-4.0.1/configure.ac sed-4.0.2/configure.ac *** sed-4.0.1/configure.ac Mon Oct 28 08:33:29 2002 --- sed-4.0.2/configure.ac Tue Nov 19 20:32:27 2002 *************** *** 1,5 **** dnl Process this file with -*- autoconf -*- to produce a configure script. ! AC_INIT(sed, 4.0.1, bonzini@gnu.org, sed) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR([sed/sed.c]) AM_CONFIG_HEADER(config.h:config_h.in) --- 1,5 ---- dnl Process this file with -*- autoconf -*- to produce a configure script. ! AC_INIT(sed, 4.0.2, bonzini@gnu.org, sed) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR([sed/sed.c]) AM_CONFIG_HEADER(config.h:config_h.in) diff -rNC3 sed-4.0.1/doc/Makefile.am sed-4.0.2/doc/Makefile.am *** sed-4.0.1/doc/Makefile.am Fri Oct 25 20:17:57 2002 --- sed-4.0.2/doc/Makefile.am Tue Nov 19 20:27:48 2002 *************** *** 1,22 **** ## Process this file with automake to produce Makefile.in info_TEXINFOS = sed.texi dist_man_MANS = sed.1 ! EXTRA_DIST = sed.x sed-in.texi groupify.sed ! noinst_DATA = sed.texi ! DISTCLEANFILES = sed.texi CLEANFILES = sed.html TEXI2DVI = $(top_srcdir)/config/texi2dvi --expand HELP2MAN = $(top_srcdir)/config/help2man # To produce better quality output, in the example sed # scripts we group comments with lines following them; # since mantaining the "@group...@end group" manually # is a burden, we do this automatically sed.texi: sed-in.texi groupify.sed ! sed -nf groupify.sed < sed-in.texi > sed.texi sed.1: $(top_srcdir)/sed/sed.c sed.x ! $(HELP2MAN) --include sed.x $(top_builddir)/sed/sed > $(srcdir)/sed.1 dist-hook: touch $(distdir)/sed.1 --- 1,22 ---- ## Process this file with automake to produce Makefile.in info_TEXINFOS = sed.texi dist_man_MANS = sed.1 ! dist_noinst_DATA = sed.x sed-in.texi ! dist_noinst_SCRIPTS = groupify.sed CLEANFILES = sed.html TEXI2DVI = $(top_srcdir)/config/texi2dvi --expand HELP2MAN = $(top_srcdir)/config/help2man + SED = $(top_builddir)/sed/sed # To produce better quality output, in the example sed # scripts we group comments with lines following them; # since mantaining the "@group...@end group" manually # is a burden, we do this automatically sed.texi: sed-in.texi groupify.sed ! sed -nf groupify.sed < $(srcdir)/sed-in.texi > $(srcdir)/sed.texi sed.1: $(top_srcdir)/sed/sed.c sed.x ! $(HELP2MAN) --include sed.x $(SED) > $(srcdir)/sed.1 dist-hook: touch $(distdir)/sed.1 diff -rNC3 sed-4.0.1/doc/Makefile.in sed-4.0.2/doc/Makefile.in *** sed-4.0.1/doc/Makefile.in Mon Oct 28 08:35:25 2002 --- sed-4.0.2/doc/Makefile.in Tue Nov 19 20:32:45 2002 *************** *** 143,158 **** target_alias = @target_alias@ info_TEXINFOS = sed.texi dist_man_MANS = sed.1 ! EXTRA_DIST = sed.x sed-in.texi groupify.sed ! noinst_DATA = sed.texi ! DISTCLEANFILES = sed.texi CLEANFILES = sed.html TEXI2DVI = $(top_srcdir)/config/texi2dvi --expand HELP2MAN = $(top_srcdir)/config/help2man subdir = doc mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = DIST_SOURCES = TEXINFO_TEX = $(top_srcdir)/config/texinfo.tex am__TEXINFO_TEX_DIR = $(top_srcdir)/config --- 143,160 ---- target_alias = @target_alias@ info_TEXINFOS = sed.texi dist_man_MANS = sed.1 ! dist_noinst_DATA = sed.x sed-in.texi ! dist_noinst_SCRIPTS = groupify.sed CLEANFILES = sed.html TEXI2DVI = $(top_srcdir)/config/texi2dvi --expand HELP2MAN = $(top_srcdir)/config/help2man + SED = $(top_builddir)/sed/sed subdir = doc mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = + SCRIPTS = $(dist_noinst_SCRIPTS) + DIST_SOURCES = TEXINFO_TEX = $(top_srcdir)/config/texinfo.tex am__TEXINFO_TEX_DIR = $(top_srcdir)/config *************** *** 164,172 **** NROFF = nroff MANS = $(dist_man_MANS) ! DATA = $(noinst_DATA) ! DIST_COMMON = $(dist_man_MANS) Makefile.am Makefile.in stamp-vti \ version.texi all: all-am --- 166,175 ---- NROFF = nroff MANS = $(dist_man_MANS) ! DATA = $(dist_noinst_DATA) ! DIST_COMMON = $(dist_man_MANS) $(dist_noinst_DATA) \ ! $(dist_noinst_SCRIPTS) Makefile.am Makefile.in stamp-vti \ version.texi all: all-am *************** *** 345,351 **** dist-info dist-hook check-am: all-am check: check-am ! all-am: Makefile $(INFO_DEPS) $(MANS) $(DATA) installdirs: $(mkinstalldirs) $(DESTDIR)$(infodir) $(DESTDIR)$(man1dir) --- 348,354 ---- dist-info dist-hook check-am: all-am check: check-am ! all-am: Makefile $(INFO_DEPS) $(SCRIPTS) $(MANS) $(DATA) installdirs: $(mkinstalldirs) $(DESTDIR)$(infodir) $(DESTDIR)$(man1dir) *************** *** 371,377 **** distclean-generic: -rm -f Makefile $(CONFIG_CLEAN_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" --- 374,379 ---- *************** *** 463,472 **** # since mantaining the "@group...@end group" manually # is a burden, we do this automatically sed.texi: sed-in.texi groupify.sed ! sed -nf groupify.sed < sed-in.texi > sed.texi sed.1: $(top_srcdir)/sed/sed.c sed.x ! $(HELP2MAN) --include sed.x $(top_builddir)/sed/sed > $(srcdir)/sed.1 dist-hook: touch $(distdir)/sed.1 --- 465,474 ---- # since mantaining the "@group...@end group" manually # is a burden, we do this automatically sed.texi: sed-in.texi groupify.sed ! sed -nf groupify.sed < $(srcdir)/sed-in.texi > $(srcdir)/sed.texi sed.1: $(top_srcdir)/sed/sed.c sed.x ! $(HELP2MAN) --include sed.x $(SED) > $(srcdir)/sed.1 dist-hook: touch $(distdir)/sed.1 diff -rNC3 sed-4.0.1/doc/sed.info-1 sed-4.0.2/doc/sed.info-1 *** sed-4.0.1/doc/sed.info-1 Fri Oct 25 20:24:28 2002 --- sed-4.0.2/doc/sed.info-1 Tue Nov 19 20:32:46 2002 *************** *** 5,11 **** END-INFO-DIR-ENTRY ! This file documents version 4.0.1 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. --- 5,11 ---- END-INFO-DIR-ENTRY ! This file documents version 4.0.2 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. *************** *** 25,31 **** ! This file documents version 4.0.1 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. --- 25,31 ---- ! This file documents version 4.0.2 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. diff -rNC3 sed-4.0.1/doc/stamp-vti sed-4.0.2/doc/stamp-vti *** sed-4.0.1/doc/stamp-vti Mon Oct 28 08:35:27 2002 --- sed-4.0.2/doc/stamp-vti Tue Nov 19 20:32:46 2002 *************** *** 1,4 **** @set UPDATED 2 October 2002 @set UPDATED-MONTH October 2002 ! @set EDITION 4.0.1 ! @set VERSION 4.0.1 --- 1,4 ---- @set UPDATED 2 October 2002 @set UPDATED-MONTH October 2002 ! @set EDITION 4.0.2 ! @set VERSION 4.0.2 diff -rNC3 sed-4.0.1/doc/version.texi sed-4.0.2/doc/version.texi *** sed-4.0.1/doc/version.texi Fri Oct 25 20:24:27 2002 --- sed-4.0.2/doc/version.texi Tue Nov 19 20:32:46 2002 *************** *** 1,4 **** @set UPDATED 2 October 2002 @set UPDATED-MONTH October 2002 ! @set EDITION 4.0.1 ! @set VERSION 4.0.1 --- 1,4 ---- @set UPDATED 2 October 2002 @set UPDATED-MONTH October 2002 ! @set EDITION 4.0.2 ! @set VERSION 4.0.2 Binary files sed-4.0.1/po/de.gmo and sed-4.0.2/po/de.gmo differ diff -rNC3 sed-4.0.1/po/de.po sed-4.0.2/po/de.po *** sed-4.0.1/po/de.po Mon Oct 28 08:07:41 2002 --- sed-4.0.2/po/de.po Fri Nov 8 20:11:21 2002 *************** *** 1,17 **** # sed german translation ! # Copyright (C) 2001 Free Software Foundation, Inc. ! # Walter Koch , 2001 # msgid "" msgstr "" ! "Project-Id-Version: sed 3.02.80\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 2001-07-02 12:41+0200\n" ! "Last-Translator: Walter Koch \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #. Various error messages we may want to print #: sed/compile.c:165 --- 1,18 ---- # sed german translation ! # Copyright (C) 2001, 2002 Free Software Foundation, Inc. ! # Walter Koch , 2001, 2002 # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.1\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 2002-11-07 16:03:41+0100\n" ! "Last-Translator: Walter Koch \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Various error messages we may want to print #: sed/compile.c:165 *************** *** 48,54 **** #: sed/compile.c:173 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "" #: sed/compile.c:174 msgid "`}' doesn't want any addresses" --- 49,55 ---- #: sed/compile.c:173 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "Nach `a', `c' oder `i' wird \\ erwartet" #: sed/compile.c:174 msgid "`}' doesn't want any addresses" *************** *** 141,155 **** #: sed/execute.c:1003 sed/execute.c:1183 msgid "error in subprocess" ! msgstr "" #: sed/execute.c:1005 msgid "option `e' not supported" ! msgstr "" #: sed/execute.c:1185 msgid "`e' command not supported" ! msgstr "" #: sed/execute.c:1415 #, c-format --- 142,156 ---- #: sed/execute.c:1003 sed/execute.c:1183 msgid "error in subprocess" ! msgstr "Fehler im Subprozess" #: sed/execute.c:1005 msgid "option `e' not supported" ! msgstr "Option `e' wird nicht unterstützt" #: sed/execute.c:1185 msgid "`e' command not supported" ! msgstr "`e'-Kommando wird nicht unterstützt" #: sed/execute.c:1415 #, c-format *************** *** 163,183 **** #: sed/regex.c:48 msgid "Cannot specify modifiers on empty regexp" ! msgstr "" #: sed/regex.c:146 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "" #: sed/sed.c:98 msgid "" " -R, --regexp-perl\n" " use Perl 5's regular expressions syntax in the script.\n" msgstr "" #: sed/sed.c:103 ! #, fuzzy, c-format msgid "" "Usage: %s [OPTION]... {script-only-if-no-other-script} [input-file]...\n" "\n" --- 164,186 ---- #: sed/regex.c:48 msgid "Cannot specify modifiers on empty regexp" ! msgstr "Auf leere reguläre Ausdrücke können keine `modifier' angewandt werden" #: sed/regex.c:146 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "Ungültiger Verweis \\%d in den Haltepuffer des `s'-Befehls" #: sed/sed.c:98 msgid "" " -R, --regexp-perl\n" " use Perl 5's regular expressions syntax in the script.\n" msgstr "" + " -R, --regexp-perl\n" + " Verwende die Perl 5 - Syntax für reg.Ausdrücke im Script.\n" #: sed/sed.c:103 ! #, c-format msgid "" "Usage: %s [OPTION]... {script-only-if-no-other-script} [input-file]...\n" "\n" *************** *** 211,237 **** "specified, then the standard input is read.\n" "\n" msgstr "" ! "Aufruf: %s [OPTION]... {script-nur-wenn-kein-anderes} [Eingabedatei]...\n" "\n" " -n, --quiet, --silent\n" " verhindert die automatische Ausgabe des Arbeitspuffers\n" " -e script, --expression=script\n" " hängt script an die auszuführenden Befehle an\n" ! " -f script-file, --file=script-Datei\n" " hängt den Inhalt von script-Datei an die\n" ! " auszuführenden Befehle\n" " -l N, --line-length=N\n" " gibt die gewünschte Zeilenumbruchlänge für den `l'-Befehl " "an\n" " -u, --unbuffered\n" ! "\n" " --help nur diese Hilfe anzeigen\n" " -V, --version nur die Version ausgeben\n" "\n" "Falls kein -e, --expression, -f, oder --file Option angegeben ist, wird das\n" "erste Argument, das keine Option ist als sed-Skript verwendet.\n" ! "Alle restlichen Argumente sind Namen von Eingabedateien. Falls keine\n" ! "Eingabedateien angegeben sind, wird von der Standardeingabe gelesen.\n" "\n" #: sed/sed.c:132 --- 214,252 ---- "specified, then the standard input is read.\n" "\n" msgstr "" ! "Aufruf: %s [OPTION]... {script-nur-wenn-kein-anderes-Script} " ! "[Eingabedatei]...\n" "\n" " -n, --quiet, --silent\n" " verhindert die automatische Ausgabe des Arbeitspuffers\n" " -e script, --expression=script\n" " hängt script an die auszuführenden Befehle an\n" ! " -f script-Datei, --file=script-Datei\n" " hängt den Inhalt von script-Datei an die\n" ! " auszuführenden Befehle an\n" ! " -i[suffix], --in-place[=suffix]\n" ! " ändert die Eingabedatei (erzeugt Backup, falls Suffix\n" ! " angegeben wurde)\n" " -l N, --line-length=N\n" " gibt die gewünschte Zeilenumbruchlänge für den `l'-Befehl " "an\n" + " -r, --regexp-extended\n" + " verwendet die erweiterten reg. Ausdrücke für das Script.\n" + "%s -s, --separate\n" + " die Dateien werden getrennt und nicht als gemeinsame\n" + " Quelle bearbeitet.\n" " -u, --unbuffered\n" ! " lade auf einamel nur kleinste Datenmengen aus den\n" ! " Eingabedateien und schreibe die Ausgabepuffer häufig " ! "zurück.\n" " --help nur diese Hilfe anzeigen\n" " -V, --version nur die Version ausgeben\n" "\n" "Falls kein -e, --expression, -f, oder --file Option angegeben ist, wird das\n" "erste Argument, das keine Option ist als sed-Skript verwendet.\n" ! "Alle restlichen Argumente werden als Namen von Eingabedateien betrachtet.\n" ! "Falls keine Eingabedateien angegeben sind, wird von der Standardeingabe " ! "gelesen.\n" "\n" #: sed/sed.c:132 *************** *** 241,263 **** "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" "Fehlerberichte (in Englisch!) per E-Mail an: %s .\n" ! "Verwenden Sie dabei den Begriff ``%s'' irgendwo in der ``Subject:''-Zeile.\n" #: sed/sed.c:255 #, c-format msgid "super-sed version %s\n" ! msgstr "" #: sed/sed.c:256 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" #: sed/sed.c:258 #, c-format msgid "GNU sed version %s\n" ! msgstr "" #: sed/sed.c:260 #, c-format --- 256,280 ---- "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" "Fehlerberichte (in Englisch!) per E-Mail an: %s .\n" ! "Verwenden Sie dabei den Begriff ``%s'' irgendwo in der ``Betreff:''-Zeile.\n" #: sed/sed.c:255 #, c-format msgid "super-sed version %s\n" ! msgstr "Super-sed version %s\n" #: sed/sed.c:256 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" + "basiert auf GNU sed Version 3.02.80\n" + "\n" #: sed/sed.c:258 #, c-format msgid "GNU sed version %s\n" ! msgstr "GNU sed Version %s\n" #: sed/sed.c:260 #, c-format *************** *** 278,292 **** "MARKTFÄHIGKEIT oder der ERFÜLLUNG EINES BESTIMMTEN ZWECKES.\n" #: lib/utils.c:131 ! #, fuzzy, c-format msgid "Couldn't open file %s: %s" ! msgstr "Datei %s kann nicht geöffnet werden" #: lib/utils.c:161 ! #, fuzzy, c-format msgid "couldn't write %d item to %s: %s" msgid_plural "couldn't write %d items to %s: %s" ! msgstr[0] "Kann %d Felder nicht auf %s schreiben: %s" msgstr[1] "Kann %d Felder nicht auf %s schreiben: %s" #: lib/utils.c:176 --- 295,309 ---- "MARKTFÄHIGKEIT oder der ERFÜLLUNG EINES BESTIMMTEN ZWECKES.\n" #: lib/utils.c:131 ! #, c-format msgid "Couldn't open file %s: %s" ! msgstr "Datei %s kann nicht geöffnet werden: %s" #: lib/utils.c:161 ! #, c-format msgid "couldn't write %d item to %s: %s" msgid_plural "couldn't write %d items to %s: %s" ! msgstr[0] "Kann %d Feld nicht auf %s schreiben: %s" msgstr[1] "Kann %d Felder nicht auf %s schreiben: %s" #: lib/utils.c:176 *************** *** 296,374 **** #: lib/regcomp.c:179 msgid "Success" ! msgstr "" #: lib/regcomp.c:182 msgid "No match" ! msgstr "" #: lib/regcomp.c:185 - #, fuzzy msgid "Invalid regular expression" ! msgstr "Kein vorheriger regulärer Ausdruck" #: lib/regcomp.c:188 msgid "Invalid collation character" ! msgstr "" #: lib/regcomp.c:191 msgid "Invalid character class name" ! msgstr "" #: lib/regcomp.c:194 msgid "Trailing backslash" ! msgstr "" #: lib/regcomp.c:197 msgid "Invalid back reference" ! msgstr "" #: lib/regcomp.c:200 - #, fuzzy msgid "Unmatched [ or [^" ! msgstr "Nicht paarweises `{'" #: lib/regcomp.c:203 - #, fuzzy msgid "Unmatched ( or \\(" ! msgstr "Nicht paarweises `{'" #: lib/regcomp.c:206 - #, fuzzy msgid "Unmatched \\{" ! msgstr "Nicht paarweises `{'" #: lib/regcomp.c:209 msgid "Invalid content of \\{\\}" ! msgstr "" #: lib/regcomp.c:212 msgid "Invalid range end" ! msgstr "" #: lib/regcomp.c:215 msgid "Memory exhausted" ! msgstr "" #: lib/regcomp.c:218 - #, fuzzy msgid "Invalid preceding regular expression" ! msgstr "Kein vorheriger regulärer Ausdruck" #: lib/regcomp.c:221 - #, fuzzy msgid "Premature end of regular expression" ! msgstr "Kein vorheriger regulärer Ausdruck" #: lib/regcomp.c:224 - #, fuzzy msgid "Regular expression too big" ! msgstr "Kein vorheriger regulärer Ausdruck" #: lib/regcomp.c:227 - #, fuzzy msgid "Unmatched ) or \\)" ! msgstr "Nicht paarweises `{'" #~ msgid "bad regexp: %s\n" #~ msgstr "Falscher regulärer Ausdruck: %s\n" --- 313,383 ---- #: lib/regcomp.c:179 msgid "Success" ! msgstr "Erfolgreich" #: lib/regcomp.c:182 msgid "No match" ! msgstr "Keine Übereinstimmung" #: lib/regcomp.c:185 msgid "Invalid regular expression" ! msgstr "Ungültiger regulärer Ausdruck" #: lib/regcomp.c:188 msgid "Invalid collation character" ! msgstr "Ungültiger Vergleichszeichen" #: lib/regcomp.c:191 msgid "Invalid character class name" ! msgstr "Ungültige Zeichenklassenname" #: lib/regcomp.c:194 msgid "Trailing backslash" ! msgstr "Abschliessender Backslash" #: lib/regcomp.c:197 msgid "Invalid back reference" ! msgstr "Ungültiger Rückwärtsverweis" #: lib/regcomp.c:200 msgid "Unmatched [ or [^" ! msgstr "Nicht paarweises [ bzw. [^" #: lib/regcomp.c:203 msgid "Unmatched ( or \\(" ! msgstr "Nicht paarweises ( bzw. \\(" #: lib/regcomp.c:206 msgid "Unmatched \\{" ! msgstr "Nicht paarweises \\{" #: lib/regcomp.c:209 msgid "Invalid content of \\{\\}" ! msgstr "Ungültiger Inhalt in \\{\\}" #: lib/regcomp.c:212 msgid "Invalid range end" ! msgstr "Ungültiges Bereichende" #: lib/regcomp.c:215 msgid "Memory exhausted" ! msgstr "Speicher erschöpft" #: lib/regcomp.c:218 msgid "Invalid preceding regular expression" ! msgstr "Vorheriger regulärer Ausdruck ist ungültig" #: lib/regcomp.c:221 msgid "Premature end of regular expression" ! msgstr "Regulärer Ausdruck endet zu früh" #: lib/regcomp.c:224 msgid "Regular expression too big" ! msgstr "Regulärer Ausdruck ist zu groß" #: lib/regcomp.c:227 msgid "Unmatched ) or \\)" ! msgstr "Nicht paarweises ) bzw. \\)" #~ msgid "bad regexp: %s\n" #~ msgstr "Falscher regulärer Ausdruck: %s\n" Binary files sed-4.0.1/po/fr.gmo and sed-4.0.2/po/fr.gmo differ diff -rNC3 sed-4.0.1/po/fr.po sed-4.0.2/po/fr.po *** sed-4.0.1/po/fr.po Tue Nov 5 14:11:10 2002 --- sed-4.0.2/po/fr.po Tue Nov 19 20:40:42 2002 *************** *** 8,16 **** # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 2002-11-04 01:45+0100\n" "Last-Translator: Gaël Quéri \n" "Language-Team: French \n" "MIME-Version: 1.0\n" --- 8,16 ---- # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.1\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 2002-11-12 11:28+0100\n" "Last-Translator: Gaël Quéri \n" "Language-Team: French \n" "MIME-Version: 1.0\n" Binary files sed-4.0.1/po/pt_BR.gmo and sed-4.0.2/po/pt_BR.gmo differ diff -rNC3 sed-4.0.1/po/pt_BR.po sed-4.0.2/po/pt_BR.po *** sed-4.0.1/po/pt_BR.po Mon Oct 28 08:07:44 2002 --- sed-4.0.2/po/pt_BR.po Tue Nov 19 20:40:43 2002 *************** *** 1,54 **** # traduções para o português do Brasil das mensagens de erro do sed # Copyright (C) 1999 Free Software Foundation, Inc. ! # Aurélio Marinho Jargas , 1999. # msgid "" msgstr "" ! "Project-Id-Version: sed 3.02a\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 1998-09-09 19:32-0300\n" ! "Last-Translator: Aurélio Marinho Jargas \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" ! "Content-Transfer-Encoding: 8BIT\n" #. Various error messages we may want to print #: sed/compile.c:165 msgid "Invalid use of address modifier" ! msgstr "uso incorreto do modificador de endereço" #: sed/compile.c:166 msgid "Multiple `!'s" ! msgstr "`!'s múltiplas" #: sed/compile.c:167 msgid "Unexpected `,'" ! msgstr "não esperado: `,'" #: sed/compile.c:168 msgid "Unexpected End-of-file" ! msgstr "não esperado: Fim-de-arquivo" #: sed/compile.c:169 msgid "Cannot use +N or ~N as first address" ! msgstr "não use +N ou ~N como o primeiro endereço" #: sed/compile.c:170 msgid "Unmatched `{'" ! msgstr "não terminado: `{'" #: sed/compile.c:171 msgid "Unexpected `}'" ! msgstr "não esperado: `}'" #: sed/compile.c:172 msgid "Extra characters after command" ! msgstr "há caracteres sobrando após o comando" #: sed/compile.c:173 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "" #: sed/compile.c:174 msgid "`}' doesn't want any addresses" --- 1,58 ---- # traduções para o português do Brasil das mensagens de erro do sed # Copyright (C) 1999 Free Software Foundation, Inc. ! # Aurélio Marinho Jargas , 1999, 2002. ! # ! # Tradução original da versão 4.01: ! # Juan Carlos Castro y Castro , 2002. # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.1\n" "POT-Creation-Date: 2002-10-28 08:07+0100\n" ! "PO-Revision-Date: 2002-11-08 17:44-0300\n" ! "Last-Translator: Aurélio Marinho Jargas \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" ! "Content-Transfer-Encoding: 8bit\n" ! "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Various error messages we may want to print #: sed/compile.c:165 msgid "Invalid use of address modifier" ! msgstr "Uso incorreto do modificador de endereço" #: sed/compile.c:166 msgid "Multiple `!'s" ! msgstr "Exclamações `!' múltiplas" #: sed/compile.c:167 msgid "Unexpected `,'" ! msgstr "Vírgula `,' inesperada" #: sed/compile.c:168 msgid "Unexpected End-of-file" ! msgstr "Fim-de-arquivo inesperado" #: sed/compile.c:169 msgid "Cannot use +N or ~N as first address" ! msgstr "Não use +N ou ~N como o primeiro endereço" #: sed/compile.c:170 msgid "Unmatched `{'" ! msgstr "`{' não terminada" #: sed/compile.c:171 msgid "Unexpected `}'" ! msgstr "`}' inesperada" #: sed/compile.c:172 msgid "Extra characters after command" ! msgstr "Há caracteres sobrando após o comando" #: sed/compile.c:173 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "Deve haver um escape \\ depois dos comandos `a', `c' e `i'" #: sed/compile.c:174 msgid "`}' doesn't want any addresses" *************** *** 60,90 **** #: sed/compile.c:176 msgid "Comments don't accept any addresses" ! msgstr "comentários não aceitam endereços" #: sed/compile.c:177 msgid "Missing command" ! msgstr "faltam comandos" #: sed/compile.c:178 msgid "Command only uses one address" ! msgstr "o comando usa apenas um endereço" #: sed/compile.c:179 msgid "Unterminated address regex" ! msgstr "expressão regular com endereço inacabado" #: sed/compile.c:180 msgid "Unterminated `s' command" ! msgstr "comando `s' inacabado" #: sed/compile.c:181 msgid "Unterminated `y' command" ! msgstr "comando `y' inacabado" #: sed/compile.c:182 msgid "Unknown option to `s'" ! msgstr "opção desconhecida para o comando `s'" #: sed/compile.c:183 msgid "multiple `p' options to `s' command" --- 64,94 ---- #: sed/compile.c:176 msgid "Comments don't accept any addresses" ! msgstr "Comentários não aceitam endereços" #: sed/compile.c:177 msgid "Missing command" ! msgstr "Falta especificar um comando ao endereço" #: sed/compile.c:178 msgid "Command only uses one address" ! msgstr "Este comando usa apenas um endereço" #: sed/compile.c:179 msgid "Unterminated address regex" ! msgstr "A expressão regular do endereço está inacabada (falta a /)" #: sed/compile.c:180 msgid "Unterminated `s' command" ! msgstr "Comando `s' inacabado (s/// - faltou delimitador)" #: sed/compile.c:181 msgid "Unterminated `y' command" ! msgstr "Comando `y' inacabado (y/// - faltou delimitador)" #: sed/compile.c:182 msgid "Unknown option to `s'" ! msgstr "Opção desconhecida para o comando `s' (s///?)" #: sed/compile.c:183 msgid "multiple `p' options to `s' command" *************** *** 96,119 **** #: sed/compile.c:186 msgid "multiple number options to `s' command" ! msgstr "opções numéricas múltiplas para o comando `s'" #: sed/compile.c:188 msgid "number option to `s' command may not be zero" ! msgstr "a opção numérica para o comando `s' não pode ser zero" #: sed/compile.c:190 msgid "strings for y command are different lengths" ! msgstr "os padrões para o comando `y' têm tamanhos diferentes" #: sed/compile.c:233 #, c-format msgid "Called savchar() with unexpected pushback (%x)" ! msgstr "chamou savchar() com um retorno (%x) não esperado" #: sed/compile.c:1319 msgid "Unknown command:" ! msgstr "comando desconhecido:" #: sed/compile.c:1340 #, c-format --- 100,123 ---- #: sed/compile.c:186 msgid "multiple number options to `s' command" ! msgstr "opções numéricas múltiplas para o comando `s' (s///n)" #: sed/compile.c:188 msgid "number option to `s' command may not be zero" ! msgstr "A opção numérica para o comando `s' não pode ser zero (s///0)" #: sed/compile.c:190 msgid "strings for y command are different lengths" ! msgstr "Os textos para o comando `y' têm tamanhos diferentes (y/abc/z/)" #: sed/compile.c:233 #, c-format msgid "Called savchar() with unexpected pushback (%x)" ! msgstr "Foi chamado savchar() com um retorno (%x) não esperado" #: sed/compile.c:1319 msgid "Unknown command:" ! msgstr "Comando desconhecido:" #: sed/compile.c:1340 #, c-format *************** *** 128,134 **** #: sed/compile.c:1543 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "não foi possível encontrar a marca para o pulo até `%s'" #: sed/execute.c:516 #, c-format --- 132,138 ---- #: sed/compile.c:1543 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "Não foi possível encontrar a marcação `%s'" #: sed/execute.c:516 #, c-format *************** *** 141,183 **** #: sed/execute.c:1003 sed/execute.c:1183 msgid "error in subprocess" ! msgstr "" #: sed/execute.c:1005 msgid "option `e' not supported" ! msgstr "" #: sed/execute.c:1185 msgid "`e' command not supported" ! msgstr "" #: sed/execute.c:1415 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" ! msgstr "ERRO INTERNO: comando inválido %c" #. XXX shouldn't this be (UCHAR_MAX+1)? #: lib/regcomp.c:658 sed/regex.c:47 msgid "No previous regular expression" ! msgstr "não há uma expressão regular prévia" #: sed/regex.c:48 msgid "Cannot specify modifiers on empty regexp" ! msgstr "" #: sed/regex.c:146 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "" #: sed/sed.c:98 msgid "" " -R, --regexp-perl\n" " use Perl 5's regular expressions syntax in the script.\n" msgstr "" #: sed/sed.c:103 ! #, fuzzy, c-format msgid "" "Usage: %s [OPTION]... {script-only-if-no-other-script} [input-file]...\n" "\n" --- 145,189 ---- #: sed/execute.c:1003 sed/execute.c:1183 msgid "error in subprocess" ! msgstr "erro no subprocesso" #: sed/execute.c:1005 msgid "option `e' not supported" ! msgstr "opção `e' não suportada" #: sed/execute.c:1185 msgid "`e' command not supported" ! msgstr "comando `e' não suportado" #: sed/execute.c:1415 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" ! msgstr "ERRO INTERNO: Comando inválido %c" #. XXX shouldn't this be (UCHAR_MAX+1)? #: lib/regcomp.c:658 sed/regex.c:47 msgid "No previous regular expression" ! msgstr "Não há expressão regular anterior" #: sed/regex.c:48 msgid "Cannot specify modifiers on empty regexp" ! msgstr "Não é permitido especificar modificadores numa expressão regular vazia" #: sed/regex.c:146 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "Referência inválida \\%d na segunda parte do comando `s'" #: sed/sed.c:98 msgid "" " -R, --regexp-perl\n" " use Perl 5's regular expressions syntax in the script.\n" msgstr "" + " -R, --regexp-perl\n" + " usar sintaxe de expressões regulares do Perl 5 no script.\n" #: sed/sed.c:103 ! #, c-format msgid "" "Usage: %s [OPTION]... {script-only-if-no-other-script} [input-file]...\n" "\n" *************** *** 211,232 **** "specified, then the standard input is read.\n" "\n" msgstr "" ! "uso: %s [OPÇÃO]... {roteiro-apenas-se-for-único} [arquivo-entrada]...\n" "\n" " -n, --quiet, --silent\n" " suprime a impressão automática do espaço-do-padrão\n" ! " -e roteiro, --expression=roteiro\n" ! " adiciona o roteiro aos comandos a serem executados\n" ! " -f arquivo-roteiro, --file=arquivo-roteiro\n" ! " adiciona o conteúdo do arquivo-roteiro aos comandos\n" " a serem executados\n" " --help mostra esta ajuda e sai\n" " -V, --version mostra informações sobre a versão e sai\n" "\n" ! "se nenhuma opção -e, --expression, -f, ou --file é dada, o primeiro\n" ! "argumento que não seja uma opção é tido como o roteiro sed a ser\n" ! "interpretado. todos os argumentos que ainda restarem são tidos como\n" ! "nomes de arquivos de entrada. caso nenhum arquivo de entrada seja\n" "especificado, então a entrada padrão será lida.\n" "\n" --- 217,252 ---- "specified, then the standard input is read.\n" "\n" msgstr "" ! "Uso: %s [OPÇÃO]... {script-apenas-se-for-único} [arquivo-entrada]...\n" "\n" " -n, --quiet, --silent\n" " suprime a impressão automática do espaço-do-padrão\n" ! " -e script, --expression=script\n" ! " adiciona o script aos comandos a serem executados\n" ! " -f arquivo-script, --file=arquivo-script\n" ! " adiciona o conteúdo do arquivo-script aos comandos\n" " a serem executados\n" + " -i[suffix], --in-place[=suffix]\n" + " altera os próprios arquivos (faz backup se extensão " + "fornecida)\n" + " -l N, --line-length=N\n" + " determina comprimento da quebra de linha para comando `l'\n" + " -r, --regexp-extended\n" + " usar expressões regulares estendidas no script.\n" + "%s -s, --separate\n" + " considera arquivos como entidades separadas, e não como um\n" + " longo e único fluxo de dados.\n" + " -u, --unbuffered\n" + " carrega uma quantidade mínima de dados dos arquivos de " + "entrada\n" + " e descarrega os buffers de saída com mais freqüência\n" " --help mostra esta ajuda e sai\n" " -V, --version mostra informações sobre a versão e sai\n" "\n" ! "Se nenhuma opção -e, --expression, -f, ou --file é dada, o primeiro\n" ! "argumento que não seja uma opção é considerado como o script sed a ser\n" ! "interpretado. Todos os argumentos restantes são considerados como\n" ! "nomes de arquivos de entrada. Caso nenhum arquivo de entrada seja\n" "especificado, então a entrada padrão será lida.\n" "\n" *************** *** 236,259 **** "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "mande notificações de erros (em inglês) para: %s\n" ! "inclua a palavra ``%s'' no campo ``Assunto:'' ou ``Subject:''.\n" #: sed/sed.c:255 #, c-format msgid "super-sed version %s\n" ! msgstr "" #: sed/sed.c:256 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" #: sed/sed.c:258 #, c-format msgid "GNU sed version %s\n" ! msgstr "" #: sed/sed.c:260 #, c-format --- 256,281 ---- "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "Envie relatórios de erros (em inglês) para: %s .\n" ! "Inclua a palavra ``%s'' no campo ``Assunto:'' ou ``Subject:''.\n" #: sed/sed.c:255 #, c-format msgid "super-sed version %s\n" ! msgstr "super-sed versão %s\n" #: sed/sed.c:256 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" + "baseado no GNU sed versão 3.02.80\n" + "\n" #: sed/sed.c:258 #, c-format msgid "GNU sed version %s\n" ! msgstr "GNU sed versão %s\n" #: sed/sed.c:260 #, c-format *************** *** 264,285 **** "to the extent permitted by law.\n" msgstr "" "%s\n" ! "este é um aplicativo de livre distribuição. veja os fontes para conhecer as\n" ! "condições de cópia. NÃO há garantias. nem mesmo para os aspectos mercantis\n" ! "ou de atendimento a finalidades específicas, assim como não cobre extensões\n" ! "eventualmente permitidas pela lei.\n" #: lib/utils.c:131 ! #, fuzzy, c-format msgid "Couldn't open file %s: %s" ! msgstr "não foi possível abrir o arquivo %s" #: lib/utils.c:161 ! #, fuzzy, c-format msgid "couldn't write %d item to %s: %s" msgid_plural "couldn't write %d items to %s: %s" ! msgstr[0] "não foi possível escrever %d item%s para %s: %s" ! msgstr[1] "não foi possível escrever %d item%s para %s: %s" #: lib/utils.c:176 #, c-format --- 286,306 ---- "to the extent permitted by law.\n" msgstr "" "%s\n" ! "Este programa é Software Livre. Veja os fontes para conhecer as condições\n" ! "de cópia. NÃO há garantias, nem mesmo para os aspectos mercantis ou de\n" ! "atendimento a finalidades específicas, tanto quanto a lei permita.\n" #: lib/utils.c:131 ! #, c-format msgid "Couldn't open file %s: %s" ! msgstr "Não foi possível abrir o arquivo %s: %s" #: lib/utils.c:161 ! #, c-format msgid "couldn't write %d item to %s: %s" msgid_plural "couldn't write %d items to %s: %s" ! msgstr[0] "não foi possível escrever %d item para %s: %s" ! msgstr[1] "não foi possível escrever %d items para %s: %s" #: lib/utils.c:176 #, c-format *************** *** 288,369 **** #: lib/regcomp.c:179 msgid "Success" ! msgstr "" #: lib/regcomp.c:182 msgid "No match" ! msgstr "" #: lib/regcomp.c:185 - #, fuzzy msgid "Invalid regular expression" ! msgstr "não há uma expressão regular prévia" #: lib/regcomp.c:188 msgid "Invalid collation character" ! msgstr "" #: lib/regcomp.c:191 msgid "Invalid character class name" ! msgstr "" #: lib/regcomp.c:194 msgid "Trailing backslash" ! msgstr "" #: lib/regcomp.c:197 msgid "Invalid back reference" ! msgstr "" #: lib/regcomp.c:200 - #, fuzzy msgid "Unmatched [ or [^" ! msgstr "não terminado: `{'" #: lib/regcomp.c:203 - #, fuzzy msgid "Unmatched ( or \\(" ! msgstr "não terminado: `{'" #: lib/regcomp.c:206 - #, fuzzy msgid "Unmatched \\{" ! msgstr "não terminado: `{'" #: lib/regcomp.c:209 msgid "Invalid content of \\{\\}" ! msgstr "" #: lib/regcomp.c:212 msgid "Invalid range end" ! msgstr "" #: lib/regcomp.c:215 msgid "Memory exhausted" ! msgstr "" #: lib/regcomp.c:218 - #, fuzzy msgid "Invalid preceding regular expression" ! msgstr "não há uma expressão regular prévia" #: lib/regcomp.c:221 - #, fuzzy msgid "Premature end of regular expression" ! msgstr "não há uma expressão regular prévia" #: lib/regcomp.c:224 - #, fuzzy msgid "Regular expression too big" ! msgstr "não há uma expressão regular prévia" #: lib/regcomp.c:227 - #, fuzzy msgid "Unmatched ) or \\)" ! msgstr "não terminado: `{'" ! ! #~ msgid "bad regexp: %s\n" ! #~ msgstr "expressão regular inválida: %s\n" ! ! #~ msgid "input read error: %s" ! #~ msgstr "erro de leitura na entrada: %s" --- 309,376 ---- #: lib/regcomp.c:179 msgid "Success" ! msgstr "Sucesso" #: lib/regcomp.c:182 msgid "No match" ! msgstr "Nada encontrado" #: lib/regcomp.c:185 msgid "Invalid regular expression" ! msgstr "Expressão regular inválida" #: lib/regcomp.c:188 msgid "Invalid collation character" ! msgstr "Caractere de ordenação inválido" #: lib/regcomp.c:191 msgid "Invalid character class name" ! msgstr "Nome inválido de classe de caracteres" #: lib/regcomp.c:194 msgid "Trailing backslash" ! msgstr "Escape \\ no final" #: lib/regcomp.c:197 msgid "Invalid back reference" ! msgstr "Retrovisor \\n inválido" #: lib/regcomp.c:200 msgid "Unmatched [ or [^" ! msgstr "[ ou [^ não terminado" #: lib/regcomp.c:203 msgid "Unmatched ( or \\(" ! msgstr "( ou \\( não terminado" #: lib/regcomp.c:206 msgid "Unmatched \\{" ! msgstr "\\{ não terminado" #: lib/regcomp.c:209 msgid "Invalid content of \\{\\}" ! msgstr "Conteúdo inválido no \\{\\} (permitidos números e vírgula)" #: lib/regcomp.c:212 msgid "Invalid range end" ! msgstr "Fim de intervalo (range) inválido" #: lib/regcomp.c:215 msgid "Memory exhausted" ! msgstr "Falta de memória" #: lib/regcomp.c:218 msgid "Invalid preceding regular expression" ! msgstr "Expressão regular anterior inválida" #: lib/regcomp.c:221 msgid "Premature end of regular expression" ! msgstr "Fim prematuro da expressão regular" #: lib/regcomp.c:224 msgid "Regular expression too big" ! msgstr "Expressão regular grande demais" #: lib/regcomp.c:227 msgid "Unmatched ) or \\)" ! msgstr ") or \\) inesperado" diff -rNC3 sed-4.0.1/testsuite/Makefile.tests sed-4.0.2/testsuite/Makefile.tests *** sed-4.0.1/testsuite/Makefile.tests Tue Nov 5 14:17:01 2002 --- sed-4.0.2/testsuite/Makefile.tests Tue Nov 19 20:28:39 2002 *************** *** 1,7 **** # Testsuite makefile for GNU sed ! srcdir=. ! SED=LANG=LC_CTYPE=C LC_MESSAGES=C LANG=C ../sed/sed #TIME=time CMP=cmp RM=rm -f --- 1,9 ---- # Testsuite makefile for GNU sed ! # These are only fallback values. They are usually overridden by runtest. ! srcdir = . ! SED = LC_ALL=C ../sed/sed ! #TIME=time CMP=cmp RM=rm -f *************** *** 33,39 **** @$(RM) $@.1out $@.wout spencer:: ! sh $(srcdir)/$@.sh $(SED) < $(srcdir)/$@.inp \ | $(TIME) sh | grep failed; \ test $$? = 1 --- 35,41 ---- @$(RM) $@.1out $@.wout spencer:: ! sh $(srcdir)/$@.sh '$(SED)' < $(srcdir)/$@.inp \ | $(TIME) sh | grep failed; \ test $$? = 1 diff -rNC3 sed-4.0.1/testsuite/runtest sed-4.0.2/testsuite/runtest *** sed-4.0.1/testsuite/runtest Sun Dec 16 13:29:55 2001 --- sed-4.0.2/testsuite/runtest Tue Nov 19 20:28:39 2002 *************** *** 2,8 **** : ${MAKE=make} : ${srcdir=.} ! : ${SED=../sed/sed} makefile="$srcdir/Makefile.tests" test=`echo "$@"| sed 's,.*/,,'` --- 2,8 ---- : ${MAKE=make} : ${srcdir=.} ! : ${SED="LC_ALL=C ../sed/sed"} makefile="$srcdir/Makefile.tests" test=`echo "$@"| sed 's,.*/,,'`