diff -rNC3 sed-4.0.6/ChangeLog sed-4.0.7/ChangeLog *** sed-4.0.6/ChangeLog Sat Mar 15 07:42:21 2003 --- sed-4.0.7/ChangeLog Wed Mar 26 21:06:54 2003 *************** *** 1,3 **** --- 1,24 ---- + 2003-03-25 Paolo Bonzini + + * sed/execute.c (append_replacement): extract from + do_subst + (do_subst): don't update count when a match was + skipped. + * testsuite/xbxcx3.good, testsuite/xbxcx3.sed, + testsuite/xbxcx3.inp: regression tests + + 2003-03-23 Paolo Bonzini + + * sed/execute.c (do_subst): fix several bugs with + numbered matches + * testsuite/numsub2.good, testsuite/numsub2.inp, + testsuite/numsub2.sed, testsuite/numsub3.good, + testsuite/numsub3.inp, testsuite/numsub3.sed, + testsuite/numsub4.good, testsuite/numsub4.inp, + testsuite/numsub4.sed, testsuite/numsub5.good, + testsuite/numsub5.inp, testsuite/numsub5.sed: + regression tests for the bugs + 2003-03-15 Paolo Bonzini *** Version 4.0.6 released diff -rNC3 sed-4.0.6/NEWS sed-4.0.7/NEWS *** sed-4.0.6/NEWS Thu Mar 13 19:37:57 2003 --- sed-4.0.7/NEWS Wed Mar 26 21:13:21 2003 *************** *** 1,3 **** --- 1,19 ---- + Sed 4.0.7 + + * VPATH builds working on non-glibc machines + + * fixed bug in s///Np: was printing even if less than N matches were + found. + + * fixed infinite loop on s///N when LHS matched a null string and + there were not enough matches in pattern space + + * behavior of s///N is consistent with s///g when the LHS can match + a null string (and the infinite loop did not happen :-) + + * updated some translations + + ---------------------------------------------------------------------------- Sed 4.0.6 * added parameter to `v' for the version of sed that is expected. diff -rNC3 sed-4.0.6/THANKS sed-4.0.7/THANKS *** sed-4.0.6/THANKS Sat Dec 14 09:27:44 2002 --- sed-4.0.7/THANKS Fri Mar 28 15:55:44 2003 *************** *** 21,26 **** --- 21,27 ---- Jakub Jelinek Jason Molenda Jim Meyering + Laurent Vogel Karl Berry Karl Heuer Kaveh R. Ghazi diff -rNC3 sed-4.0.6/bootstrap.sh sed-4.0.7/bootstrap.sh *** sed-4.0.6/bootstrap.sh Tue Mar 18 17:57:01 2003 --- sed-4.0.7/bootstrap.sh Fri Apr 11 08:22:52 2003 *************** *** 19,25 **** */ #define PACKAGE "sed" ! #define VERSION "4.0.6-boot" #define SED_FEATURE_VERSION "4.0" #define BOOTSTRAP 1 --- 19,25 ---- */ #define PACKAGE "sed" ! #define VERSION "4.0.7-boot" #define SED_FEATURE_VERSION "4.0" #define BOOTSTRAP 1 diff -rNC3 sed-4.0.6/config_h.in sed-4.0.7/config_h.in *** sed-4.0.6/config_h.in Tue Mar 18 17:56:00 2003 --- sed-4.0.7/config_h.in Fri Apr 11 08:22:52 2003 *************** *** 91,99 **** /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES - /* Define to 1 if you have the `cposix' library (-lcposix). */ - #undef HAVE_LIBCPOSIX - /* Define to 1 if you have the `regex' library (-lregex). */ #undef HAVE_LIBREGEX --- 91,96 ---- diff -rNC3 sed-4.0.6/configure sed-4.0.7/configure *** sed-4.0.6/configure Tue Mar 18 17:55:11 2003 --- sed-4.0.7/configure Fri Apr 11 08:21:09 2003 *************** *** 1,6 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.54 for sed 4.0.6. # # 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.7. # # Report bugs to . # *************** *** 265,272 **** # Identity of this package. PACKAGE_NAME='sed' PACKAGE_TARNAME='sed' ! PACKAGE_VERSION='4.0.6' ! PACKAGE_STRING='sed 4.0.6' 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.7' ! PACKAGE_STRING='sed 4.0.7' 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.6 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.7 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.6:";; 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.7:";; esac cat <<\_ACEOF *************** *** 937,943 **** test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! sed configure 4.0.6 generated by GNU Autoconf 2.54 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 --- 937,943 ---- test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! sed configure 4.0.7 generated by GNU Autoconf 2.54 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 *************** *** 952,958 **** 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.6, which was generated by GNU Autoconf 2.54. Invocation command line was $ $0 $@ --- 952,958 ---- 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.7, which was generated by GNU Autoconf 2.54. Invocation command line was $ $0 $@ *************** *** 1526,1532 **** # Define the identity of the package. PACKAGE=sed ! VERSION=4.0.6 cat >>confdefs.h <<_ACEOF --- 1526,1532 ---- # Define the identity of the package. PACKAGE=sed ! VERSION=4.0.7 cat >>confdefs.h <<_ACEOF *************** *** 3620,3684 **** fi - echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5 - echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6 - if test "${ac_cv_lib_cposix_strerror+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS - LIBS="-lcposix $LIBS" - cat >conftest.$ac_ext <<_ACEOF - #line $LINENO "configure" - #include "confdefs.h" - - /* Override any gcc2 internal prototype to avoid an error. */ - #ifdef __cplusplus - extern "C" - #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ - char strerror (); - int - main () - { - strerror (); - ; - return 0; - } - _ACEOF - rm -f conftest.$ac_objext conftest$ac_exeext - if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_cposix_strerror=yes - else - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 - ac_cv_lib_cposix_strerror=no - fi - rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - LIBS=$ac_check_lib_save_LIBS - fi - echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5 - echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6 - if test $ac_cv_lib_cposix_strerror = yes; then - cat >>confdefs.h <<_ACEOF - #define HAVE_LIBCPOSIX 1 - _ACEOF - - LIBS="-lcposix $LIBS" - - fi - - echo "$as_me:$LINENO: checking whether -lcP is needed" >&5 echo $ECHO_N "checking whether -lcP is needed... $ECHO_C" >&6 if test "$cross_compiling" = yes; then --- 3620,3625 ---- *************** *** 5364,5370 **** ! ALL_LINGUAS="ca cs da de el eo es et fi fr gl he hr hu id it ja ko nl pt_BR ru sk sl sv tr zh_CN" # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 --- 5305,5311 ---- ! ALL_LINGUAS="ca cs da de el eo es et fi fr gl he hr hu id it ja ko nl pt_BR ro ru sk sl sv tr zh_CN" # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 *************** *** 7529,7535 **** } >&5 cat >&5 <<_CSEOF ! This file was extended by sed $as_me 4.0.6, which was generated by GNU Autoconf 2.54. Invocation command line was CONFIG_FILES = $CONFIG_FILES --- 7470,7476 ---- } >&5 cat >&5 <<_CSEOF ! This file was extended by sed $as_me 4.0.7, which was generated by GNU Autoconf 2.54. Invocation command line was CONFIG_FILES = $CONFIG_FILES *************** *** 7594,7600 **** cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! sed config.status 4.0.6 configured by $0, generated by GNU Autoconf 2.54, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" --- 7535,7541 ---- cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! sed config.status 4.0.7 configured by $0, generated by GNU Autoconf 2.54, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff -rNC3 sed-4.0.6/configure.ac sed-4.0.7/configure.ac *** sed-4.0.6/configure.ac Tue Mar 18 17:54:37 2003 --- sed-4.0.7/configure.ac Fri Mar 28 15:56:47 2003 *************** *** 1,5 **** dnl Process this file with -*- autoconf -*- to produce a configure script. ! AC_INIT(sed, 4.0.6, 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.7, bonzini@gnu.org, sed) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR([sed/sed.c]) AM_CONFIG_HEADER(config.h:config_h.in) *************** *** 18,24 **** AC_MINIX AC_ISC_POSIX AC_SYS_LARGEFILE - AC_CHECK_LIB(cposix,strerror) AC_MSG_CHECKING([whether -lcP is needed]) AC_TRY_RUN([ --- 18,23 ---- *************** *** 107,113 **** AM_CONDITIONAL(TEXI2HTML_HTML, test "x$enable_html" = xtexi2html) ! ALL_LINGUAS="ca cs da de el eo es et fi fr gl he hr hu id it ja ko nl pt_BR ru sk sl sv tr zh_CN" AM_GNU_GETTEXT(, need-ngettext) AC_CONFIG_FILES([bootstrap.sh], chmod +x bootstrap.sh) --- 106,112 ---- AM_CONDITIONAL(TEXI2HTML_HTML, test "x$enable_html" = xtexi2html) ! ALL_LINGUAS="ca cs da de el eo es et fi fr gl he hr hu id it ja ko nl pt_BR ro ru sk sl sv tr zh_CN" AM_GNU_GETTEXT(, need-ngettext) AC_CONFIG_FILES([bootstrap.sh], chmod +x bootstrap.sh) diff -rNC3 sed-4.0.6/doc/sed.1 sed-4.0.7/doc/sed.1 *** sed-4.0.6/doc/sed.1 Tue Mar 18 17:57:12 2003 --- sed-4.0.7/doc/sed.1 Fri Apr 11 08:23:45 2003 *************** *** 1,7 **** .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.28. ! .TH SED "1" "March 2003" "sed version 4.0.6" "User Commands" .SH NAME ! sed \- manual page for sed version 4.0.6 .SH SYNOPSIS .B sed [\fIOPTION\fR]... \fI{script-only-if-no-other-script} \fR[\fIinput-file\fR]... --- 1,7 ---- .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.28. ! .TH SED "1" "April 2003" "sed version 4.0.7" "User Commands" .SH NAME ! sed \- manual page for sed version 4.0.7 .SH SYNOPSIS .B sed [\fIOPTION\fR]... \fI{script-only-if-no-other-script} \fR[\fIinput-file\fR]... diff -rNC3 sed-4.0.6/doc/sed.info-1 sed-4.0.7/doc/sed.info-1 *** sed-4.0.6/doc/sed.info-1 Sat Mar 15 08:24:29 2003 --- sed-4.0.7/doc/sed.info-1 Sun Mar 23 11:43:11 2003 *************** *** 6,12 **** END-INFO-DIR-ENTRY ! This file documents version 4.0.6 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. --- 6,12 ---- END-INFO-DIR-ENTRY ! This file documents version 4.0.7 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. *************** *** 26,32 **** ! This file documents version 4.0.6 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. --- 26,32 ---- ! This file documents version 4.0.7 of GNU `sed', a stream editor. Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. diff -rNC3 sed-4.0.6/doc/stamp-vti sed-4.0.7/doc/stamp-vti *** sed-4.0.6/doc/stamp-vti Tue Mar 18 17:56:55 2003 --- sed-4.0.7/doc/stamp-vti Fri Apr 11 08:23:44 2003 *************** *** 1,4 **** @set UPDATED 15 March 2003 @set UPDATED-MONTH March 2003 ! @set EDITION 4.0.6 ! @set VERSION 4.0.6 --- 1,4 ---- @set UPDATED 15 March 2003 @set UPDATED-MONTH March 2003 ! @set EDITION 4.0.7 ! @set VERSION 4.0.7 diff -rNC3 sed-4.0.6/doc/version.texi sed-4.0.7/doc/version.texi *** sed-4.0.6/doc/version.texi Sat Mar 15 08:24:29 2003 --- sed-4.0.7/doc/version.texi Sun Mar 23 11:43:10 2003 *************** *** 1,4 **** @set UPDATED 15 March 2003 @set UPDATED-MONTH March 2003 ! @set EDITION 4.0.6 ! @set VERSION 4.0.6 --- 1,4 ---- @set UPDATED 15 March 2003 @set UPDATED-MONTH March 2003 ! @set EDITION 4.0.7 ! @set VERSION 4.0.7 diff -rNC3 sed-4.0.6/lib/Makefile.am sed-4.0.7/lib/Makefile.am *** sed-4.0.6/lib/Makefile.am Fri Mar 14 14:44:20 2003 --- sed-4.0.7/lib/Makefile.am Wed Mar 26 20:18:28 2003 *************** *** 7,13 **** EXTRA_DIST = memmove.c strerror.c regcomp.c regexec.c regex_internal.c ! INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl -I$(top_srcdir) libsed_a_LIBADD = @LIBOBJS@ @ALLOCA@ libsed_a_DEPENDENCIES = $(libsed_a_LIBADD) --- 7,14 ---- EXTRA_DIST = memmove.c strerror.c regcomp.c regexec.c regex_internal.c ! INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl -I$(top_srcdir) \ ! -I$(top_builddir)/lib libsed_a_LIBADD = @LIBOBJS@ @ALLOCA@ libsed_a_DEPENDENCIES = $(libsed_a_LIBADD) diff -rNC3 sed-4.0.6/lib/Makefile.in sed-4.0.7/lib/Makefile.in *** sed-4.0.6/lib/Makefile.in Tue Mar 18 17:56:06 2003 --- sed-4.0.7/lib/Makefile.in Fri Apr 11 08:23:04 2003 *************** *** 151,157 **** EXTRA_DIST = memmove.c strerror.c regcomp.c regexec.c regex_internal.c ! INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl -I$(top_srcdir) libsed_a_LIBADD = @LIBOBJS@ @ALLOCA@ libsed_a_DEPENDENCIES = $(libsed_a_LIBADD) --- 151,159 ---- EXTRA_DIST = memmove.c strerror.c regcomp.c regexec.c regex_internal.c ! INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl -I$(top_srcdir) \ ! -I$(top_builddir)/lib ! libsed_a_LIBADD = @LIBOBJS@ @ALLOCA@ libsed_a_DEPENDENCIES = $(libsed_a_LIBADD) Binary files sed-4.0.6/po/ca.gmo and sed-4.0.7/po/ca.gmo differ diff -rNC3 sed-4.0.6/po/ca.po sed-4.0.7/po/ca.po *** sed-4.0.6/po/ca.po Sat Mar 15 08:24:55 2003 --- sed-4.0.7/po/ca.po Fri Apr 11 08:23:11 2003 *************** *** 4,12 **** # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.4\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2003-02-14 19:47+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" --- 4,12 ---- # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-21 13:30+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "s'esperava una versi ms nova de sed" #: sed/compile.c:245 #, c-format *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "ERROR INTERN: tipus d'adrea errnia" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "error en subprocs" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "l'opci e no est suportada" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "l'ordre e no est suportada" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERROR INTERN: Ordre errnia %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ERROR INTERN: tipus d'adrea errnia" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "error en subprocs" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "l'opci e no est suportada" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "l'ordre e no est suportada" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERROR INTERN: Ordre errnia %c" *************** *** 253,264 **** "Assegureu-vos d'incloure la paraula %s en alguna part del camp " "Assumpte:.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versi %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 253,264 ---- "Assegureu-vos d'incloure la paraula %s en alguna part del camp " "Assumpte:.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versi %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 266,277 **** "basat en GNU sed versi 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versi %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 266,277 ---- "basat en GNU sed versi 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versi %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 368,385 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr ") o \\) no emparellat" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "s del modificador d'adrea invlid" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "Final-de-fitxer inesperat" - - #~ msgid "bad regexp: %s\n" - #~ msgstr "expressi regular incorrecta: %s\n" - - #~ msgid "input read error: %s" - #~ msgstr "error al llegir l'entrada: %s" - - #~ msgid "couldn't write an item to %s: %s" - #~ msgstr "no s'ha pogut escriure un element a %s: %s" --- 368,370 ---- Binary files sed-4.0.6/po/cs.gmo and sed-4.0.7/po/cs.gmo differ diff -rNC3 sed-4.0.6/po/cs.po sed-4.0.7/po/cs.po *** sed-4.0.6/po/cs.po Sat Mar 15 08:24:55 2003 --- sed-4.0.7/po/cs.po Fri Apr 11 08:23:11 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2001-08-05 19:52+02:00\n" "Last-Translator: Vladimir Michl \n" "Language-Team: Czech \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2001-08-05 19:52+02:00\n" "Last-Translator: Vladimir Michl \n" "Language-Team: Czech \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERN CHYBA: patn typ adresy" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERN CHYBA: patn pkaz %c" --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERN CHYBA: patn typ adresy" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERN CHYBA: patn pkaz %c" *************** *** 243,265 **** "Kamkoliv do poloky ``Subject:'' vlote ``%s''.\n" "Pipomnky k pekladu zaslejte na adresu (esky).\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 243,265 ---- "Kamkoliv do poloky ``Subject:'' vlote ``%s''.\n" "Pipomnky k pekladu zaslejte na adresu (esky).\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/da.gmo and sed-4.0.7/po/da.gmo differ diff -rNC3 sed-4.0.6/po/da.po sed-4.0.7/po/da.po *** sed-4.0.6/po/da.po Sat Mar 15 08:24:55 2003 --- sed-4.0.7/po/da.po Fri Apr 11 08:23:11 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-10-25 22:28+0200\n" "Last-Translator: Byrial Ole Jensen \n" "Language-Team: Danish \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-10-25 22:28+0200\n" "Last-Translator: Byrial Ole Jensen \n" "Language-Team: Danish \n" *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERN FEJL: forkert adressetype" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "fejl i underproces" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "tilvalg 'e' er ikke understttet" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "'e'-kommando er ikke understttet" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERN FEJL: Forkert vrdi af cmd %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERN FEJL: forkert adressetype" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "fejl i underproces" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "tilvalg 'e' er ikke understttet" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "'e'-kommando er ikke understttet" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERN FEJL: Forkert vrdi af cmd %c" *************** *** 248,259 **** "Send fejlrapporter p engelsk pr. e-post til %s.\n" "Srg venligst for at skrive ordet \"%s\" et sted i \"Subject:\"-feltet.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 248,259 ---- "Send fejlrapporter p engelsk pr. e-post til %s.\n" "Srg venligst for at skrive ordet \"%s\" et sted i \"Subject:\"-feltet.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 261,272 **** "baseret p GNU sed version 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 261,272 ---- "baseret p GNU sed version 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/de.gmo and sed-4.0.7/po/de.gmo differ diff -rNC3 sed-4.0.6/po/de.po sed-4.0.7/po/de.po *** sed-4.0.6/po/de.po Sat Mar 15 08:24:55 2003 --- sed-4.0.7/po/de.po Fri Apr 11 08:23:11 2003 *************** *** 1,12 **** # 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: 2003-03-15 08:24+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" --- 1,12 ---- # sed german translation ! # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. ! # Walter Koch , 2001, 2002, 2003 # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-21 22:03:41+0100\n" "Last-Translator: Walter Koch \n" "Language-Team: German \n" "MIME-Version: 1.0\n" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "Neuere Version von sed erwartet" #: sed/compile.c:245 #, c-format *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNER FEHLER: Falsche Adressenart" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "Fehler im Subprozess" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "Option `e' wird nicht untersttzt" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "`e'-Kommando wird nicht untersttzt" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNER FEHLER: Falscher Befehl %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNER FEHLER: Falsche Adressenart" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "Fehler im Subprozess" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "Option `e' wird nicht untersttzt" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "`e'-Kommando wird nicht untersttzt" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNER FEHLER: Falscher Befehl %c" *************** *** 252,263 **** "Fehlerberichte (in Englisch!) per E-Mail an: %s .\n" "Verwenden Sie dabei den Begriff ``%s'' irgendwo in der ``Betreff:''-Zeile.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "Super-sed version %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 252,263 ---- "Fehlerberichte (in Englisch!) per E-Mail an: %s .\n" "Verwenden Sie dabei den Begriff ``%s'' irgendwo in der ``Betreff:''-Zeile.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "Super-sed version %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 265,276 **** "basiert auf GNU sed Version 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed Version %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 265,276 ---- "basiert auf GNU sed Version 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed Version %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 372,389 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr "Nicht paarweises ) bzw. \\)" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "Ungltige Verwendung von \"address modifier\"" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "Unerwartetes Dateiende" - - #~ msgid "bad regexp: %s\n" - #~ msgstr "Falscher regulrer Ausdruck: %s\n" - - #~ msgid "input read error: %s" - #~ msgstr "Eingabe-Lesefehler: %s" - - #~ msgid "couldn't write an item to %s: %s" - #~ msgstr "Kann ein Feld nicht auf %s schreiben: %s" --- 372,374 ---- Binary files sed-4.0.6/po/el.gmo and sed-4.0.7/po/el.gmo differ diff -rNC3 sed-4.0.6/po/el.po sed-4.0.7/po/el.po *** sed-4.0.6/po/el.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/el.po Fri Apr 11 08:23:12 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: GNU sed 3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-03-08 12:57+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: GNU sed 3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-03-08 12:57+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr " : " ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr " " ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr " `e'" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr " `e'" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : %c" --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr " : " ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr " " ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr " `e'" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr " `e'" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : %c" *************** *** 239,261 **** " : %s .\n" " ``%s'' ``Subject:''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 239,261 ---- " : %s .\n" " ``%s'' ``Subject:''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/eo.gmo and sed-4.0.7/po/eo.gmo differ diff -rNC3 sed-4.0.6/po/eo.po sed-4.0.7/po/eo.po *** sed-4.0.6/po/eo.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/eo.po Fri Apr 11 08:23:12 2003 *************** *** 1,12 **** # Esperantaj mesaĝoj por GNU sed. # Copyright (C) 2002 Free Software Foundation, Inc. ! # Edmund GRIMLEY EVANS , 2001-2002. # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-10-27 18:00+0000\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" --- 1,12 ---- # Esperantaj mesaĝoj por GNU sed. # Copyright (C) 2002 Free Software Foundation, Inc. ! # Edmund GRIMLEY EVANS , 2001-2003. # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-23 19:34+0000\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "atendis pli novan version de sed" #: sed/compile.c:245 #, c-format *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA ERARO: malbona adresspeco" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "eraro en subprocezo" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "opcio 'e' ne realigita" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "komando 'e' ne realigita" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA ERARO: Malbona komando %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA ERARO: malbona adresspeco" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "eraro en subprocezo" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "opcio 'e' ne realigita" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "komando 'e' ne realigita" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA ERARO: Malbona komando %c" *************** *** 249,260 **** "Retpoŝtu cimo-raportojn al: %s .\n" "Nepre menciu la vorton '%s' ie en la temlinio.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versio %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 249,260 ---- "Retpoŝtu cimo-raportojn al: %s .\n" "Nepre menciu la vorton '%s' ie en la temlinio.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versio %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 262,273 **** "bazita sur \"GNU sed\" versio 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versio %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 262,273 ---- "bazita sur \"GNU sed\" versio 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versio %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/es.gmo and sed-4.0.7/po/es.gmo differ diff -rNC3 sed-4.0.6/po/es.po sed-4.0.7/po/es.po *** sed-4.0.6/po/es.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/es.po Fri Apr 11 08:23:12 2003 *************** *** 1,12 **** # Mensajes en espaol para GNU sed. ! # Copyright (C) 2001, 2002 Free Software Foundation, Inc. ! # Cristian Othn Martnez Vera , 2001, 2002. # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.2\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-11-22 17:13-0600\n" "Last-Translator: Cristian Othn Martnez Vera \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" --- 1,12 ---- # Mensajes en espaol para GNU sed. ! # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. ! # Cristian Othn Martnez Vera , 2001, 2002, 2003. # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-22 21:47-0600\n" "Last-Translator: Cristian Othn Martnez Vera \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" *************** *** 64,70 **** #: sed/compile.c:193 msgid "Unterminated address regex" ! msgstr "La direccin de expresin regular no est completa" #: sed/compile.c:194 msgid "Unterminated `s' command" --- 64,70 ---- #: sed/compile.c:193 msgid "Unterminated address regex" ! msgstr "Direccin de expresin regular sin terminar" #: sed/compile.c:194 msgid "Unterminated `s' command" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" # FUZZY: pushback -> empuje? cfuga #: sed/compile.c:245 --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "se esperaba una versin ms reciente de sed" # FUZZY: pushback -> empuje? cfuga #: sed/compile.c:245 *************** *** 125,131 **** #: sed/compile.c:1564 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "No se puede encontra la etiqueta para saltar a `%s'" #: sed/execute.c:517 #, c-format --- 125,131 ---- #: sed/compile.c:1564 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "No se puede encontrar la etiqueta para saltar a `%s'" #: sed/execute.c:517 #, c-format *************** *** 136,154 **** msgid "INTERNAL ERROR: bad address type" msgstr "ERROR INTERNO: tipo de direccin errneo" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "error en el subproceso" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "no hay soporte para la opcin `e'" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "no hay soporte para el comando `e'" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERROR INTERNO: cmd %c errneo" --- 136,154 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ERROR INTERNO: tipo de direccin errneo" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "error en el subproceso" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "no hay soporte para la opcin `e'" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "no hay soporte para el comando `e'" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERROR INTERNO: cmd %c errneo" *************** *** 256,271 **** "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "Enve reportes de `bug' por e-mail a: %s .\n" "Asegrese de incluir la palabra ``%s'' en algn lugar en el campo " "``Subject:''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versin %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 256,271 ---- "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "Enve reportes de bichos por e-mail a: %s .\n" "Asegrese de incluir la palabra ``%s'' en algn lugar en el campo " "``Subject:''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versin %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 273,284 **** "basado en GNU sed versin 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versin %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 273,284 ---- "basado en GNU sed versin 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versin %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 375,392 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr ") \\) sin pareja" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "Uso no vlido de modificador de direccin" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "Fin de fichero inesperado" - - #~ msgid "bad regexp: %s\n" - #~ msgstr "expresin regular errnea: %s\n" - - #~ msgid "input read error: %s" - #~ msgstr "error al leer la entrada: %s" - - #~ msgid "couldn't write an item to %s: %s" - #~ msgstr "no se puede escribir un elemento elemento a %s: %s" --- 375,377 ---- Binary files sed-4.0.6/po/et.gmo and sed-4.0.7/po/et.gmo differ diff -rNC3 sed-4.0.6/po/et.po sed-4.0.7/po/et.po *** sed-4.0.6/po/et.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/et.po Fri Apr 11 08:23:13 2003 *************** *** 4,12 **** # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-10-25 11:00+03:00\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" --- 4,12 ---- # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-21 10:36+0200\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "oodati sedi uuemat versiooni" #: sed/compile.c:245 #, c-format *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "SISEMINE VIGA: vigane aadressi tp" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "viga alamprotsessis" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "vtit `e' ei toetata" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "ksku `e' ei toetata" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "SISEMINE VIGA: Halb ksk %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "SISEMINE VIGA: vigane aadressi tp" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "viga alamprotsessis" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "vtit `e' ei toetata" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "ksku `e' ei toetata" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "SISEMINE VIGA: Halb ksk %c" *************** *** 244,255 **** "Postitage teated vigadest: %s .\n" "Lisage kindlasti sna ``%s'' ``Subject:'' reale.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versioon %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 244,255 ---- "Postitage teated vigadest: %s .\n" "Lisage kindlasti sna ``%s'' ``Subject:'' reale.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versioon %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 257,268 **** "phineb GNU sed versioonil 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versioon %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 257,268 ---- "phineb GNU sed versioonil 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versioon %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 359,367 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr "Puudub ) vi \\)" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "Vigane aadressimodifikaatori kasutamine" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "Ootamatu realpp" --- 359,361 ---- Binary files sed-4.0.6/po/fi.gmo and sed-4.0.7/po/fi.gmo differ diff -rNC3 sed-4.0.6/po/fi.po sed-4.0.7/po/fi.po *** sed-4.0.6/po/fi.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/fi.po Fri Apr 11 08:23:13 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed-3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-07-09 13:02+0200\n" "Last-Translator: Sami J. Laine \n" "Language-Team: Finnish \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed-3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-07-09 13:02+0200\n" "Last-Translator: Sami J. Laine \n" "Language-Team: Finnish \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr "SISINEN VIRHE: virheellinen osoitetyyppi" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "SISINEN VIRHE: Virheellinen komento %c" --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr "SISINEN VIRHE: virheellinen osoitetyyppi" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "SISINEN VIRHE: Virheellinen komento %c" *************** *** 236,258 **** "Lhet virheraportit osoitteeseen %s .\n" "Sisllyt sana \"%s\" viestin aihekenttn (\"Subject\"-kenttn).\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 236,258 ---- "Lhet virheraportit osoitteeseen %s .\n" "Sisllyt sana \"%s\" viestin aihekenttn (\"Subject\"-kenttn).\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/fr.gmo and sed-4.0.7/po/fr.gmo differ diff -rNC3 sed-4.0.6/po/fr.po sed-4.0.7/po/fr.po *** sed-4.0.6/po/fr.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/fr.po Fri Apr 11 08:23:13 2003 *************** *** 1,5 **** # French translation of GNU sed. ! # Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc. # Gal Quri , 1998. # # J'ai prfr utiliser le terme <> plutt --- 1,5 ---- # French translation of GNU sed. ! # Copyright (C) 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # Gal Quri , 1998. # # J'ai prfr utiliser le terme <> plutt *************** *** 8,16 **** # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.1\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-11-12 11:28+0100\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" "MIME-Version: 1.0\n" --- 8,16 ---- # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-24 12:46+0200\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" "MIME-Version: 1.0\n" *************** *** 104,110 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 104,110 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "une version plus rcente de sed est attendue" #: sed/compile.c:245 #, c-format *************** *** 141,159 **** msgid "INTERNAL ERROR: bad address type" msgstr "ERREUR INTERNE: mauvais type d'adresse" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "erreur dans le sous-processus" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "l'option `e' n'est pas supporte" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "la commande `e' n'est pas supporte" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERREUR INTERNE: mauvaise commande %c" --- 141,159 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ERREUR INTERNE: mauvais type d'adresse" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "erreur dans le sous-processus" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "l'option `e' n'est pas supporte" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "la commande `e' n'est pas supporte" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERREUR INTERNE: mauvaise commande %c" *************** *** 263,285 **** "N'oubliez pas d'inclure le mot ``%s'' quelque-part dans la zone " "``Subject:''\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "fond sur GNU sed version 3.02.80\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 263,285 ---- "N'oubliez pas d'inclure le mot ``%s'' quelque-part dans la zone " "``Subject:''\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "fond sur GNU sed version 3.02.80\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 377,385 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr ") ou \\) non referm" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "Utilisation invalide du modificateur d'adresse" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "Fin de fichier inattendue" --- 377,379 ---- Binary files sed-4.0.6/po/gl.gmo and sed-4.0.7/po/gl.gmo differ diff -rNC3 sed-4.0.6/po/gl.po sed-4.0.7/po/gl.po *** sed-4.0.6/po/gl.po Sat Mar 15 08:24:56 2003 --- sed-4.0.7/po/gl.po Fri Apr 11 08:23:13 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-10-25 15:57+0200\n" "Last-Translator: Jacobo Tarro Barreiro \n" "Language-Team: Galician \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-10-25 15:57+0200\n" "Last-Translator: Jacobo Tarro Barreiro \n" "Language-Team: Galician \n" *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "ERRO INTERNO: tipo de enderezo incorrecto" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "erro no subproceso" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "a opcin `e' non est soportada" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "o comando `e' non est soportado" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERRO INTERNO: instruccin %c incorrecta" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ERRO INTERNO: tipo de enderezo incorrecto" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "erro no subproceso" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "a opcin `e' non est soportada" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "o comando `e' non est soportado" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERRO INTERNO: instruccin %c incorrecta" *************** *** 252,274 **** "Informe dos erros na traduccin a gpul-traduccion@ceu.fi.udc.es .\n" "Asegrese de inclu-la palabra ``%s'' nalgunha parte do campo ``Subject:''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versin %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "baseado en GNU sed versin 3.02.80\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versin %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 252,274 ---- "Informe dos erros na traduccin a gpul-traduccion@ceu.fi.udc.es .\n" "Asegrese de inclu-la palabra ``%s'' nalgunha parte do campo ``Subject:''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versin %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "baseado en GNU sed versin 3.02.80\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versin %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/he.gmo and sed-4.0.7/po/he.gmo differ diff -rNC3 sed-4.0.6/po/he.po sed-4.0.7/po/he.po *** sed-4.0.6/po/he.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/he.po Fri Apr 11 08:23:14 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2001-08-04 20:37+0300\n" "Last-Translator: Eli Zaretskii \n" "Language-Team: Hebrew \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2001-08-04 20:37+0300\n" "Last-Translator: Eli Zaretskii \n" "Language-Team: Hebrew \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr "- : " ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "%c : " --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr "- : " ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "%c : " *************** *** 234,256 **** " .%s (bugs) \n" " .(``Subject'') ``'' ``%s'' \n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 234,256 ---- " .%s (bugs) \n" " .(``Subject'') ``'' ``%s'' \n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/hr.gmo and sed-4.0.7/po/hr.gmo differ diff -rNC3 sed-4.0.6/po/hr.po sed-4.0.7/po/hr.po *** sed-4.0.6/po/hr.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/hr.po Fri Apr 11 08:23:14 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-06-14 15:17-01\n" "Last-Translator: Denis Lackovic \n" "Language-Team: Croatian \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-06-14 15:17-01\n" "Last-Translator: Denis Lackovic \n" "Language-Team: Croatian \n" *************** *** 136,154 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA GREŠKA: neispravan tip adrese" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA GREŠKA: Neispravna naredba %c" --- 136,154 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA GREŠKA: neispravan tip adrese" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA GREŠKA: Neispravna naredba %c" *************** *** 235,257 **** "E-mail bug prijave (na engleskom) pošaljite na: %s .\n" "Uključite riječ ``%s'' u polju ``Subject:''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 235,257 ---- "E-mail bug prijave (na engleskom) pošaljite na: %s .\n" "Uključite riječ ``%s'' u polju ``Subject:''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/hu.gmo and sed-4.0.7/po/hu.gmo differ diff -rNC3 sed-4.0.6/po/hu.po sed-4.0.7/po/hu.po *** sed-4.0.6/po/hu.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/hu.po Fri Apr 11 08:23:14 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed-3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-09-18 14:43GMT\n" "Last-Translator: Gbor Istvn \n" "Language-Team: Hungarian \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed-3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-09-18 14:43GMT\n" "Last-Translator: Gbor Istvn \n" "Language-Team: Hungarian \n" *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "BELS HIBA: rossz cm tpus" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "BELS HIBA: Rossz parancs %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "BELS HIBA: rossz cm tpus" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "BELS HIBA: Rossz parancs %c" *************** *** 238,260 **** "kldeni .\n" "A biztonsg kedvrt a levl Trgy mezejbe rja a ``%s'' szt.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 238,260 ---- "kldeni .\n" "A biztonsg kedvrt a levl Trgy mezejbe rja a ``%s'' szt.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/id.gmo and sed-4.0.7/po/id.gmo differ diff -rNC3 sed-4.0.6/po/id.po sed-4.0.7/po/id.po *** sed-4.0.6/po/id.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/id.po Fri Apr 11 08:23:14 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 4.0.2\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-11-22 12:24GMT+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 4.0.2\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-11-22 12:24GMT+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" *************** *** 136,154 **** msgid "INTERNAL ERROR: bad address type" msgstr "KESALAHAN INTERNAL: tipe alamat buruk" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "kesalahan dalam subproses" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "option `e' tidak didukung" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "perintah `e' tidak didukung" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "KESALAHAN INTERNAL: Perintah %c buruk" --- 136,154 ---- msgid "INTERNAL ERROR: bad address type" msgstr "KESALAHAN INTERNAL: tipe alamat buruk" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "kesalahan dalam subproses" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "option `e' tidak didukung" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "perintah `e' tidak didukung" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "KESALAHAN INTERNAL: Perintah %c buruk" *************** *** 248,259 **** "Email laporan kesalahan ke: %s \n" "Pastikan untuk menyertakan kata \"%s\" di field \"Subject:\".\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versi %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 248,259 ---- "Email laporan kesalahan ke: %s \n" "Pastikan untuk menyertakan kata \"%s\" di field \"Subject:\".\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versi %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 261,272 **** "berdasarkan pada GNU sed versi 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versi %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 261,272 ---- "berdasarkan pada GNU sed versi 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versi %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/it.gmo and sed-4.0.7/po/it.gmo differ diff -rNC3 sed-4.0.6/po/it.po sed-4.0.7/po/it.po *** sed-4.0.6/po/it.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/it.po Fri Apr 11 08:23:15 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 4.0.3\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-11-26 12:44+0100\n" "Last-Translator: Paolo Bonzini \n" "Language-Team: Italian \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 4.0.3\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-11-26 12:44+0100\n" "Last-Translator: Paolo Bonzini \n" "Language-Team: Italian \n" *************** *** 164,185 **** msgstr "INTERNAL ERROR: bad address type" # sed/execute.c:1003 sed/execute.c:1183 ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "errore in un sottoprocesso" # sed/execute.c:1005 ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "opzione `e' non supportata" # sed/execute.c:1185 ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "comando `e' non supportato" # sed/execute.c:1415 ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNAL ERROR: Bad cmd %c" --- 164,185 ---- msgstr "INTERNAL ERROR: bad address type" # sed/execute.c:1003 sed/execute.c:1183 ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "errore in un sottoprocesso" # sed/execute.c:1005 ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "opzione `e' non supportata" # sed/execute.c:1185 ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "comando `e' non supportato" # sed/execute.c:1415 ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNAL ERROR: Bad cmd %c" *************** *** 289,301 **** "Assicurarsi di includere la parola ``%s'' nell'oggetto del messaggio.\n" # sed/sed.c:255 ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versione %s\n" # sed/sed.c:256 ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 289,301 ---- "Assicurarsi di includere la parola ``%s'' nell'oggetto del messaggio.\n" # sed/sed.c:255 ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed versione %s\n" # sed/sed.c:256 ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 304,316 **** "\n" # sed/sed.c:258 ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versione %s\n" # sed/sed.c:260 ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 304,316 ---- "\n" # sed/sed.c:258 ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed versione %s\n" # sed/sed.c:260 ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/ja.gmo and sed-4.0.7/po/ja.gmo differ diff -rNC3 sed-4.0.6/po/ja.po sed-4.0.7/po/ja.po *** sed-4.0.6/po/ja.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/ja.po Fri Apr 11 08:23:15 2003 *************** *** 1,5 **** # Japanese messages for GNU sed ! # Copyright (C) 1999, 2002 Free Software Foundation, Inc. # IIDA Yosiaki , 1999, 2002, 2003. # This file is distributed under the same license as the GNU sed package. # Contributed by --- 1,5 ---- # Japanese messages for GNU sed ! # Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc. # IIDA Yosiaki , 1999, 2002, 2003. # This file is distributed under the same license as the GNU sed package. # Contributed by *************** *** 8,16 **** # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0.4\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2003-01-18 17:02+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" --- 8,16 ---- # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-25 21:22+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" *************** *** 32,42 **** #: sed/compile.c:184 msgid "Unmatched `{'" ! msgstr "`{'פޤ" #: sed/compile.c:185 msgid "Unexpected `}'" ! msgstr "`}'פޤ" #: sed/compile.c:186 msgid "Extra characters after command" --- 32,42 ---- #: sed/compile.c:184 msgid "Unmatched `{'" ! msgstr "`{'礤ޤ" #: sed/compile.c:185 msgid "Unexpected `}'" ! msgstr "ͽʤ`}'Ǥ" #: sed/compile.c:186 msgid "Extra characters after command" *************** *** 56,62 **** #: sed/compile.c:190 msgid "Comments don't accept any addresses" ! msgstr "Ȥϥɥ쥹դޤ" #: sed/compile.c:191 msgid "Missing command" --- 56,62 ---- #: sed/compile.c:190 msgid "Comments don't accept any addresses" ! msgstr "Ȥϥɥ쥹դޤ" #: sed/compile.c:191 msgid "Missing command" *************** *** 104,110 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 104,110 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "sedοǤǤ" #: sed/compile.c:245 #, c-format *************** *** 139,157 **** msgid "INTERNAL ERROR: bad address type" msgstr "顼: ɥ쥹" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "ҥץΥ顼" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "eץϡݡȤƤޤ" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "eޥɤϡݡȤƤޤ" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "顼: ޥ %c" --- 139,157 ---- msgid "INTERNAL ERROR: bad address type" msgstr "顼: ɥ쥹" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "ҥץΥ顼" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "eץϡݡȤƤޤ" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "eޥɤϡݡȤƤޤ" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "顼: ޥ %c" *************** *** 249,260 **** "Żҥ᡼ˤХΰ: %s\n" "𤹤ݤˤ``Subject:''եɤΤɤ``%s''Ƥ\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 249,260 ---- "Żҥ᡼ˤХΰ: %s\n" "𤹤ݤˤ``Subject:''եɤΤɤ``%s''Ƥ\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 262,275 **** "GNU sed 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" "GNU sed %s\n" "\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 262,275 ---- "GNU sed 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" "GNU sed %s\n" "\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 374,382 **** #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" msgstr ")\\)פޤ" - - #~ msgid "Invalid use of address modifier" - #~ msgstr "ɥ쥹ҤλȤäƤޤ" - - #~ msgid "Unexpected End-of-file" - #~ msgstr "ͽʤե뽪ü(EOF)Ǥ" --- 374,376 ---- Binary files sed-4.0.6/po/ko.gmo and sed-4.0.7/po/ko.gmo differ diff -rNC3 sed-4.0.6/po/ko.po sed-4.0.7/po/ko.po *** sed-4.0.6/po/ko.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/ko.po Fri Apr 11 08:23:15 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: GNU sed 3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2001-10-12 17:26+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: Korean \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: GNU sed 3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2001-10-12 17:26+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: Korean \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr " : ߸ ּ Դϴ" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : %c () ߸ Դϴ" --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr " : ߸ ּ Դϴ" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : %c () ߸ Դϴ" *************** *** 235,257 **** "׸ E-mail ּ: %s .\n" "``Subject:'' ׸ ݵ ``%s'' ܾ ֽñ ٶϴ.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 235,257 ---- "׸ E-mail ּ: %s .\n" "``Subject:'' ׸ ݵ ``%s'' ܾ ֽñ ٶϴ.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/nl.gmo and sed-4.0.7/po/nl.gmo differ diff -rNC3 sed-4.0.6/po/nl.po sed-4.0.7/po/nl.po *** sed-4.0.6/po/nl.po Sat Mar 15 08:24:57 2003 --- sed-4.0.7/po/nl.po Fri Apr 11 08:23:16 2003 *************** *** 6,12 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-10-25 01:08-04:00\n" "Last-Translator: Ivo Timmermans \n" "Language-Team: Dutch \n" --- 6,12 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-10-25 01:08-04:00\n" "Last-Translator: Ivo Timmermans \n" "Language-Team: Dutch \n" *************** *** 136,154 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNE FOUT: onjuist adres type" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNE FOUT: Onjuist cmd %c" --- 136,154 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNE FOUT: onjuist adres type" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNE FOUT: Onjuist cmd %c" *************** *** 236,258 **** "E-mail foutrapportages naar: %s .\n" "Vermeld het woord ``%s'' ergens in het ``Subject:'' veld.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 236,258 ---- "E-mail foutrapportages naar: %s .\n" "Vermeld het woord ``%s'' ergens in het ``Subject:'' veld.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/pt_BR.gmo and sed-4.0.7/po/pt_BR.gmo differ diff -rNC3 sed-4.0.6/po/pt_BR.po sed-4.0.7/po/pt_BR.po *** sed-4.0.6/po/pt_BR.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/pt_BR.po Fri Apr 11 08:23:16 2003 *************** *** 8,14 **** msgid "" msgstr "" "Project-Id-Version: sed 4.0.1\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-11-08 17:44-0300\n" "Last-Translator: Aurlio Marinho Jargas \n" "Language-Team: Brazilian Portuguese \n" --- 8,14 ---- msgid "" msgstr "" "Project-Id-Version: sed 4.0.1\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-11-08 17:44-0300\n" "Last-Translator: Aurlio Marinho Jargas \n" "Language-Team: Brazilian Portuguese \n" *************** *** 138,156 **** msgid "INTERNAL ERROR: bad address type" msgstr "ERRO INTERNO: tipo invlido de endereo" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "erro no subprocesso" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "opo `e' no suportada" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "comando `e' no suportado" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERRO INTERNO: Comando invlido %c" --- 138,156 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ERRO INTERNO: tipo invlido de endereo" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "erro no subprocesso" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "opo `e' no suportada" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "comando `e' no suportado" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ERRO INTERNO: Comando invlido %c" *************** *** 253,264 **** "Envie relatrios de erros (em ingls) para: %s .\n" "Inclua a palavra ``%s'' no campo ``Assunto:'' ou ``Subject:''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed verso %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 253,264 ---- "Envie relatrios de erros (em ingls) para: %s .\n" "Inclua a palavra ``%s'' no campo ``Assunto:'' ou ``Subject:''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed verso %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 266,277 **** "baseado no GNU sed verso 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed verso %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 266,277 ---- "baseado no GNU sed verso 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed verso %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/ro.gmo and sed-4.0.7/po/ro.gmo differ diff -rNC3 sed-4.0.6/po/ro.po sed-4.0.7/po/ro.po *** sed-4.0.6/po/ro.po Thu Jan 1 01:00:00 1970 --- sed-4.0.7/po/ro.po Fri Apr 11 08:23:17 2003 *************** *** 0 **** --- 1,371 ---- + # Mesajele n limba romn pentru sed. + # Copyright (C) 2003 Free Software Foundation, Inc. + # Acest fiier este distribuit sub aceeai licen ca i pachetul sed. + # Laurentiu Buzdugan , 2003. + # + # + msgid "" + msgstr "" + "Project-Id-Version: sed 4.0.6\n" + "POT-Creation-Date: 2003-04-11 08:23+0200\n" + "PO-Revision-Date: 2003-03-25 02:51+00\n" + "Last-Translator: Laurentiu Buzdugan \n" + "Language-Team: Romanian \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=ISO-8859-2\n" + "Content-Transfer-Encoding: 8bit\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: sed/compile.c:181 + msgid "Multiple `!'s" + msgstr "`!'-uri multiple" + + #: sed/compile.c:182 + msgid "Unexpected `,'" + msgstr "`,' neateptat" + + #: sed/compile.c:183 + msgid "Cannot use +N or ~N as first address" + msgstr "Nu se poate folosi +N i ~N ca prima adres" + + #: sed/compile.c:184 + msgid "Unmatched `{'" + msgstr "`{' fr pereche" + + #: sed/compile.c:185 + msgid "Unexpected `}'" + msgstr "`}' neateptat" + + #: sed/compile.c:186 + msgid "Extra characters after command" + msgstr "Extra caractere dup comand" + + #: sed/compile.c:187 + msgid "Expected \\ after `a', `c' or `i'" + msgstr "Este ateptat \\ dup `a', `c' sau `i'" + + #: sed/compile.c:188 + msgid "`}' doesn't want any addresses" + msgstr "`}' nu vrea nici o adres" + + #: sed/compile.c:189 + msgid ": doesn't want any addresses" + msgstr ": nu vrea nici o adres" + + #: sed/compile.c:190 + msgid "Comments don't accept any addresses" + msgstr "Comentariile nu accept nici o adres" + + #: sed/compile.c:191 + msgid "Missing command" + msgstr "Comand absent" + + #: sed/compile.c:192 + msgid "Command only uses one address" + msgstr "Comanda folosete numai o adres" + + #: sed/compile.c:193 + msgid "Unterminated address regex" + msgstr "Adres regex neterminat" + + #: sed/compile.c:194 + msgid "Unterminated `s' command" + msgstr "Comand `s' neterminat" + + #: sed/compile.c:195 + msgid "Unterminated `y' command" + msgstr "Comand `y' neterminat" + + #: sed/compile.c:196 + msgid "Unknown option to `s'" + msgstr "Opiune necunoscut pentru `s'" + + #: sed/compile.c:197 + msgid "multiple `p' options to `s' command" + msgstr "multiple opiuni `p' pentru comanda `s'" + + #: sed/compile.c:198 + msgid "multiple `g' options to `s' command" + msgstr "multiple opiuni `g' pentru comanda `s'" + + #: sed/compile.c:199 + msgid "multiple number options to `s' command" + msgstr "numr multiplu de opiuni pentru comanda `s'" + + #: sed/compile.c:200 + msgid "number option to `s' command may not be zero" + msgstr "numrul de opiuni pentru comanda `s' nu poate fi zero" + + #: sed/compile.c:201 + msgid "strings for y command are different lengths" + msgstr "irurile pentru comanda y au lungimi diferite" + + #: sed/compile.c:202 + msgid "expected newer version of sed" + msgstr "am ateptat o versiune mai recent de sed" + + #: sed/compile.c:245 + #, c-format + msgid "Called savchar() with unexpected pushback (%x)" + msgstr "savchar() a fost chemat cu pushback (%x) neateptat" + + #: sed/compile.c:1340 + msgid "Unknown command:" + msgstr "Comand necunoscut:" + + #: sed/compile.c:1361 + #, c-format + msgid "%s: file %s line %lu: %s\n" + msgstr "%s: fiierul %s linia %lu: %s\n" + + #: sed/compile.c:1364 + #, c-format + msgid "%s: -e expression #%lu, char %lu: %s\n" + msgstr "%s: -e expresia #%lu, caracterul %lu: %s\n" + + #: sed/compile.c:1564 + #, c-format + msgid "Can't find label for jump to `%s'" + msgstr "Nu pot gsi eticheta pentru saltul la `%s'" + + #: sed/execute.c:517 + #, c-format + msgid "%s: can't read %s: %s\n" + msgstr "%s: nu pot citi %s: %s\n" + + #: sed/execute.c:726 + msgid "INTERNAL ERROR: bad address type" + msgstr "EROARE INTERN: tip de adres incorect" + + #: sed/execute.c:1020 sed/execute.c:1200 + msgid "error in subprocess" + msgstr "eroare n subproces" + + #: sed/execute.c:1022 + msgid "option `e' not supported" + msgstr "opiunea `e' nu e suportat" + + #: sed/execute.c:1202 + msgid "`e' command not supported" + msgstr "comanda `e' nu e suportat" + + #: sed/execute.c:1432 + #, c-format + msgid "INTERNAL ERROR: Bad cmd %c" + msgstr "EROARE INTERN: comand incorect %c" + + #: lib/regcomp.c:611 sed/regex.c:49 + msgid "No previous regular expression" + msgstr "Nici o expresie regular anterioar" + + #: sed/regex.c:50 + msgid "Cannot specify modifiers on empty regexp" + msgstr "Nu se pot specifica modificatori pentru regexp vid" + + #: sed/regex.c:145 + #, c-format + msgid "Invalid reference \\%d on `s' command's RHS" + msgstr "Referin invalid \\%d pentru RHS-ul comanzii `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" + " folosete sintaxa expresiilor regulare din Perl 5 n " + "script.\n" + + #: sed/sed.c:103 + #, c-format + msgid "" + "Usage: %s [OPTION]... {script-only-if-no-other-script} [input-file]...\n" + "\n" + " -n, --quiet, --silent\n" + " suppress automatic printing of pattern space\n" + " -e script, --expression=script\n" + " add the script to the commands to be executed\n" + " -f script-file, --file=script-file\n" + " add the contents of script-file to the commands to be " + "executed\n" + " -i[suffix], --in-place[=suffix]\n" + " edit files in place (makes backup if extension supplied)\n" + " -l N, --line-length=N\n" + " specify the desired line-wrap length for the `l' command\n" + " -r, --regexp-extended\n" + " use extended regular expressions in the script.\n" + "%s -s, --separate\n" + " consider files as separate rather than as a single " + "continuous\n" + " long stream.\n" + " -u, --unbuffered\n" + " load minimal amounts of data from the input files and " + "flush\n" + " the output buffers more often\n" + " --help display this help and exit\n" + " -V, --version output version information and exit\n" + "\n" + "If no -e, --expression, -f, or --file option is given, then the first\n" + "non-option argument is taken as the sed script to interpret. All\n" + "remaining arguments are names of input files; if no input files are\n" + "specified, then the standard input is read.\n" + "\n" + msgstr "" + "Folosire: %s [OPIUNE]... {script-doar-dac-nici-un-alt-script} [fiier-" + "intrare]...\n" + "\n" + " -n, --quiet, --silent\n" + " elimin tiprire automat a spaiului de model (pattern)\n" + " -e script, --expression=script\n" + " adaug scriptul la comenzile de executat\n" + " -f script-file, --file=script-file\n" + " adaug coninutul fiierului-script la comenzile de " + "executat\n" + " -i[suffix], --in-place[=suffix]\n" + " editeaz fiierele pe loc (creaz backup dac extensia e " + "specificat)\n" + " -l N, --line-length=N\n" + " specific lungimea liniei pentru wrap pentru comanda `l'\n" + " -r, --regexp-extended\n" + " folosete expresii regulare extinse n script.\n" + "%s -s, --separate\n" + " consider fiierele ca separate n loc de un singur stream\n" + " lung, continuu\n" + " -u, --unbuffered\n" + " ncarc cantiti minime de date din fiierele de intrare\n" + " i descarc (flush) buferele de ieire mai des\n" + " --help afieaz acest mesaj i termin\n" + " -V, --version afieaz informaia despre versiune i termin\n" + "\n" + "Dac nici una din opiunile -e, --expression, -f, sau --file e dat, atunci\n" + "este luat mai nti argumentul care nu e opiune drept script sed de\n" + "interpretat. Toate celelalte argumente sunt nume de fiiere de intrare; " + "dac\n" + "nici un fiier de intrare nu a fost specificat, e citit intrarea standard.\n" + "\n" + + #: sed/sed.c:132 + #, c-format + msgid "" + "E-mail bug reports to: %s .\n" + "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" + msgstr "" + "Raportai bug-uri prin e-mail la: %s .\n" + "Fii siguri c includei ``%s'' undeva n cmpul ``Subject:''.\n" + + #: sed/sed.c:257 + #, c-format + msgid "super-sed version %s\n" + msgstr "versiunea super-sed %s\n" + + #: sed/sed.c:258 + msgid "" + "based on GNU sed version 3.02.80\n" + "\n" + msgstr "" + "bazat pe GNU sed versiunea 3.02.80\n" + "\n" + + #: sed/sed.c:260 + #, c-format + msgid "GNU sed version %s\n" + msgstr "GNU sed versiunea %s\n" + + #: sed/sed.c:262 + #, c-format + msgid "" + "%s\n" + "This is free software; see the source for copying conditions. There is NO\n" + "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE,\n" + "to the extent permitted by law.\n" + msgstr "" + "%s\n" + "Acesta este software liber; vedei codul surs pentru condiiile de " + "copiere.\n" + "nu exist NICI O garanie; nici mcar pentru VANDABILITATE cau POTRIVIRE \n" + "PENTRU UN ANUME SCOP, conform legilor n vigoare.\n" + + #: lib/utils.c:127 + #, c-format + msgid "Couldn't open file %s: %s" + msgstr "Nu am putut deschide fiierul %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] "Nu am putut scrie %d articol n %s: %s" + msgstr[1] "Nu am putut scrie %d articole n %s: %s" + + #: lib/utils.c:176 + #, c-format + msgid "read error on %s: %s" + msgstr "eroare citire pentru %s: %s" + + #: lib/regcomp.c:129 + msgid "Success" + msgstr "Succes" + + #: lib/regcomp.c:132 + msgid "No match" + msgstr "Nici o potrivire" + + #: lib/regcomp.c:135 + msgid "Invalid regular expression" + msgstr "Expresie regular incorect" + + #: lib/regcomp.c:138 + msgid "Invalid collation character" + msgstr "Colaiune de caractere incorect" + + #: lib/regcomp.c:141 + msgid "Invalid character class name" + msgstr "Nume de clas de caractere incorect" + + #: lib/regcomp.c:144 + msgid "Trailing backslash" + msgstr "Backslash n coad" + + #: lib/regcomp.c:147 + msgid "Invalid back reference" + msgstr "Referin napoi incorect" + + #: lib/regcomp.c:150 + msgid "Unmatched [ or [^" + msgstr "[ sau [^ fr pereche" + + #: lib/regcomp.c:153 + msgid "Unmatched ( or \\(" + msgstr "( sau \\( fr pereche" + + #: lib/regcomp.c:156 + msgid "Unmatched \\{" + msgstr "\\{ fr pereche" + + #: lib/regcomp.c:159 + msgid "Invalid content of \\{\\}" + msgstr "Coninut incorect pentru \\{\\}" + + #: lib/regcomp.c:162 + msgid "Invalid range end" + msgstr "Sfrit de interval incorect" + + #: lib/regcomp.c:165 + msgid "Memory exhausted" + msgstr "Memorie epuizat" + + #: lib/regcomp.c:168 + msgid "Invalid preceding regular expression" + msgstr "Expresie regular precedent incorect" + + #: lib/regcomp.c:171 + msgid "Premature end of regular expression" + msgstr "Sfrit prematur al expresiei regulare" + + #: lib/regcomp.c:174 + msgid "Regular expression too big" + msgstr "Expresie regular prea mare" + + #: lib/regcomp.c:177 + msgid "Unmatched ) or \\)" + msgstr ") sau \\) fr pereche" Binary files sed-4.0.6/po/ru.gmo and sed-4.0.7/po/ru.gmo differ diff -rNC3 sed-4.0.6/po/ru.po sed-4.0.7/po/ru.po *** sed-4.0.6/po/ru.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/ru.po Fri Apr 11 08:23:17 2003 *************** *** 6,12 **** msgid "" msgstr "" "Project-Id-Version: sed-4.0.5\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2003-01-15 18:51+0200\n" "Last-Translator: Andrew W. Nosenko \n" "Language-Team: Russian \n" --- 6,12 ---- msgid "" msgstr "" "Project-Id-Version: sed-4.0.5\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2003-01-15 18:51+0200\n" "Last-Translator: Andrew W. Nosenko \n" "Language-Team: Russian \n" *************** *** 137,155 **** msgid "INTERNAL ERROR: bad address type" msgstr " : " ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr " " ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr " `e' " ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr " `e' " ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : `%c'" --- 137,155 ---- msgid "INTERNAL ERROR: bad address type" msgstr " : " ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr " " ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr " `e' " ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr " `e' " ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " : `%c'" *************** *** 251,273 **** " : %s .\n" " , ``%s''.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 251,273 ---- " : %s .\n" " , ``%s''.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" diff -rNC3 sed-4.0.6/po/sed.pot sed-4.0.7/po/sed.pot *** sed-4.0.6/po/sed.pot Sat Mar 15 08:24:55 2003 --- sed-4.0.7/po/sed.pot Fri Apr 11 08:23:10 2003 *************** *** 6,12 **** msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" --- 6,12 ---- msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "" *************** *** 214,236 **** "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 214,236 ---- "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/sk.gmo and sed-4.0.7/po/sk.gmo differ diff -rNC3 sed-4.0.6/po/sk.po sed-4.0.7/po/sk.po *** sed-4.0.6/po/sk.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/sk.po Fri Apr 11 08:23:17 2003 *************** *** 1,171 **** # Slovak translations for GNU sed package. ! # Copyright (C) 1999, 2002 Free Software Foundation, Inc. ! # Marcel Telka , 2002. # Miroslav Vasko , 1999. # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-10-25 08:37+0200\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural= (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" #: sed/compile.c:181 msgid "Multiple `!'s" ! msgstr "Viacn�sobn� `!'" #: sed/compile.c:182 msgid "Unexpected `,'" ! msgstr "Neo�ek�van� `,'" #: sed/compile.c:183 msgid "Cannot use +N or ~N as first address" ! msgstr "+N alebo ~N sa ned� pou�i� ako prv� adresa" #: sed/compile.c:184 msgid "Unmatched `{'" ! msgstr "Nezodpovedaj�ca `{'" #: sed/compile.c:185 msgid "Unexpected `}'" ! msgstr "Neo�ak�van� `}'" #: sed/compile.c:186 msgid "Extra characters after command" ! msgstr "Nadbyto�n� znaky po pr�kaze" #: sed/compile.c:187 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "O�ak�van� \\ po `a', `c' alebo `i'" #: sed/compile.c:188 msgid "`}' doesn't want any addresses" ! msgstr "`}' nevy�aduje ak�ko�vek adresu" #: sed/compile.c:189 msgid ": doesn't want any addresses" ! msgstr ": nechce ak�ko�vek adresu" #: sed/compile.c:190 msgid "Comments don't accept any addresses" ! msgstr "V koment�ri nie je pr�pustn� ak�ko�vek adresa" #: sed/compile.c:191 msgid "Missing command" ! msgstr "Ch�baj�ci pr�kaz" #: sed/compile.c:192 msgid "Command only uses one address" ! msgstr "Pr�kaz pou��va iba jednu adresu" #: sed/compile.c:193 msgid "Unterminated address regex" ! msgstr "Neukon�en� regul�rny v�raz adresy" #: sed/compile.c:194 msgid "Unterminated `s' command" ! msgstr "Neukon�en� pr�kaz `s'" #: sed/compile.c:195 msgid "Unterminated `y' command" ! msgstr "Neukon�en� pr�kaz `y'" #: sed/compile.c:196 msgid "Unknown option to `s'" ! msgstr "Nezn�ma vo�ba pre `s'" #: sed/compile.c:197 msgid "multiple `p' options to `s' command" ! msgstr "viacn�sobn� pou�itie vo�by `p' s pr�kazom `s'" #: sed/compile.c:198 msgid "multiple `g' options to `s' command" ! msgstr "viacn�sobn� pou�itie vo�by `g' s pr�kazom `s'" #: sed/compile.c:199 msgid "multiple number options to `s' command" ! msgstr "pr�kaz `s' m��e ma� maxim�lne jednu ��seln� vo�bu" #: sed/compile.c:200 msgid "number option to `s' command may not be zero" ! msgstr "��seln� vo�ba pr�kazu `s' nem��e by� nula" #: sed/compile.c:201 msgid "strings for y command are different lengths" ! msgstr "re�azce pre pr�kaz `y' maj� r�zne d��ky" #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format msgid "Called savchar() with unexpected pushback (%x)" ! msgstr "Bolo volan� savchar() s ne�akan�m pushback (%x)" #: sed/compile.c:1340 msgid "Unknown command:" ! msgstr "Nezn�my pr�kaz:" #: sed/compile.c:1361 #, c-format msgid "%s: file %s line %lu: %s\n" ! msgstr "%s: s�bor %s, riadok %lu: %s\n" #: sed/compile.c:1364 #, c-format msgid "%s: -e expression #%lu, char %lu: %s\n" ! msgstr "%s: -e v�raz #%lu, znak %lu: %s\n" #: sed/compile.c:1564 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "N�vestie pre skok na `%s' nie je mo�n� n�js?" #: sed/execute.c:517 #, c-format msgid "%s: can't read %s: %s\n" ! msgstr "%s: %s nie je mo�n� ��ta�: %s\n" #: sed/execute.c:726 msgid "INTERNAL ERROR: bad address type" ! msgstr "INTERN� CHYBA: zl� typ adresy" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "chyba v podprocese" ! #: sed/execute.c:1008 msgid "option `e' not supported" ! msgstr "vo�ba `e' nie je podporovan�" ! #: sed/execute.c:1188 msgid "`e' command not supported" ! msgstr "pr�kaz `e' nie je podporovan�" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" ! msgstr "INTERN� CHYBA: zl� pr�kaz %c" #: lib/regcomp.c:611 sed/regex.c:49 msgid "No previous regular expression" ! msgstr "Bez predch�dzaj�ceho regul�rneho v�razu" #: sed/regex.c:50 msgid "Cannot specify modifiers on empty regexp" ! msgstr "" ! "Nie je mo�n� zada� modifik�tory pre pr�zdny regul�rny v�raz" #: sed/regex.c:145 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "Neplatn� odkaz \\%d na `s' pr�kazu RHS" #: sed/sed.c:98 msgid "" --- 1,170 ---- # Slovak translations for GNU sed package. ! # Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc. ! # Marcel Telka , 2002, 2003. # Miroslav Vasko , 1999. # msgid "" msgstr "" ! "Project-Id-Version: GNU sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-24 14:47+0100\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural= (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" #: sed/compile.c:181 msgid "Multiple `!'s" ! msgstr "Viacnásobný `!'" #: sed/compile.c:182 msgid "Unexpected `,'" ! msgstr "Neočakávaná `,'" #: sed/compile.c:183 msgid "Cannot use +N or ~N as first address" ! msgstr "+N alebo ~N sa nedá použiť ako prvá adresa" #: sed/compile.c:184 msgid "Unmatched `{'" ! msgstr "Nezodpovedajúca `{'" #: sed/compile.c:185 msgid "Unexpected `}'" ! msgstr "Neočakávaná `}'" #: sed/compile.c:186 msgid "Extra characters after command" ! msgstr "Nadbytočné znaky po príkaze" #: sed/compile.c:187 msgid "Expected \\ after `a', `c' or `i'" ! msgstr "Očakávané \\ po `a', `c' alebo `i'" #: sed/compile.c:188 msgid "`}' doesn't want any addresses" ! msgstr "`}' nevyžaduje akúkoľvek adresu" #: sed/compile.c:189 msgid ": doesn't want any addresses" ! msgstr ": nechce akúkoľvek adresu" #: sed/compile.c:190 msgid "Comments don't accept any addresses" ! msgstr "V komentári nie je prípustná akákoľvek adresa" #: sed/compile.c:191 msgid "Missing command" ! msgstr "Chýbajúci príkaz" #: sed/compile.c:192 msgid "Command only uses one address" ! msgstr "Príkaz používa iba jednu adresu" #: sed/compile.c:193 msgid "Unterminated address regex" ! msgstr "Neukončený regulárny výraz adresy" #: sed/compile.c:194 msgid "Unterminated `s' command" ! msgstr "Neukončený príkaz `s'" #: sed/compile.c:195 msgid "Unterminated `y' command" ! msgstr "Neukončený príkaz `y'" #: sed/compile.c:196 msgid "Unknown option to `s'" ! msgstr "Neznáma voľba pre `s'" #: sed/compile.c:197 msgid "multiple `p' options to `s' command" ! msgstr "viacnásobné použitie voľby `p' s príkazom `s'" #: sed/compile.c:198 msgid "multiple `g' options to `s' command" ! msgstr "viacnásobné použitie voľby `g' s príkazom `s'" #: sed/compile.c:199 msgid "multiple number options to `s' command" ! msgstr "príkaz `s' môže mať maximálne jednu číselnú voľbu" #: sed/compile.c:200 msgid "number option to `s' command may not be zero" ! msgstr "číselná voľba príkazu `s' nemôže byť nula" #: sed/compile.c:201 msgid "strings for y command are different lengths" ! msgstr "reťazce pre príkaz `y' majú rôzne dĺžky" #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "očakávaná novšia verzia programu sed" #: sed/compile.c:245 #, c-format msgid "Called savchar() with unexpected pushback (%x)" ! msgstr "Bolo volané savchar() s nečakaným pushback (%x)" #: sed/compile.c:1340 msgid "Unknown command:" ! msgstr "Neznámy príkaz:" #: sed/compile.c:1361 #, c-format msgid "%s: file %s line %lu: %s\n" ! msgstr "%s: súbor %s, riadok %lu: %s\n" #: sed/compile.c:1364 #, c-format msgid "%s: -e expression #%lu, char %lu: %s\n" ! msgstr "%s: -e výraz #%lu, znak %lu: %s\n" #: sed/compile.c:1564 #, c-format msgid "Can't find label for jump to `%s'" ! msgstr "Návestie pre skok na `%s' nie je možné nájsť?" #: sed/execute.c:517 #, c-format msgid "%s: can't read %s: %s\n" ! msgstr "%s: %s nie je možné čítať: %s\n" #: sed/execute.c:726 msgid "INTERNAL ERROR: bad address type" ! msgstr "INTERNÁ CHYBA: zlý typ adresy" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "chyba v podprocese" ! #: sed/execute.c:1022 msgid "option `e' not supported" ! msgstr "voľba `e' nie je podporovaná" ! #: sed/execute.c:1202 msgid "`e' command not supported" ! msgstr "príkaz `e' nie je podporovaný" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" ! msgstr "INTERNÁ CHYBA: zlý príkaz %c" #: lib/regcomp.c:611 sed/regex.c:49 msgid "No previous regular expression" ! msgstr "Bez predchádzajúceho regulárneho výrazu" #: sed/regex.c:50 msgid "Cannot specify modifiers on empty regexp" ! msgstr "Nie je možné zadať modifikátory pre prázdny regulárny výraz" #: sed/regex.c:145 #, c-format msgid "Invalid reference \\%d on `s' command's RHS" ! msgstr "Neplatný odkaz \\%d na `s' príkazu RHS" #: sed/sed.c:98 msgid "" *************** *** 173,180 **** " use Perl 5's regular expressions syntax in the script.\n" msgstr "" " -R, --regexp-perl\n" ! " pou�i� syntax regul�rnych v�razov z Perlu 5 v " ! "skripte.\n" #: sed/sed.c:103 #, c-format --- 172,178 ---- " use Perl 5's regular expressions syntax in the script.\n" msgstr "" " -R, --regexp-perl\n" ! " použiť syntax regulárnych výrazov z Perlu 5 v skripte.\n" #: sed/sed.c:103 #, c-format *************** *** 211,252 **** "specified, then the standard input is read.\n" "\n" msgstr "" ! "Pou�itie: %s [VO�BA]... {skript-iba-ak-nie-je-in�-skript} [vst-" ! "s�bor]...\n" "\n" " -n, --quiet, --silent\n" ! " potla�i� automatick� v�pis priestoru vzorov\n" " -e skript, --expression=skript\n" ! " prida� skript k pr�kazom, ktor� maj� by� " ! "vykonan�\n" ! " -f skript-s�bor, --file=skript-s�bor\n" ! " prida� obsah s�boru skript-s�bor k pr�kazom, " ! "ktor� maj� by� vykonan�\n" ! " -i[pr�pona], --in-place[=pr�pona]\n" ! " upravi� s�bory na mieste (vytvoria sa z�lohy, ak je " ! "zadan� pr�pona)\n" " -l N, --line-length=N\n" ! " nastavi� po�adovan� d��ku pre zalomenie riadkov " ! "pre pr�kaz `l'\n" " -r, --regexp-extended\n" ! " pou�i� roz��ren� regul�rne v�razy v skripte.\n" "%s -s, --separate\n" ! " spracova� s�bory ako oddelen� a nie ako jeden " ! "spojit�\n" " -u, --unbuffered\n" ! " na��ta� minim�lne mno�stv� d�t zo vstupn�ch " ! "s�borov a vypr�zd�ova�\n" ! " v�stupn� vyrovn�vacie pam�te �astej�ie\n" ! " --help vyp�sa� t�to pomoc a skon�i�\n" ! " -V, --version vyp�sa� inform�ciu o verzii a skon�i�\n" "\n" ! "Ak nie je zadan� �iadna z volieb -e, --expression, -f, alebo --file,\n" ! "potom prv� parameter, ktor� nie je vo�bou, bude pova�ovan� za sed " ! "skript,\n" ! "ktor� m� by� interpretovan�. V�etky ostatn� parametre s� " ! "n�zvy vstupn�ch s�borov.\n" ! "Ak nebud� vstupn� s�bory zadan�, bude ��tan� �tandardn� " ! "vstup.\n" "\n" #: sed/sed.c:132 --- 209,246 ---- "specified, then the standard input is read.\n" "\n" msgstr "" ! "Použitie: %s [VOĽBA]... {skript-iba-ak-nie-je-iný-skript} [vstupný-" ! "súbor]...\n" "\n" " -n, --quiet, --silent\n" ! " potlačiť automatický výpis priestoru vzorov\n" " -e skript, --expression=skript\n" ! " pridať skript k príkazom, ktoré majú byť vykonané\n" ! " -f skript-súbor, --file=skript-súbor\n" ! " pridať obsah súboru skript-súbor k príkazom, ktoré majú byť " ! "vykonané\n" ! " -i[prípona], --in-place[=prípona]\n" ! " upraviť súbory na mieste (vytvoria sa zálohy, ak je zadaná " ! "prípona)\n" " -l N, --line-length=N\n" ! " nastaviť požadovanú dĺžku pre zalomenie riadkov pre príkaz " ! "`l'\n" " -r, --regexp-extended\n" ! " použiť rozšírené regulárne výrazy v skripte.\n" "%s -s, --separate\n" ! " spracovať súbory ako oddelené a nie ako jeden spojitý\n" " -u, --unbuffered\n" ! " načítať minimálne množstvá dát zo vstupných súborov a " ! "vyprázdňovať\n" ! " výstupné vyrovnávacie pamäte častejšie\n" ! " --help vypísať túto pomoc a skončiť\n" ! " -V, --version vypísať informáciu o verzii a skončiť\n" "\n" ! "Ak nie je zadaná žiadna z volieb -e, --expression, -f, alebo --file,\n" ! "potom prvý parameter, ktorý nie je voľbou, bude považovaný za sed skript,\n" ! "ktorý má byť interpretovaný. Všetky ostatné parametre sú názvy vstupných " ! "súborov.\n" ! "Ak nebudú vstupné súbory zadané, bude čítaný štandardný vstup.\n" "\n" #: sed/sed.c:132 *************** *** 255,284 **** "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "Spr�vy o chyb�ch zasielajte na adresu %s (iba anglicky).\n" ! "Pros�m vlo�te slovo ``%s'' niekde do polo�ky ``Predmet:''\n" ! "Koment�re k slovensk�mu prekladu zasielajte na adresu .\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed verzia %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! "zalo�en� na GNU sed verzia 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed verzia %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 249,278 ---- "E-mail bug reports to: %s .\n" "Be sure to include the word ``%s'' somewhere in the ``Subject:'' field.\n" msgstr "" ! "Správy o chybách zasielajte na adresu %s (iba anglicky).\n" ! "Prosím vložte slovo ``%s'' niekde do položky ``Predmet:''\n" ! "Komentáre k slovenskému prekladu zasielajte na adresu .\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed verzia %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! "založené na GNU sed verzia 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed verzia %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" *************** *** 287,387 **** "to the extent permitted by law.\n" msgstr "" "%s\n" ! "Toto je vo�n� programov� vybavenie; podmienky pre kop�rovanie a " ! "roz�irovanie\n" ! "n�jdete v zdrojov�ch textoch. Toto programov� vybavenie je BEZ " ! "z�ruky,\n" ! "a to aj bez z�ruky PREDAJNOSTI alebo VHODNOSTI PRE NEJAK� KONKR�TNY " ! "��EL.\n" #: lib/utils.c:127 #, c-format msgid "Couldn't open file %s: %s" ! msgstr "Nebolo mo�n� otvori� s�bor %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] "nebolo mo�n� zap�sa� %d polo�iek do %s: %s" ! msgstr[1] "nebolo mo�n� zap�sa� %d polo�ku do %s: %s" ! msgstr[2] "nebolo mo�n� zap�sa� %d polo�ky do %s: %s" #: lib/utils.c:176 #, c-format msgid "read error on %s: %s" ! msgstr "chyba pri ��tan� z %s: %s" #: lib/regcomp.c:129 msgid "Success" ! msgstr "�spech" #: lib/regcomp.c:132 msgid "No match" ! msgstr "Nezodpoved�" #: lib/regcomp.c:135 msgid "Invalid regular expression" ! msgstr "Neplatn� regul�rny v�raz" #: lib/regcomp.c:138 msgid "Invalid collation character" ! msgstr "Neplatn� znak pre porovn�vanie" #: lib/regcomp.c:141 msgid "Invalid character class name" ! msgstr "Neplatn� n�zov triedy znakov" #: lib/regcomp.c:144 msgid "Trailing backslash" ! msgstr "Ukon�ovacie opa�n� lom�tko" #: lib/regcomp.c:147 msgid "Invalid back reference" ! msgstr "Neplatn� sp�tn� odkaz" #: lib/regcomp.c:150 msgid "Unmatched [ or [^" ! msgstr "Nezodpovedaj�ca [ alebo [^" #: lib/regcomp.c:153 msgid "Unmatched ( or \\(" ! msgstr "Nezodpovedaj�ca ( alebo \\(" #: lib/regcomp.c:156 msgid "Unmatched \\{" ! msgstr "Nezodpovedaj�ca \\{" #: lib/regcomp.c:159 msgid "Invalid content of \\{\\}" ! msgstr "Neplatn� obsah \\{\\}" #: lib/regcomp.c:162 msgid "Invalid range end" ! msgstr "Neplatn� koniec rozsahu" #: lib/regcomp.c:165 msgid "Memory exhausted" ! msgstr "Vy�erpan� pam��" #: lib/regcomp.c:168 msgid "Invalid preceding regular expression" ! msgstr "Neplatn� predch�dzaj�ci regul�rny v�raz" #: lib/regcomp.c:171 msgid "Premature end of regular expression" ! msgstr "Neo�ak�van� koniec regul�rneho v�razu" #: lib/regcomp.c:174 msgid "Regular expression too big" ! msgstr "Regul�rny v�raz je pr�li� ve�k�" #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" ! msgstr "Nezodpovedaj�ca ) alebo \\)" ! ! #~ msgid "Invalid use of address modifier" ! #~ msgstr "Chybn� pou�itie adresy modifik�tora" ! ! #~ msgid "Unexpected End-of-file" ! #~ msgstr "Neo�ek�van� koniec s�boru" --- 281,373 ---- "to the extent permitted by law.\n" msgstr "" "%s\n" ! "Toto je voľné programové vybavenie; podmienky pre kopírovanie a " ! "rozširovanie\n" ! "nájdete v zdrojových textoch. Toto programové vybavenie je BEZ záruky,\n" ! "a to aj bez záruky PREDAJNOSTI alebo VHODNOSTI PRE NEJAKÝ KONKRÉTNY ÚČEL.\n" #: lib/utils.c:127 #, c-format msgid "Couldn't open file %s: %s" ! msgstr "Nebolo možné otvoriť súbor %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] "nebolo možné zapísať %d položiek do %s: %s" ! msgstr[1] "nebolo možné zapísať %d položku do %s: %s" ! msgstr[2] "nebolo možné zapísať %d položky do %s: %s" #: lib/utils.c:176 #, c-format msgid "read error on %s: %s" ! msgstr "chyba pri čítaní z %s: %s" #: lib/regcomp.c:129 msgid "Success" ! msgstr "Úspech" #: lib/regcomp.c:132 msgid "No match" ! msgstr "Nezodpovedá" #: lib/regcomp.c:135 msgid "Invalid regular expression" ! msgstr "Neplatný regulárny výraz" #: lib/regcomp.c:138 msgid "Invalid collation character" ! msgstr "Neplatný znak pre porovnávanie" #: lib/regcomp.c:141 msgid "Invalid character class name" ! msgstr "Neplatný názov triedy znakov" #: lib/regcomp.c:144 msgid "Trailing backslash" ! msgstr "Ukončovacie opačné lomítko" #: lib/regcomp.c:147 msgid "Invalid back reference" ! msgstr "Neplatný spätný odkaz" #: lib/regcomp.c:150 msgid "Unmatched [ or [^" ! msgstr "Nezodpovedajúca [ alebo [^" #: lib/regcomp.c:153 msgid "Unmatched ( or \\(" ! msgstr "Nezodpovedajúca ( alebo \\(" #: lib/regcomp.c:156 msgid "Unmatched \\{" ! msgstr "Nezodpovedajúca \\{" #: lib/regcomp.c:159 msgid "Invalid content of \\{\\}" ! msgstr "Neplatný obsah \\{\\}" #: lib/regcomp.c:162 msgid "Invalid range end" ! msgstr "Neplatný koniec rozsahu" #: lib/regcomp.c:165 msgid "Memory exhausted" ! msgstr "Vyčerpaná pamäť" #: lib/regcomp.c:168 msgid "Invalid preceding regular expression" ! msgstr "Neplatný predchádzajúci regulárny výraz" #: lib/regcomp.c:171 msgid "Premature end of regular expression" ! msgstr "Neočakávaný koniec regulárneho výrazu" #: lib/regcomp.c:174 msgid "Regular expression too big" ! msgstr "Regulárny výraz je príliš veľký" #: lib/regcomp.c:177 msgid "Unmatched ) or \\)" ! msgstr "Nezodpovedajúca ) alebo \\)" Binary files sed-4.0.6/po/sl.gmo and sed-4.0.7/po/sl.gmo differ diff -rNC3 sed-4.0.6/po/sl.po sed-4.0.7/po/sl.po *** sed-4.0.6/po/sl.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/sl.po Fri Apr 11 08:23:17 2003 *************** *** 1,13 **** # -*- mode:po; coding:iso-latin-2;-*- Slovenian message catalogue for GNU sed. ! # Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. ! # Primo Peterlin , 2000, 2001, 2002. ! # $Id: sed-4.0.sl.po,v 1.4 2002/10/25 13:17:36 peterlin Exp $ # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-10-25 15:17+0200\n" "Last-Translator: Primo Peterlin \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" --- 1,13 ---- # -*- mode:po; coding:iso-latin-2;-*- Slovenian message catalogue for GNU sed. ! # Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ! # Primo Peterlin , 2000, 2001, 2002, 2003. ! # $Id: sed-4.0.6.sl.po,v 1.2 2003/04/02 15:20:33 peterlin Exp $ # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-04-02 17:20+0200\n" "Last-Translator: Primo Peterlin \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" *************** *** 102,108 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 102,108 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "priakovana noveja izdaja programa sed" #: sed/compile.c:245 #, c-format *************** *** 137,155 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA NAPAKA: pokvarjen tip naslova" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "Napaka v podprocesu" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "Izbira ,e` ni podprta" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "Ukaz ,e` ni podprt" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA NAPAKA: Pokvarjen ukaz %c" --- 137,155 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNA NAPAKA: pokvarjen tip naslova" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "Napaka v podprocesu" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "Izbira ,e` ni podprta" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "Ukaz ,e` ni podprt" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNA NAPAKA: Pokvarjen ukaz %c" *************** *** 249,260 **** "Sporoila o napakah poljite na %s .\n" "Poskrbite, da bo nekje v polju ,,Subject`` nastopal izraz ,,%s``.\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed, razliica %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 249,260 ---- "Sporoila o napakah poljite na %s .\n" "Poskrbite, da bo nekje v polju ,,Subject`` nastopal izraz ,,%s``.\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed, razliica %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 262,273 **** "na osnovi GNU sed, razliica 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed, razliica %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 262,273 ---- "na osnovi GNU sed, razliica 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed, razliica %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/sv.gmo and sed-4.0.7/po/sv.gmo differ diff -rNC3 sed-4.0.6/po/sv.po sed-4.0.7/po/sv.po *** sed-4.0.6/po/sv.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/sv.po Fri Apr 11 08:23:18 2003 *************** *** 1,12 **** # Swedish messages for sed. ! # Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. ! # Christian Rose , 1999, 2000, 2001, 2002. # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" ! "PO-Revision-Date: 2002-10-25 19:18+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" --- 1,12 ---- # Swedish messages for sed. ! # Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ! # Christian Rose , 1999, 2000, 2001, 2002, 2003. # msgid "" msgstr "" ! "Project-Id-Version: sed 4.0.6\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" ! "PO-Revision-Date: 2003-03-24 10:57+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" *************** *** 100,106 **** #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "" #: sed/compile.c:245 #, c-format --- 100,106 ---- #: sed/compile.c:202 msgid "expected newer version of sed" ! msgstr "nyare version av sed frvntades" #: sed/compile.c:245 #, c-format *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr "INTERNT FEL: felaktig addresstyp" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "fel i underprocess" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "flaggan \"e\" stds inte" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "kommandot \"e\" stds inte" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNT FEL: Felaktigt kommando %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr "INTERNT FEL: felaktig addresstyp" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "fel i underprocess" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "flaggan \"e\" stds inte" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "kommandot \"e\" stds inte" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "INTERNT FEL: Felaktigt kommando %c" *************** *** 249,260 **** "Ange ordet \"%s\" p ngot stlle i \"rende:\"-fltet.\n" "Skicka anmrkningar p versttningen till .\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" --- 249,260 ---- "Ange ordet \"%s\" p ngot stlle i \"rende:\"-fltet.\n" "Skicka anmrkningar p versttningen till .\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "super-sed version %s\n" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" *************** *** 262,273 **** "baserad p GNU sed version 3.02.80\n" "\n" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 262,273 ---- "baserad p GNU sed version 3.02.80\n" "\n" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "GNU sed version %s\n" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/tr.gmo and sed-4.0.7/po/tr.gmo differ diff -rNC3 sed-4.0.6/po/tr.po sed-4.0.7/po/tr.po *** sed-4.0.6/po/tr.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/tr.po Fri Apr 11 08:23:18 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2001-07-05 22:41EEST\n" "Last-Translator: Deniz Akkus Kanca \n" "Language-Team: Turkish \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02a\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2001-07-05 22:41EEST\n" "Last-Translator: Deniz Akkus Kanca \n" "Language-Team: Turkish \n" *************** *** 135,153 **** msgid "INTERNAL ERROR: bad address type" msgstr " HATA: Hatal adres tr" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " HATA: Hatal komut %c" --- 135,153 ---- msgid "INTERNAL ERROR: bad address type" msgstr " HATA: Hatal adres tr" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr " HATA: Hatal komut %c" *************** *** 235,257 **** "bildirin. \n" "``%s'' szcnn Konu balnda yer almasna dikkat edin. \n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 235,257 ---- "bildirin. \n" "``%s'' szcnn Konu balnda yer almasna dikkat edin. \n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" Binary files sed-4.0.6/po/zh_CN.gmo and sed-4.0.7/po/zh_CN.gmo differ diff -rNC3 sed-4.0.6/po/zh_CN.po sed-4.0.7/po/zh_CN.po *** sed-4.0.6/po/zh_CN.po Sat Mar 15 08:24:58 2003 --- sed-4.0.7/po/zh_CN.po Fri Apr 11 08:23:18 2003 *************** *** 5,11 **** msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-03-15 08:24+0100\n" "PO-Revision-Date: 2002-08-18 11:11+0800\n" "Last-Translator: Wang Li \n" "Language-Team: Chinese (simplified) \n" --- 5,11 ---- msgid "" msgstr "" "Project-Id-Version: sed 3.02.80\n" ! "POT-Creation-Date: 2003-04-11 08:23+0200\n" "PO-Revision-Date: 2002-08-18 11:11+0800\n" "Last-Translator: Wang Li \n" "Language-Team: Chinese (simplified) \n" *************** *** 134,152 **** msgid "INTERNAL ERROR: bad address type" msgstr "ڲ󣺴ĵַ" ! #: sed/execute.c:1006 sed/execute.c:1186 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1008 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1188 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1418 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ڲ󣺴 %c" --- 134,152 ---- msgid "INTERNAL ERROR: bad address type" msgstr "ڲ󣺴ĵַ" ! #: sed/execute.c:1020 sed/execute.c:1200 msgid "error in subprocess" msgstr "" ! #: sed/execute.c:1022 msgid "option `e' not supported" msgstr "" ! #: sed/execute.c:1202 msgid "`e' command not supported" msgstr "" ! #: sed/execute.c:1432 #, c-format msgid "INTERNAL ERROR: Bad cmd %c" msgstr "ڲ󣺴 %c" *************** *** 235,257 **** "󱨸ͨʼ͵%s .\n" "ؽʡ%sڡSubject:ij\n" ! #: sed/sed.c:256 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:257 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:259 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:261 #, c-format msgid "" "%s\n" --- 235,257 ---- "󱨸ͨʼ͵%s .\n" "ؽʡ%sڡSubject:ij\n" ! #: sed/sed.c:257 #, c-format msgid "super-sed version %s\n" msgstr "" ! #: sed/sed.c:258 msgid "" "based on GNU sed version 3.02.80\n" "\n" msgstr "" ! #: sed/sed.c:260 #, c-format msgid "GNU sed version %s\n" msgstr "" ! #: sed/sed.c:262 #, c-format msgid "" "%s\n" diff -rNC3 sed-4.0.6/sed/Makefile.am sed-4.0.7/sed/Makefile.am *** sed-4.0.6/sed/Makefile.am Tue Dec 24 10:50:34 2002 --- sed-4.0.7/sed/Makefile.am Wed Mar 26 20:18:57 2003 *************** *** 7,13 **** noinst_HEADERS = sed.h INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl \ ! -I$(top_srcdir) AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" --- 7,13 ---- noinst_HEADERS = sed.h INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl \ ! -I$(top_srcdir) -I$(top_builddir)/lib AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" diff -rNC3 sed-4.0.6/sed/Makefile.in sed-4.0.7/sed/Makefile.in *** sed-4.0.6/sed/Makefile.in Tue Mar 18 17:56:38 2003 --- sed-4.0.7/sed/Makefile.in Fri Apr 11 08:23:31 2003 *************** *** 150,156 **** noinst_HEADERS = sed.h INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl \ ! -I$(top_srcdir) AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" --- 150,156 ---- noinst_HEADERS = sed.h INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl \ ! -I$(top_srcdir) -I$(top_builddir)/lib AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" diff -rNC3 sed-4.0.6/sed/compile.c sed-4.0.7/sed/compile.c *** sed-4.0.6/sed/compile.c Sat Mar 15 08:22:21 2003 --- sed-4.0.7/sed/compile.c Tue Mar 25 18:22:06 2003 *************** *** 542,548 **** cmd->global = FALSE; cmd->print = FALSE; cmd->eval = FALSE; ! cmd->numb = FALSE; cmd->fp = NULL; for (;;) --- 542,548 ---- cmd->global = FALSE; cmd->print = FALSE; cmd->eval = FALSE; ! cmd->numb = 0; cmd->fp = NULL; for (;;) diff -rNC3 sed-4.0.6/sed/execute.c sed-4.0.7/sed/execute.c *** sed-4.0.6/sed/execute.c Sat Feb 15 13:08:15 2003 --- sed-4.0.7/sed/execute.c Tue Mar 25 18:51:22 2003 *************** *** 423,429 **** for (p=append_head; p; p=q) { if (p->free) ! FREE(p->text); q = p->next; FREE(p); --- 423,429 ---- for (p=append_head; p; p=q) { if (p->free) ! FREE(p->text); q = p->next; FREE(p); *************** *** 540,548 **** #ifdef HAVE_FCHMOD { ! struct stat st; ! fstat (fileno (input->fp), &st); ! fchmod (output_fd, st.st_mode); } #endif --- 540,548 ---- #ifdef HAVE_FCHMOD { ! struct stat st; ! fstat (fileno (input->fp), &st); ! fchmod (output_fd, st.st_mode); } #endif *************** *** 716,722 **** case addr_is_step_mod: /* reminder: these are only meaningful for a2 addresses */ /* a2->addr_number needs to be recomputed each time a1 address ! matches for the step and step_mod types */ return (addr->addr_number <= input->line_number); case addr_is_last: --- 716,722 ---- case addr_is_step_mod: /* reminder: these are only meaningful for a2 addresses */ /* a2->addr_number needs to be recomputed each time a1 address ! matches for the step and step_mod types */ return (addr->addr_number <= input->line_number); case addr_is_last: *************** *** 830,843 **** ck_fwrite("$\n", 1, 2, output_file); } static void do_subst P_((struct subst *)); static void do_subst(sub) struct subst *sub; { ! size_t start = 0; /* where to start scan for (next) match in LINE */ size_t last_end = 0; /* where did the last successful match end in LINE */ ! countT count = 0; /* number of matches found */ #define MAX_BACKREFERENCES 10 static struct re_registers regs; --- 830,890 ---- ck_fwrite("$\n", 1, 2, output_file); } + static enum replacement_types append_replacement P_((struct line *, struct replacement *, + struct re_registers *, + enum replacement_types)); + static enum replacement_types + append_replacement (buf, p, regs, repl_mod) + struct line *buf; + struct replacement *p; + struct re_registers *regs; + enum replacement_types repl_mod; + { + for (; p; p=p->next) + { + int i = p->subst_id; + enum replacement_types curr_type; + + /* Apply a \[lu] modifier that was given earlier, but which we + have not had yet the occasion to apply. But don't do it + if this replacement has a modifier of its own. */ + curr_type = (p->repl_type & repl_modifiers) + ? p->repl_type + : p->repl_type | repl_mod; + + repl_mod = 0; + if (p->prefix_length) + { + str_append_modified(buf, p->prefix, p->prefix_length, + curr_type); + curr_type &= ~repl_modifiers; + } + + if (0 <= i) + if (regs->end[i] == regs->start[i] && p->repl_type & repl_modifiers) + /* Save this modifier, we shall apply it later. + e.g. in s/()([a-z])/\u\1\2/ + the \u modifier is applied to \2, not \1 */ + repl_mod = curr_type & repl_modifiers; + + else + str_append_modified(buf, line.active + regs->start[i], + CAST(size_t)(regs->end[i] - regs->start[i]), + curr_type); + } + + return repl_mod; + } + static void do_subst P_((struct subst *)); static void do_subst(sub) struct subst *sub; { ! size_t start = 0; /* where to start scan for (next) match in LINE */ size_t last_end = 0; /* where did the last successful match end in LINE */ ! countT count = 0; /* number of matches found */ ! flagT again = TRUE; #define MAX_BACKREFERENCES 10 static struct re_registers regs; *************** *** 851,857 **** if (!match_regex(sub->regx, line.active, line.length, start, ®s, MAX_BACKREFERENCES)) return; ! if (!sub->replacement && sub->numb <= 1) if (regs.start[0] == 0 && !sub->global) { --- 898,904 ---- if (!match_regex(sub->regx, line.active, line.length, start, ®s, MAX_BACKREFERENCES)) return; ! if (!sub->replacement && sub->numb <= 1) if (regs.start[0] == 0 && !sub->global) { *************** *** 861,867 **** line.active += regs.end[0]; line.length -= regs.end[0]; line.alloc -= regs.end[0]; ! goto did_subst; } else if (regs.end[0] == line.length) { --- 908,914 ---- line.active += regs.end[0]; line.length -= regs.end[0]; line.alloc -= regs.end[0]; ! goto post_subst; } else if (regs.end[0] == line.length) { *************** *** 869,880 **** replaced = TRUE; line.length = regs.start[0]; ! goto did_subst; } do { - struct replacement *p; enum replacement_types repl_mod = 0; size_t offset = regs.start[0]; --- 916,926 ---- replaced = TRUE; line.length = regs.start[0]; ! goto post_subst; } do { enum replacement_types repl_mod = 0; size_t offset = regs.start[0]; *************** *** 885,966 **** str_append(&s_accum, line.active + start, offset - start); /* If we're counting up to the Nth match, are we there yet? ! And even if we are there, there is another case we have to skip: are we matching an empty string immediately following ! another match? ! ! This latter case avoids that baaaac, when passed through ! s,a*,x,g, gives `xbxxcx' instead of xbxcx. This behavior is ! unacceptable because it is not consistently applied (for ! example, `baaaa' gives `xbx', not `xbxx'). */ ! if ((count > 0 && offset == last_end && matched == 0) ! || ++count < sub->numb) ! { ! /* If the match was vacuous, skip ahead one character ! * anyway. ! */ ! if (matched == 0 && offset < line.length) ! matched = 1; ! str_append(&s_accum, line.active + offset, matched); ! start = offset + matched; ! continue; } ! ! /* We found a match, set the `replaced' flag. */ ! replaced = TRUE; ! ! last_end = regs.end[0]; ! ! /* Now expand the replacement string into the output string. */ ! for (p=sub->replacement; p; p=p->next) { ! int i = p->subst_id; ! enum replacement_types curr_type; ! ! /* Apply a \[lu] modifier that was given earlier, but which we ! have not had yet the occasion to apply. But don't do it ! if this replacement has a modifier of its own. */ ! curr_type = (p->repl_type & repl_modifiers) ! ? p->repl_type ! : p->repl_type | repl_mod; ! ! repl_mod = 0; ! if (p->prefix_length) { ! str_append_modified(&s_accum, p->prefix, p->prefix_length, ! curr_type); ! curr_type &= ~repl_modifiers; } ! if (0 <= i) ! if (regs.end[i] == regs.start[i] && p->repl_type & repl_modifiers) ! /* Save this modifier, we shall apply it later. ! e.g. in s/()([a-z])/\u\1\2/ ! the \u modifier is applied to \2, not \1 */ ! repl_mod = curr_type & repl_modifiers; ! ! else ! str_append_modified(&s_accum, line.active + regs.start[i], ! CAST(size_t)(regs.end[i] - regs.start[i]), ! curr_type); ! } ! ! start = regs.end[0]; ! if (!sub->global || start == line.length) ! break; ! ! /* If the match was vacuous, skip over one character ! * and add that character to the output. ! */ ! if (regs.start[0] == regs.end[0]) ! { ! str_append(&s_accum, line.active + offset, 1); ! ++start; } } ! while (match_regex(sub->regx, line.active, line.length, start, ! ®s, MAX_BACKREFERENCES)); /* Copy stuff to the right of the last match into the output string. */ if (start < line.length) --- 931,977 ---- str_append(&s_accum, line.active + start, offset - start); /* If we're counting up to the Nth match, are we there yet? ! And even if we are there, there is another case we have to skip: are we matching an empty string immediately following ! another match? ! This latter case avoids that baaaac, when passed through ! s,a*,x,g, gives `xbxxcx' instead of xbxcx. This behavior is ! unacceptable because it is not consistently applied (for ! example, `baaaa' gives `xbx', not `xbxx'). */ ! if ((matched > 0 || count == 0 || offset > last_end) ! && (last_end = regs.end[0], ++count >= sub->numb)) ! { ! /* We found a match, set the `replaced' flag. */ ! replaced = TRUE; ! ! /* Now expand the replacement string into the output string. */ ! repl_mod = append_replacement (&s_accum, sub->replacement, ®s, repl_mod); ! again = sub->global; } ! else { ! /* The match was not replaced. Copy the text until its ! end; if it was vacuous, skip over one character and ! add that character to the output. */ ! if (matched == 0) { ! if (start < line.length) ! matched = 1; ! else ! break; } ! str_append(&s_accum, line.active + offset, matched); } + + /* Start after the match. */ + start = offset + matched; } ! while (again ! && start <= line.length ! && match_regex(sub->regx, line.active, line.length, start, ! ®s, MAX_BACKREFERENCES)); /* Copy stuff to the right of the last match into the output string. */ if (start < line.length) *************** *** 970,987 **** /* Exchange line and s_accum. This can be much cheaper than copying s_accum.active into line.text (for huge lines). */ line_exchange(&line, &s_accum); ! did_subst: ! /* Finish up. */ if (sub->print & 1) output_line(line.active, line.length, line.chomped, output_file); ! ! if (sub->eval) { #ifdef HAVE_POPEN FILE *pipe; s_accum.length = 0; ! str_append (&line, "", 1); pipe = popen(line.active, "r"); --- 981,1001 ---- /* Exchange line and s_accum. This can be much cheaper than copying s_accum.active into line.text (for huge lines). */ line_exchange(&line, &s_accum); ! /* Finish up. */ + if (count < sub->numb) + return; + + post_subst: if (sub->print & 1) output_line(line.active, line.length, line.chomped, output_file); ! ! if (sub->eval) { #ifdef HAVE_POPEN FILE *pipe; s_accum.length = 0; ! str_append (&line, "", 1); pipe = popen(line.active, "r"); *************** *** 1317,1327 **** case 'W': if (cur_cmd->x.fp) ! { char *p = memchr(line.active, '\n', line.length); output_line(line.active, p ? p - line.active : line.length, p ? 1 : line.chomped, cur_cmd->x.fp); ! } break; case 'x': --- 1331,1341 ---- case 'W': if (cur_cmd->x.fp) ! { char *p = memchr(line.active, '\n', line.length); output_line(line.active, p ? p - line.active : line.length, p ? 1 : line.chomped, cur_cmd->x.fp); ! } break; case 'x': *************** *** 1331,1411 **** case 'y': { #if defined MBS_SUPPORT && !defined REG_PERL ! if (MB_CUR_MAX > 1) ! { ! int idx, prev_idx; /* index in the input line. */ ! char **trans; ! mbstate_t cur_stat; ! memset(&cur_stat, 0, sizeof(mbstate_t)); ! for (idx = 0; idx < line.length;) ! { ! int mbclen, i; ! mbclen = mbrlen(line.active + idx, line.length - idx, ! &cur_stat); ! /* An invalid sequence, or a truncated multibyte ! character. We treat it as a singlebyte character. ! */ ! if (mbclen == (size_t) -1 || mbclen == (size_t) -2 ! || mbclen == 0) ! mbclen = 1; ! ! trans = cur_cmd->x.translatemb; ! /* `i' indicate i-th translate pair. */ ! for (i = 0; trans[2*i] != NULL; i++) ! { ! if (strncmp(line.active + idx, trans[2*i], mbclen) ! == 0) ! { ! flagT move_remain_buffer = FALSE; ! int trans_len = strlen(trans[2*i+1]); ! ! if (mbclen < trans_len) ! { ! int new_len; ! new_len = line.length + 1 + trans_len - mbclen; ! /* We must extend the line buffer. */ ! if (line.alloc < new_len) ! { ! /* And we must resize the buffer. */ ! resize_line(&line, new_len); ! } ! move_remain_buffer = TRUE; ! } ! else if (mbclen > trans_len) ! { ! /* We must truncate the line buffer. */ ! move_remain_buffer = TRUE; ! } ! prev_idx = idx; ! if (move_remain_buffer) ! { ! int move_len, move_offset; ! char *move_from, *move_to; ! /* Move the remaining with \0. */ ! move_from = line.active + idx + mbclen; ! move_to = line.active + idx + trans_len; ! move_len = line.length + 1 - idx - mbclen; ! move_offset = trans_len - mbclen; ! memmove(move_to, move_from, move_len); ! line.length += move_offset; ! idx += move_offset; ! } ! strncpy(line.active + prev_idx, trans[2*i+1], ! trans_len); ! break; ! } ! } ! idx += mbclen; ! } ! } ! else #endif /* MBS_SUPPORT */ ! { ! unsigned char *p, *e; ! p = CAST(unsigned char *)line.active; ! for (e=p+line.length; px.translate[*p]; ! } } break; --- 1345,1425 ---- case 'y': { #if defined MBS_SUPPORT && !defined REG_PERL ! if (MB_CUR_MAX > 1) ! { ! int idx, prev_idx; /* index in the input line. */ ! char **trans; ! mbstate_t cur_stat; ! memset(&cur_stat, 0, sizeof(mbstate_t)); ! for (idx = 0; idx < line.length;) ! { ! int mbclen, i; ! mbclen = mbrlen(line.active + idx, line.length - idx, ! &cur_stat); ! /* An invalid sequence, or a truncated multibyte ! character. We treat it as a singlebyte character. ! */ ! if (mbclen == (size_t) -1 || mbclen == (size_t) -2 ! || mbclen == 0) ! mbclen = 1; ! ! trans = cur_cmd->x.translatemb; ! /* `i' indicate i-th translate pair. */ ! for (i = 0; trans[2*i] != NULL; i++) ! { ! if (strncmp(line.active + idx, trans[2*i], mbclen) ! == 0) ! { ! flagT move_remain_buffer = FALSE; ! int trans_len = strlen(trans[2*i+1]); ! ! if (mbclen < trans_len) ! { ! int new_len; ! new_len = line.length + 1 + trans_len - mbclen; ! /* We must extend the line buffer. */ ! if (line.alloc < new_len) ! { ! /* And we must resize the buffer. */ ! resize_line(&line, new_len); ! } ! move_remain_buffer = TRUE; ! } ! else if (mbclen > trans_len) ! { ! /* We must truncate the line buffer. */ ! move_remain_buffer = TRUE; ! } ! prev_idx = idx; ! if (move_remain_buffer) ! { ! int move_len, move_offset; ! char *move_from, *move_to; ! /* Move the remaining with \0. */ ! move_from = line.active + idx + mbclen; ! move_to = line.active + idx + trans_len; ! move_len = line.length + 1 - idx - mbclen; ! move_offset = trans_len - mbclen; ! memmove(move_to, move_from, move_len); ! line.length += move_offset; ! idx += move_offset; ! } ! strncpy(line.active + prev_idx, trans[2*i+1], ! trans_len); ! break; ! } ! } ! idx += mbclen; ! } ! } ! else #endif /* MBS_SUPPORT */ ! { ! unsigned char *p, *e; ! p = CAST(unsigned char *)line.active; ! for (e=p+line.length; px.translate[*p]; ! } } break; diff -rNC3 sed-4.0.6/sed/regex.c sed-4.0.7/sed/regex.c *** sed-4.0.6/sed/regex.c Sat Feb 15 13:30:58 2003 --- sed-4.0.7/sed/regex.c Wed Mar 26 21:06:19 2003 *************** *** 197,202 **** --- 197,203 ---- struct re_registers *regarray; int regsize; { + int ret; static regex_t *regex_last; #ifdef REG_PERL regmatch_t *regmatch; *************** *** 206,212 **** regmatch = NULL; #endif ! int ret; /* Keep track of the last regexp matched. */ if (!regex) --- 207,213 ---- regmatch = NULL; #endif ! /* printf ("Matching from %d/%d\n", buf_start_offset, buflen); */ /* Keep track of the last regexp matched. */ if (!regex) diff -rNC3 sed-4.0.6/sed/sed.c sed-4.0.7/sed/sed.c *** sed-4.0.6/sed/sed.c Sat Mar 15 08:18:03 2003 --- sed-4.0.7/sed/sed.c Sun Mar 30 16:35:48 2003 *************** *** 179,184 **** --- 179,185 ---- /* Tell program which translations to use and where to find. */ bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); #endif POSIXLY_CORRECT = (getenv("POSIXLY_CORRECT") != NULL); diff -rNC3 sed-4.0.6/testsuite/Makefile.am sed-4.0.7/testsuite/Makefile.am *** sed-4.0.6/testsuite/Makefile.am Wed Mar 12 19:38:36 2003 --- sed-4.0.7/testsuite/Makefile.am Fri Mar 28 15:48:51 2003 *************** *** 3,9 **** TESTS = $(SEDTESTS) SEDTESTS = enable sep inclib 8bit newjis xabcx dollar noeol \ ! numsub head madding mac-mf empty xbxcx recall xemacs \ fasts uniq manis khadafy linecnt eval distrib 8to7 \ allsub cv-vars classes middle spencer stdin flipcase \ subwrite writeout readin \ --- 3,10 ---- TESTS = $(SEDTESTS) SEDTESTS = enable sep inclib 8bit newjis xabcx dollar noeol \ ! numsub numsub2 numsub3 numsub4 numsub5 \ ! head madding mac-mf empty xbxcx xbxcx3 recall xemacs \ fasts uniq manis khadafy linecnt eval distrib 8to7 \ allsub cv-vars classes middle spencer stdin flipcase \ subwrite writeout readin \ *************** *** 40,45 **** --- 41,50 ---- newjis.good newjis.inp newjis.sed \ noeol.good noeol.inp noeol.sed \ numsub.good numsub.inp numsub.sed \ + numsub2.good numsub2.inp numsub2.sed \ + numsub3.good numsub3.inp numsub3.sed \ + numsub4.good numsub4.inp numsub4.sed \ + numsub5.good numsub5.inp numsub5.sed \ readin.good readin.in2 readin.inp readin.sed \ recall.good recall.inp recall.sed \ sep.good sep.inp sep.sed \ *************** *** 50,59 **** writeout.inp writeout.sed wrtout1.good wrtout2.good \ xabcx.good xabcx.inp xabcx.sed \ xbxcx.good xbxcx.inp xbxcx.sed \ xemacs.good xemacs.inp xemacs.sed clean-local: ! test x$(srcdir) = x. || rm readin.in2 eval.in2 # automake makes `check' depend on $(TESTS). Declare # dummy targets for $(TESTS) so that make does not complain. --- 55,65 ---- writeout.inp writeout.sed wrtout1.good wrtout2.good \ xabcx.good xabcx.inp xabcx.sed \ xbxcx.good xbxcx.inp xbxcx.sed \ + xbxcx3.good xbxcx3.inp xbxcx3.sed \ xemacs.good xemacs.inp xemacs.sed clean-local: ! test x$(srcdir) = x. || rm -f readin.in2 eval.in2 # automake makes `check' depend on $(TESTS). Declare # dummy targets for $(TESTS) so that make does not complain. diff -rNC3 sed-4.0.6/testsuite/Makefile.in sed-4.0.7/testsuite/Makefile.in *** sed-4.0.6/testsuite/Makefile.in Tue Mar 18 17:57:00 2003 --- sed-4.0.7/testsuite/Makefile.in Fri Apr 11 08:23:53 2003 *************** *** 147,153 **** TESTS = $(SEDTESTS) SEDTESTS = enable sep inclib 8bit newjis xabcx dollar noeol \ ! numsub head madding mac-mf empty xbxcx recall xemacs \ fasts uniq manis khadafy linecnt eval distrib 8to7 \ allsub cv-vars classes middle spencer stdin flipcase \ subwrite writeout readin \ --- 147,154 ---- TESTS = $(SEDTESTS) SEDTESTS = enable sep inclib 8bit newjis xabcx dollar noeol \ ! numsub numsub2 numsub3 numsub4 numsub5 \ ! head madding mac-mf empty xbxcx xbxcx3 recall xemacs \ fasts uniq manis khadafy linecnt eval distrib 8to7 \ allsub cv-vars classes middle spencer stdin flipcase \ subwrite writeout readin \ *************** *** 185,190 **** --- 186,195 ---- newjis.good newjis.inp newjis.sed \ noeol.good noeol.inp noeol.sed \ numsub.good numsub.inp numsub.sed \ + numsub2.good numsub2.inp numsub2.sed \ + numsub3.good numsub3.inp numsub3.sed \ + numsub4.good numsub4.inp numsub4.sed \ + numsub5.good numsub5.inp numsub5.sed \ readin.good readin.in2 readin.inp readin.sed \ recall.good recall.inp recall.sed \ sep.good sep.inp sep.sed \ *************** *** 195,200 **** --- 200,206 ---- writeout.inp writeout.sed wrtout1.good wrtout2.good \ xabcx.good xabcx.inp xabcx.sed \ xbxcx.good xbxcx.inp xbxcx.sed \ + xbxcx3.good xbxcx3.inp xbxcx3.sed \ xemacs.good xemacs.inp xemacs.sed subdir = testsuite *************** *** 408,414 **** clean-local: ! test x$(srcdir) = x. || rm readin.in2 eval.in2 # automake makes `check' depend on $(TESTS). Declare # dummy targets for $(TESTS) so that make does not complain. --- 414,420 ---- clean-local: ! test x$(srcdir) = x. || rm -f readin.in2 eval.in2 # automake makes `check' depend on $(TESTS). Declare # dummy targets for $(TESTS) so that make does not complain. diff -rNC3 sed-4.0.6/testsuite/Makefile.tests sed-4.0.7/testsuite/Makefile.tests *** sed-4.0.6/testsuite/Makefile.tests Wed Mar 12 19:40:24 2003 --- sed-4.0.7/testsuite/Makefile.tests Tue Mar 25 18:02:01 2003 *************** *** 11,17 **** RM=rm -f enable sep inclib 8bit 8to7 newjis xabcx dollar noeol \ ! numsub head madding mac-mf empty xbxcx recall xemacs \ fasts uniq manis linecnt khadafy allsub flipcase:: $(TIME) $(SED) -f $(srcdir)/$@.sed \ < $(srcdir)/$@.inp > $@.out --- 11,17 ---- RM=rm -f enable sep inclib 8bit 8to7 newjis xabcx dollar noeol \ ! numsub head madding mac-mf empty xbxcx xbxcx3 recall xemacs \ fasts uniq manis linecnt khadafy allsub flipcase:: $(TIME) $(SED) -f $(srcdir)/$@.sed \ < $(srcdir)/$@.inp > $@.out *************** *** 25,31 **** $(CMP) $@.1out $@.2out @$(RM) $@.1out $@.2out ! cv-vars classes middle dc distrib factor:: $(TIME) $(SED) -n -f $(srcdir)/$@.sed < $(srcdir)/$@.inp > $@.out $(CMP) $(srcdir)/$@.good $@.out @$(RM) $@.out --- 25,31 ---- $(CMP) $@.1out $@.2out @$(RM) $@.1out $@.2out ! cv-vars classes middle dc distrib factor numsub2 numsub3 numsub4 numsub5:: $(TIME) $(SED) -n -f $(srcdir)/$@.sed < $(srcdir)/$@.inp > $@.out $(CMP) $(srcdir)/$@.good $@.out @$(RM) $@.out diff -rNC3 sed-4.0.6/testsuite/numsub2.inp sed-4.0.7/testsuite/numsub2.inp *** sed-4.0.6/testsuite/numsub2.inp Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub2.inp Sun Mar 23 11:31:47 2003 *************** *** 0 **** --- 1 ---- + diff -rNC3 sed-4.0.6/testsuite/numsub2.sed sed-4.0.7/testsuite/numsub2.sed *** sed-4.0.6/testsuite/numsub2.sed Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub2.sed Sun Mar 23 11:32:29 2003 *************** *** 0 **** --- 1 ---- + s/a*/b/2 diff -rNC3 sed-4.0.6/testsuite/numsub3.inp sed-4.0.7/testsuite/numsub3.inp *** sed-4.0.6/testsuite/numsub3.inp Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub3.inp Sun Mar 23 11:32:00 2003 *************** *** 0 **** --- 1 ---- + diff -rNC3 sed-4.0.6/testsuite/numsub3.sed sed-4.0.7/testsuite/numsub3.sed *** sed-4.0.6/testsuite/numsub3.sed Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub3.sed Sun Mar 23 11:32:35 2003 *************** *** 0 **** --- 1 ---- + s/^a*/b/2 diff -rNC3 sed-4.0.6/testsuite/numsub4.inp sed-4.0.7/testsuite/numsub4.inp *** sed-4.0.6/testsuite/numsub4.inp Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub4.inp Sun Mar 23 11:33:09 2003 *************** *** 0 **** --- 1 ---- + z diff -rNC3 sed-4.0.6/testsuite/numsub4.sed sed-4.0.7/testsuite/numsub4.sed *** sed-4.0.6/testsuite/numsub4.sed Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub4.sed Sun Mar 23 11:32:44 2003 *************** *** 0 **** --- 1 ---- + s/^a*/b/2p diff -rNC3 sed-4.0.6/testsuite/numsub5.inp sed-4.0.7/testsuite/numsub5.inp *** sed-4.0.6/testsuite/numsub5.inp Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub5.inp Sun Mar 23 11:33:11 2003 *************** *** 0 **** --- 1 ---- + z diff -rNC3 sed-4.0.6/testsuite/numsub5.sed sed-4.0.7/testsuite/numsub5.sed *** sed-4.0.6/testsuite/numsub5.sed Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/numsub5.sed Sun Mar 23 11:33:01 2003 *************** *** 0 **** --- 1 ---- + s/a*/b/3p diff -rNC3 sed-4.0.6/testsuite/xbxcx3.good sed-4.0.7/testsuite/xbxcx3.good *** sed-4.0.6/testsuite/xbxcx3.good Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/xbxcx3.good Tue Mar 25 18:48:38 2003 *************** *** 0 **** --- 1,7 ---- + + b + bcx + bacx + baacx + baaacx + baaaacx diff -rNC3 sed-4.0.6/testsuite/xbxcx3.inp sed-4.0.7/testsuite/xbxcx3.inp *** sed-4.0.6/testsuite/xbxcx3.inp Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/xbxcx3.inp Tue Mar 25 18:48:38 2003 *************** *** 0 **** --- 1,7 ---- + + b + bc + bac + baac + baaac + baaaac diff -rNC3 sed-4.0.6/testsuite/xbxcx3.sed sed-4.0.7/testsuite/xbxcx3.sed *** sed-4.0.6/testsuite/xbxcx3.sed Thu Jan 1 01:00:00 1970 --- sed-4.0.7/testsuite/xbxcx3.sed Tue Mar 25 18:48:38 2003 *************** *** 0 **** --- 1 ---- + s/a*/x/3