From 0374af249ad33415909f164f676f803e84a94723 Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 4 Sep 2005 17:59:34 +0000 Subject: [PATCH] Work around compilation failure with GCC 4 and AIX 5.1, in which open is #defined to open64 --- find/defs.h | 4 +-- find/find.c | 4 +-- find/parser.c | 20 ++++++------- find/pred.c | 8 +++--- po/be.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/ca.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/da.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/de.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/el.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/eo.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/es.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/et.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/fi.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/findutils.pot | 83 +++++++++++++++++++++++++++++++++++++---------------- po/fr.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/ga.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/gl.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/hr.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/hu.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/id.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/it.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/ja.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/ko.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/lg.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/ms.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/nl.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/pl.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/pt.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/pt_BR.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/ro.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/ru.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/rw.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/sk.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/sl.po | 87 ++++++++++++++++++++++++++++++++++++++------------------ po/sr.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/sv.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/tr.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/vi.po | 85 +++++++++++++++++++++++++++++++++++++----------------- po/zh_CN.po | 83 +++++++++++++++++++++++++++++++++++++---------------- po/zh_TW.po | 85 +++++++++++++++++++++++++++++++++++++----------------- 40 files changed, 2122 insertions(+), 934 deletions(-) diff --git a/find/defs.h b/find/defs.h index d2ff1a8..c5bfaf7 100644 --- a/find/defs.h +++ b/find/defs.h @@ -429,7 +429,7 @@ boolean pred_amin PARAMS((char *pathname, struct stat *stat_buf, struct predicat boolean pred_and PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_anewer PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_atime PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); -boolean pred_close PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); +boolean pred_closeparen PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_cmin PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_cnewer PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_comma PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); @@ -462,7 +462,7 @@ boolean pred_nogroup PARAMS((char *pathname, struct stat *stat_buf, struct predi boolean pred_nouser PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_ok PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_okdir PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); -boolean pred_open PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); +boolean pred_openparen PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_or PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_path PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_perm PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); diff --git a/find/find.c b/find/find.c index 63032d8..1419197 100644 --- a/find/find.c +++ b/find/find.c @@ -527,7 +527,7 @@ main (int argc, char **argv) assert(entry_close != NULL); assert(entry_print != NULL); - parse_open (entry_open, argv, &argc); + parse_openparen (entry_open, argv, &argc); parse_begin_user_args(argv, argc, last_pred, predicates); pred_sanity_check(last_pred); @@ -583,7 +583,7 @@ main (int argc, char **argv) else { /* `( user-supplied-expression ) -print'. */ - parse_close (entry_close, argv, &argc); + parse_closeparen (entry_close, argv, &argc); pred_sanity_check(last_pred); parse_print (entry_print, argv, &argc); pred_sanity_check(last_pred); diff --git a/find/parser.c b/find/parser.c index d8962d5..a3a3f7a 100644 --- a/find/parser.c +++ b/find/parser.c @@ -151,8 +151,8 @@ static boolean parse_quit PARAMS((const struct parser_table*, char *arg boolean parse_print PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); -boolean parse_open PARAMS((const struct parser_table* entry, char *argv[], int *arg_ptr)); -boolean parse_close PARAMS((const struct parser_table* entry, char *argv[], int *arg_ptr)); +boolean parse_openparen PARAMS((const struct parser_table* entry, char *argv[], int *arg_ptr)); +boolean parse_closeparen PARAMS((const struct parser_table* entry, char *argv[], int *arg_ptr)); @@ -206,8 +206,8 @@ static struct parser_table const parse_table[] = { PARSE_PUNCTUATION("!", negate), PARSE_PUNCTUATION("not", negate), /* GNU */ - PARSE_PUNCTUATION("(", open), - PARSE_PUNCTUATION(")", close), + PARSE_PUNCTUATION("(", openparen), + PARSE_PUNCTUATION(")", closeparen), PARSE_PUNCTUATION(",", comma), /* GNU */ PARSE_PUNCTUATION("a", and), PARSE_TEST ("amin", amin), /* GNU */ @@ -474,7 +474,7 @@ parse_atime (const struct parser_table* entry, char **argv, int *arg_ptr) } boolean -parse_close (const struct parser_table* entry, char **argv, int *arg_ptr) +parse_closeparen (const struct parser_table* entry, char **argv, int *arg_ptr) { struct predicate *our_pred; @@ -482,9 +482,9 @@ parse_close (const struct parser_table* entry, char **argv, int *arg_ptr) (void) arg_ptr; our_pred = get_new_pred (entry); - our_pred->pred_func = pred_close; + our_pred->pred_func = pred_closeparen; #ifdef DEBUG - our_pred->p_name = find_pred_name (pred_close); + our_pred->p_name = find_pred_name (pred_closeparen); #endif /* DEBUG */ our_pred->p_type = CLOSE_PAREN; our_pred->p_prec = NO_PREC; @@ -1208,7 +1208,7 @@ parse_okdir (const struct parser_table* entry, char **argv, int *arg_ptr) } boolean -parse_open (const struct parser_table* entry, char **argv, int *arg_ptr) +parse_openparen (const struct parser_table* entry, char **argv, int *arg_ptr) { struct predicate *our_pred; @@ -1216,9 +1216,9 @@ parse_open (const struct parser_table* entry, char **argv, int *arg_ptr) (void) arg_ptr; our_pred = get_new_pred_chk_op (entry); - our_pred->pred_func = pred_open; + our_pred->pred_func = pred_openparen; #ifdef DEBUG - our_pred->p_name = find_pred_name (pred_open); + our_pred->p_name = find_pred_name (pred_openparen); #endif /* DEBUG */ our_pred->p_type = OPEN_PAREN; our_pred->p_prec = NO_PREC; diff --git a/find/pred.c b/find/pred.c index 3e5ae37..14f9334 100644 --- a/find/pred.c +++ b/find/pred.c @@ -167,7 +167,7 @@ struct pred_assoc pred_table[] = {pred_and, "and "}, {pred_anewer, "anewer "}, {pred_atime, "atime "}, - {pred_close, ") "}, + {pred_closeparen, ") "}, {pred_amin, "cmin "}, {pred_cnewer, "cnewer "}, {pred_comma, ", "}, @@ -199,7 +199,7 @@ struct pred_assoc pred_table[] = {pred_nouser, "nouser "}, {pred_ok, "ok "}, {pred_okdir, "okdir "}, - {pred_open, "( "}, + {pred_openparen, "( "}, {pred_or, "or "}, {pred_path, "path "}, {pred_perm, "perm "}, @@ -334,7 +334,7 @@ pred_atime (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) } boolean -pred_close (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) +pred_closeparen (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { (void) &pathname; (void) &stat_buf; @@ -1187,7 +1187,7 @@ pred_okdir (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) } boolean -pred_open (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) +pred_openparen (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { (void) pathname; (void) stat_buf; diff --git a/po/be.po b/po/be.po index 49ee9ca..11a06db 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2003-11-04 05:21+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -390,7 +390,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "немагчыма нарадзіць працэс" @@ -448,7 +448,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Выкарыстаньне: %s most_common_bigrams < list > coded_list\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -553,104 +553,137 @@ msgstr "GNU locate вэрсыі %s\n" msgid "argument to --limit" msgstr "сьпіс довадаў занадта доўгі" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "асяродзьдзе занадта вялікае для exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs вэрсыі %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "двайныя" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "адзінарныя" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "сьпіс довадаў занадта доўгі" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: спынена сыгналам %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: пярэрвана сыгналам %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: нерэчаіснае значэньне для выбара -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: значэньне для выбара -%c мусіць быць >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: значэньне для выбара -%c мусіць быць < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ca.po b/po/ca.po index 5682fd6..3c44aa6 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-01 17:33+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -435,7 +435,7 @@ msgstr "Només es suporta una instància de {} amb -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ?" -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "no es pot fer «fork»" @@ -499,7 +499,7 @@ msgstr "" "Forma d'ús: %s [--version | --help]\n" " %s biagrames_més_comuns < llista-fitxers > base-de-dades-locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -619,47 +619,80 @@ msgstr "GNU locate versió %s\n" msgid "argument to --limit" msgstr "argument per a --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "l'entorn és massa gran per a l'execució" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versió %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "No s'ha pogut obrir el fitxer d'entrada «%s»" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "S'està reduint arg_max (%ld) a arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Les vostres variables d'entorn utilitzen %ld octets\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" "límits inferior i superior POSIX per a la mida dels arguments: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "La mida màxima de l'ordre que podem utilitzar: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "La mida de la memòria intermèdia que s'està utilitzant: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -668,58 +701,58 @@ msgstr "" "s'ha trobat una cometa %s no emparellada. Per defecte, les cometes són " "especials per a xargs a no ser que s'utilitze l'opció -O" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "doble" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simple" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "línia d'arguments massa llarga" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "error a l'esperar al procés fill" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: ha acabat amb estat 255; avortant" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: interromput pel senyal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminat pel senyal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: número no vàlid per a l'opció -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: el valor per a l'opció -%c ha de ser >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: el valor per a l'opció -%c ha de ser < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/da.po b/po/da.po index badc9a9..fcb74bb 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-01 18:25+0200\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -432,7 +432,7 @@ msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " # der er plads nok at tage af -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "kan ikke fraspalte en ny proces" @@ -492,7 +492,7 @@ msgstr "" "Brug: %s [--version | --help]\n" "eller %s mest-brugte-bigrammer < liste > locate-database\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -611,46 +611,79 @@ msgstr "GNU locate version %s\n" msgid "argument to --limit" msgstr "parameter til --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "miljø for stort til at eksekvere" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs version %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Kan ikke åbne inddatafilen '%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Reducerer arg_max (%ld) til arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Din miljøvariabel optager %ld byte\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "POSIX nedre og øvre grænser på parameterlængde: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Maksimal længde af kommando der faktisk kunne bruges: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Størrelsen af det kommandomellemlager som faktisk bruges: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -659,59 +692,59 @@ msgstr "" "uafbalanceret citationstegn %s; som standard er citationstegn specielle for " "xargs medmindre du bruger tilvalget -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dobbelt" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "enkelt" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "parameterlinje for lang" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "fejl i forbindelse med at vente på afkomproces" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: stoppede med status 255; afbryder" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: standset af signal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: afsluttet af signal %d" # omvendt ordstilling for at undgå sammensætningsproblem -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: ugyldig værdi til tilvalget -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: værdien for tilvalget -%c skal være >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: værdien for tilvalget -%c skal være < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/de.po b/po/de.po index e442919..30953dc 100644 --- a/po/de.po +++ b/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2003-11-07 21:54+0100\n" "Last-Translator: Nils Naumann \n" "Language-Team: German \n" @@ -390,7 +390,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "Kann keinen neuen Prozeß starten." @@ -452,7 +452,7 @@ msgstr "" "Aufruf: %s häufigste_gemeinsame_Buchstabenpaare < Liste > " "komprimierte_Liste\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -558,104 +558,137 @@ msgstr "GNU locate Version %s\n" msgid "argument to --limit" msgstr "Die Argumentzeile ist zu lang." -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "Der Umgebungsspeicher ist für \"exec\" nicht ausreichend." -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs Version %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "doppelte" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "einfache" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "Die Argumentzeile ist zu lang." -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "Fehler beim Warten auf das Ende des Kindsprozesses." -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "Prozeß %s mit Rückgabewert 255 beendet. Abbruch!" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "Prozeß %s wurde durch das Signal %d angehalten." -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "Prozeß %s wurde durch das Signal %d abgebrochen." -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: Ungültiger Wert für die \"-%c\" Option.\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: Der Wert für die \"-%c\" Option muß größer als %ld sein.\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: Der Wert für die \"-%c\" Option muß kleiner als %ld sein.\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/el.po b/po/el.po index 29d2f63..d9f180b 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils-4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-01-02 13:54+0200\n" "Last-Translator: Lefteris Dimitroulakis \n" "Language-Team: Greek \n" @@ -422,7 +422,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "Δεν μπορώ να κλωνοποιήσω" @@ -484,7 +484,7 @@ msgstr "" "Χρήση: %s [--version | --help]\n" "ή %s most_common_bigrams < file-list > locate-database\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -590,46 +590,79 @@ msgstr "GNU locate έκδοση %s\n" msgid "argument to --limit" msgstr "όρισμα επιλογής --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "το περιβάλλον είναι πολύ μεγάλο γιά την εκτέλεση" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs έκδοση %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Μείωση του arg_max (%ld) σε arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Οι μεταβλητές περιβάλλοντος καταλαμβάνουν %ld bytes\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Άνω και κάτω όριο κατά POSIX για μήκος ορίσματος: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Μέγιστο μήκος εντολής που θα μπορούσαμε να χρησιμοποιήσουμε: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Μέγεθος του buffer εντολών που χρησιμοποιούμε: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -638,58 +671,58 @@ msgstr "" "unmatched %s quote; εκ προεπιλογής τα εισαγωγικά έχουν ειδική σημασία για το " "xargs εκτός κι αν χρησιμοπείτε την επιλογή -0." -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "διπλά" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "μονά" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "γραμμή ορισμάτων πολύ μεγάλη" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "σφάλμα αναμένοντας τη θυγατρική διεργασία" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: τερματίστηκε με ένδειξη 255, απότομο σταμάτημα" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: σταμάτησε από το σήμα %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: τερματίστηκε από το σήμα %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: άκυρος αριθμός γιά την επιλογή -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s:η τιμή για την επιλογή -%c πρέπει να είναι >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: η τιμή για την επιλογή -%c πρέπει να είναι < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/eo.po b/po/eo.po index 30027a8..4fd6dea 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-01-04 15:27-0500\n" "Last-Translator: D. Dale Gulledge \n" "Language-Team: Esperanto \n" @@ -392,7 +392,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ne povas forki" @@ -452,7 +452,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Uzado: %s plej_oftaj_dusigna¼oj < listo > kodita_listo\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -557,104 +557,137 @@ msgstr "GNU locate versio %s\n" msgid "argument to --limit" msgstr "argumentlinio tro longa" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "medio estas tro granda por exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versio %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "duobla" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "unuobla" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argumentlinio tro longa" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "eraro atendante ida proceso" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: finis kun stato 255; æesanta" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: haltigita per signalo %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: æesigita per signalo %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: malvalida nombro por -%c opcio\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: valoro de -%c opcio devas esti >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: valoro de -%c opcio devas esti < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/es.po b/po/es.po index 3f851bd..79401a8 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-12-23 16:57+0100\n" "Last-Translator: Santiago Vila Doncel \n" "Language-Team: Spanish \n" @@ -541,7 +541,7 @@ msgstr "< %s ... %s > ? " # Al fin y al cabo es la coletilla que tengo yo al final de mi # comentario, ¿no? Me parece lo mismo, má o meno, pero por no meternos # en darle caña y acabar ya esto de una vez :) ... -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "falló la llamada al sistema `fork()'" @@ -740,7 +740,7 @@ msgstr "" "o bien %s bigramas_más_comunes < lista-de-ficheros > base-de-datos-de-" "locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -846,47 +846,80 @@ msgstr "GNU locate versi msgid "argument to --limit" msgstr "argumento para --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "el entorno es demasiado grande para exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versión %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Se reduce arg_max (%ld) a arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Las variables de entorno ocupan %ld bytes\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" "Límites POSIX inferior y superior sobre la longitud del argumento: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Máxima longitud de orden que se podría usar realmente: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Tamaño del búfer de órdenes que se está usando realmente: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -896,19 +929,19 @@ msgstr "" "xargs\n" "a menos que utilice la opción -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "doble" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simple" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "línea de argumentos demasiado larga" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "error esperando al proceso hijo" @@ -929,22 +962,22 @@ msgstr "error esperando al proceso hijo" # Me quedo con la duda de cómo se llama eso en español. # Esperemos que lo vea otro. sv # -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: acabó con status 255; abortando" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: interrumpido por la señal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminado por la señal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: número inválido para la opción -%c\n" @@ -953,22 +986,22 @@ msgstr "%s: n # queda mucho mejor. Si a alguien no le gusta, que me lo diga ;). IPG # Me parece acertado y lo digo :-) sv # falen ... :) ... ipg -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: el valor para la opción -%c debería ser mayor o igual que %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: el valor para la opción -%c debería ser menor que %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/et.po b/po/et.po index d3efd85..f506ead 100644 --- a/po/et.po +++ b/po/et.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-02 08:56+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -425,7 +425,7 @@ msgstr "Predikaadiga -exec%s ... + on lubatud kasutada ainult msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "fork ebaõnnestus" @@ -486,7 +486,7 @@ msgstr "" "Kasuta: %s [--version | --help]\n" "või %s enamus_bigram_koode < faili-loend > locate-andmebaas\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -603,46 +603,79 @@ msgstr "GNU locate versioon %s\n" msgid "argument to --limit" msgstr "võtme --limit argument" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "exec funktsioonile antud keskkond on liiga suur" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versioon %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Ei õnnestu avada sisendfaili `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Kahandan arg_max (%ld) väärtusele arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Teie keskkonnamuutujad kasutavad %ld baiti\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "POSIX alumine ja ülemine piirang argumendi pikkusele on: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Tegelikult kasutatava käsu maksimum pikkus on: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Tegelikult kasutatava käsupuhvri suurus on: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -651,58 +684,58 @@ msgstr "" "puudub kvoot %s; vaikimisi kasutatab xargs omi kvoote, kui just pole " "kasutatud võtit -O" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dubleeritud" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "ühekordne" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argumendi rida on liiga pikk" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "viga alamprotsessi ootamisel" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: lõpetas olekuga 255; katkestan" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: peatatud signaaliga %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: katkestatud signaaliga %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: vigane number võtmele -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: võtme -%c väärtus peab olema suurem või võrdne kui %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: võtme -%c väärtus peab olema väiksem kui %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/fi.po b/po/fi.po index c26458a..14d13bf 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-07-10 09:43+03:00\n" "Last-Translator: Matti Koskimies \n" "Language-Team: Finnish \n" @@ -390,7 +390,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "haarautuminen ei onnistu" @@ -450,7 +450,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Käyttö: %s yleisimmät_bigrammit < lista > koodattu_lista\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -555,104 +555,137 @@ msgstr "GNU locate versio %s\n" msgid "argument to --limit" msgstr "liian pitkä parametririvi" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "ympäristö on liian iso \"exec\":ille" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versio %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "kaksinkertainen" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "yksinkertainen" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "liian pitkä parametririvi" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "lapsiprosessin oduksenaikainen virhe" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: poistumisstatus 255; keskeytetään" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: pysäytetty signaalilla %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: keskeytetty signaalilla %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: epäkelpo numero -%c -valitsimelle\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: -%c -valitsimelle annetun arvon täytyy olla >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: -%c -valitsimelle annetun arvon täytyy olla < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/findutils.pot b/po/findutils.pot index 4728a39..526b202 100644 --- a/po/findutils.pot +++ b/po/findutils.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -371,7 +371,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "" @@ -428,7 +428,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -529,104 +529,137 @@ msgstr "" msgid "argument to --limit" msgstr "" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/fr.po b/po/fr.po index a67e785..5a5b1c0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-10 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -439,7 +439,7 @@ msgstr "Une seule instance de {} est support msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "Ne peut faire un clonage (fork)." @@ -501,7 +501,7 @@ msgstr "" "ou %s bigrammes_les_plus_communs < liste_de_fichiers > base-de-données-" "locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -620,48 +620,81 @@ msgstr "GNU locate version %s\n" msgid "argument to --limit" msgstr "argument à --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "L'environnement est trop large pour l'exécution." -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs version %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Ne peut ouvrir le fichier d'entrée `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Réduction de arg_max (%ld) à arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Vos variables d'environnement prennent %ld octets\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" "Les limites inférieures et supérieures de POSIX sur la longueure de " "l'argument: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "La longueur maximale de la commande qui pourrait être utilisée: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Taille du tampon de la commande qui est actuellement utilisé: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -670,58 +703,58 @@ msgstr "" "guillemets %s non pairés; par défaut les guillemets sont particuliers à " "xargs à moins d'utiliser l'option -O" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "double" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simple" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "La ligne de paramètres est trop longue." -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "Erreur lors de l'attente de la fin d'exécution du processus enfant." -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: a terminé son exécution avec le statut 255; arrêt abrupt." -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: stoppé par le signal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s a terminé son exécution par le signal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: l'option -%c contient un nombre invalide.\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: la valeur de l'option -%c devrait être >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: la valeur de l'option -%c devrait être < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ga.po b/po/ga.po index 248f1f0..1a85150 100644 --- a/po/ga.po +++ b/po/ga.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-01 05:47-0500\n" "Last-Translator: Kevin Patrick Scannell \n" "Language-Team: Irish \n" @@ -439,7 +439,7 @@ msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " # "fork" not in standard refs/corpus. Maybe want a "gabhl*" word instead? -KPS -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ní féidir forc a dhéanamh" @@ -498,7 +498,7 @@ msgstr "" "Úsáid: %s [--version | --help]\n" "nó %s bigramanna_níos_coitianta < liosta > locate-bunachar-sonraí\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -617,46 +617,79 @@ msgstr "GNU locate, leagan %s\n" msgid "argument to --limit" msgstr "argóint i ndiaidh --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "Tá an timpeallacht rómhór á rith" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs, leagan %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Ní féidir an t-inchomhad `%s' a oscailt" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Ag laghdú arg_max (%ld) go arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Líonann do chuid athróga timpeallachta %ld beart\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Íosluach agus uasluach d'fhad na hargóintí de réir POSIX: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Uasfhad d'ordú gur féidir linn a úsáid: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Méid an mhaoláin ordaithe atá in úsáid i ndáiríre: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -665,60 +698,60 @@ msgstr "" "comhartha athfhriotail %s corr; caitheann xargs le comharthaí athfhriotail " "go speisialta mura bhfuil an rogha -O tugtha agat" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dúbailte" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "singil" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "tá líne na n-argóintí rófhada" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "earráid ag fanacht le próiseas sleachta" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: stádas scortha 255; á thobscor" # does "stopped" have the implication of "temporarily"? # might then want to distinguish from following msgid... --KPS -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: stopadh leis an chomhartha %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: stopadh leis an chomhartha %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: uimhir neamhbhailí i ndiaidh na rogha -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: ní foláir an luach i ndiaidh na rogha -%c a bheith >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: ní foláir an luach i ndiaidh na rogha -%c a bheith < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/gl.po b/po/gl.po index b76aa41..83af9ca 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.5\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2000-05-30 10:11+0200\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -397,7 +397,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "non se pode facer fork" @@ -457,7 +457,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Uso: %s bigramas_máis_comúns < lista > lista_codificada\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -559,104 +559,137 @@ msgstr "GNU locate versi msgid "argument to --limit" msgstr "liña de argumentos longa de máis" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "o ambiente é grande de máis para exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versión %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dobre" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simple" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "liña de argumentos longa de máis" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "erro agardando polo proceso fillo" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: saíu con estado 255; abortando" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: parado por sinal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminado por sinal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: número para a opción -%c non válido\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: o valor para a opción -%c ten que ser >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: o valor para a opción -%c ten que ser < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/hr.po b/po/hr.po index 5c80097..c8f0817 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-04-22 02:04+02:00\n" "Last-Translator: Hrvoje Niksic \n" "Language-Team: Croatian \n" @@ -391,7 +391,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ne mogu se forkati" @@ -451,7 +451,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Uporaba: %s most_common_bigrams < lista > kodirana_lista\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -556,104 +556,137 @@ msgstr "GNU locate verzija %s\n" msgid "argument to --limit" msgstr "linija s argumentima predugaèka" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "okoli¹ je prevelik za exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs verzija %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dvostruki" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "jednostruki" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "linija s argumentima predugaèka" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "gre¹ka za vrijeme èekanja na djeèji proces" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: iza¹ao sa statusom 255; poni¹tavam" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: zaustavljen signalom %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminiran signalom %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: neispravan broj za opciju -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: vrijednost opcije -%c mora biti >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: vrijednost opcije -%c mora biti < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/hu.po b/po/hu.po index dd23336..5dc1b8f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-05-07 15:06+0200\n" "Last-Translator: Emese Kovács \n" "Language-Team: Hungarian \n" @@ -400,7 +400,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "fork() rendszerhívás sikertelen" @@ -460,7 +460,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Használat: %s most_common_bigrams < lista > kódolt_lista\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -565,104 +565,137 @@ msgstr "GNU locate %s verzi msgid "argument to --limit" msgstr "az argumentumsor túl hosszú" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "a környezet túl nagy exec-hez" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs %s verzió\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "kettõs" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "egyszeres" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "az argumentumsor túl hosszú" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "hiba a gyermekfolyamatra való várakozás közben" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: kilépési értéke 255; megszakítás" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: %d jelzéssel leállítva (stopped)" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: %d jelzéssel leállítva (terminated)" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: érvénytelen szám a -%c kapcsolónál\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: a -%c kapcsoló értéke >= %ld kell legyen\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: a -%c kapcsoló értéke < %ld kell legyen\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/id.po b/po/id.po index 24faf45..4e81e4d 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-03-21 00:24GMT+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -388,7 +388,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "tidak dapat mem-fork" @@ -448,7 +448,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Pemakaian: %s most_common_bigrams < list > coded_list\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -553,104 +553,137 @@ msgstr "GNU locate versi %s\n" msgid "argument to --limit" msgstr "argumen baris terlalu panjang" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "environment terlalu besar untuk exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versi %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "ganda" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "tunggal" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argumen baris terlalu panjang" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "kesalahan waiting untuk proses anak" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: keluar dengan status 255; batal" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: dihentikan oleh sinyal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: di-terminate oleh sinyal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: kesalahan bilangan untuk pilihan -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: nilai untuk pilihan -%c harus >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: nilai untuk pilihan -%c harus < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/it.po b/po/it.po index ff61aab..61347c0 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.10\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-12-23 12:44+0100\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -425,7 +425,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "impossibile fare fork" @@ -487,7 +487,7 @@ msgstr "" "Uso: %s [--version | --help]\n" " %s bigrammi_più_comuni < lista-di-file > database-di-locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -593,47 +593,80 @@ msgstr "GNU locate versione %s\n" msgid "argument to --limit" msgstr "argomento di --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "l'ambiente è troppo grande per fare exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versione %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Impossibile aprire il file di input `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "arg_max (%ld) ridotto a arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Il tuo ambiente richiede fino a %ld byte\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" "Limiti di POSIX massimo e minimo della lunghezza degli argomenti: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Lunghezza massima di un comando effettivamente usabile: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Lunghezza del buffer del comando che effettivamente useremo: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -642,58 +675,58 @@ msgstr "" "carattere %s non accoppiato; le virgolette hanno un significato speciale per " "xargs, a meno che si usi l'opzione -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "doppie" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "singole" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "la riga dell'argomento è troppo lunga" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "errore aspettando il processo figlio" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: uscito con stato 255; termina" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: fermato dal segnale %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminato dal segnale %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: il numero per l'opzione -%c non è valido\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: il valore per l'opzione -%c dovrebbe essere >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: il valore per l'opzione -%c dovrebbe essere < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ja.po b/po/ja.po index 5614792..bc60288 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2001-11-05 00:45+0900\n" "Last-Translator: GOTO Masanori \n" "Language-Team: Japanese \n" @@ -389,7 +389,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "fork ¤Ç¤­¤Þ¤»¤ó" @@ -449,7 +449,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "»ÈÍÑË¡: %s most_common_bigrams < list > coded_list\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -554,104 +554,137 @@ msgstr "GNU locate version %s\n" msgid "argument to --limit" msgstr "°ú¿ô¹Ô¤¬Ä¹¤¹¤®¤Þ¤¹" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "¼Â¹Ô¤¹¤ë¤Ë¤Ï´Ä¶­¤¬Â礭¤¹¤®¤Þ¤¹" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs version %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "¥À¥Ö¥ë" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "¥·¥ó¥°¥ë" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "°ú¿ô¹Ô¤¬Ä¹¤¹¤®¤Þ¤¹" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "»Ò¥×¥í¥»¥¹¤Ø¤ÎÂÔ¤Á¤Ç¥¨¥é¡¼" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: ¥¹¥Æ¡¼¥¿¥¹255¤Ç½ªÎ»; ÃæÃÇ" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: ¥·¥°¥Ê¥ë %d ¤Ë¤è¤Ã¤ÆÄä»ß¤·¤Þ¤·¤¿" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: ¥·¥°¥Ê¥ë %d ¤Ë¤è¤Ã¤Æ½ªÎ»¤·¤Þ¤·¤¿" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: -%c ¥ª¥×¥·¥ç¥ó¤ËÂФ¹¤ëÉÔÀµ¤ÊÈÖ¹æ\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: -%c ¥ª¥×¥·¥ç¥ó¤ËÂФ¹¤ëÃÍ¤Ï >= %ld ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: -%c ¥ª¥×¥·¥ç¥ó¤ËÂФ¹¤ëÃÍ¤Ï < %ld ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ko.po b/po/ko.po index 469090f..93edac7 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 1996-10-07 22:13+0900\n" "Last-Translator: Bang Jun-Young \n" "Language-Team: Korean \n" @@ -382,7 +382,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "" @@ -442,7 +442,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "»ç¿ë¹ý: %s most_common_bigrams < list > coded_list\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -544,104 +544,137 @@ msgstr "GNU locate msgid "argument to --limit" msgstr "Àμö ÇàÀÌ ³Ê¹« ±é´Ï´Ù" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "ȯ°æÀÌ ½ÇÇà(exec)Çϱ⿡ ³Ê¹« Å®´Ï´Ù" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs ¹öÀü %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "µÎ¹è" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "´ÜÀÏ" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "Àμö ÇàÀÌ ³Ê¹« ±é´Ï´Ù" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "ÀÚ½Ä ÇÁ·Î¼¼½º¸¦ ±â´Ù¸®´Â µµÁß ¿À·ù ¹ß»ý" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: »óÅ 255À» °¡Áö°í Á¾·áµÊ; Áß´ÜÇÔ" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: ½ÅÈ£ %d¿¡ ÀÇÇØ ÁßÁöµÊ" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: ½ÅÈ£ %d¿¡ ÀÇÇØ Á¾·áµÊ" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: -%c ¿É¼Ç¿¡ ºÎÀûÀýÇÑ ¼ýÀÚ°¡ ÁÖ¾îÁü\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: -%c ¿É¼ÇÀÇ °ªÀº %ldº¸´Ù Å©°Å³ª °°¾Æ¾ß ÇÕ´Ï´Ù\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: -%c ¿É¼ÇÀÇ °ªÀº %ldº¸´Ù ÀÛ¾Æ¾ß ÇÕ´Ï´Ù\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/lg.po b/po/lg.po index 6ad196a..5347cff 100644 --- a/po/lg.po +++ b/po/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-04-02 18:57GMT\n" "Last-Translator: K.Birabwa \n" "Language-Team: Luganda \n" @@ -401,7 +401,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ekilagiro ekya sisitemu ekya`fork()' kigaanye" @@ -463,7 +463,7 @@ msgstr "" "Nkozesa eri: %s bigulamu_ezisinga_okusangibwa < lukalala > " "lukalala_olutegeke\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -569,104 +569,137 @@ msgstr "GNU locate ey'omutindo %s\n" msgid "argument to --limit" msgstr "agumenti eyitiridde obuwanvu" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "exec esanze nga enviromenti esukkiridde obunene" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs ey'omutindo %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "nakabirye" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "sekinnomu" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "agumenti eyitiridde obuwanvu" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "wazzewo kiremya nga nnindirira omulimu oguzaalukusiddwa mu gunnaagwo" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: omulimu gumaliddwa nga gulina embeera eya 255, mbivuddeko" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: omulimu guyimiriziddwa ekiragiro %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: omulimu gukomekkerezedwa ekiragiro %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: omuwendo guno tegukola ku kawayiro -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: akawayiro -%c kateekwa okubeera nga >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: akawayiro -%c kateekwa okubeera nga < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ms.po b/po/ms.po index 2f6f962..6879b1d 100644 --- a/po/ms.po +++ b/po/ms.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils-4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2003-01-19 14:42+0800\n" "Last-Translator: Nik Ramadhan Nik Idris \n" "Language-Team: Malay \n" @@ -369,7 +369,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "" @@ -426,7 +426,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -531,104 +531,137 @@ msgstr "versi locate GNU %s\n" msgid "argument to --limit" msgstr "baris hujah terlalu panjang" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "berganda" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "tunggal" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "baris hujah terlalu panjang" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "ralat menunggu untuk proses anak" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: keluar dengan status; abaikan" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: di berhentikan oleh signal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: diputuskan oleh signal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: nilai untuk pilihan -%c mesti >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s:nilai untuk pilihan -%c mesti < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/nl.po b/po/nl.po index c12c615..15b320e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-01 21:37+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -431,7 +431,7 @@ msgstr "Bij '-exec%s ... +' mag {} slechts één keer voorkomen." msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "kan geen nieuw proces starten" @@ -490,7 +490,7 @@ msgstr "" "Gebruik: %s [ --version | --help ]\n" " of: %s meest_gebruikte_bigrams locate-gegevensbank\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -609,46 +609,79 @@ msgstr "GNU locate versie %s\n" msgid "argument to --limit" msgstr "argument van --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "omgeving is te groot voor exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versie %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Kan invoerbestand '%s' niet openen" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "arg_max (%ld) teruggebracht tot arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "De omgevingsvariabelen nemen %ld bytes in beslag\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "POSIX minimum en maximum grenzen aan argumentlengte: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Maximum lengte van een verwerkbaar commando: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Grootte van het werkelijk gebruikte commandobuffer: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -657,58 +690,58 @@ msgstr "" "ongepaard %s aanhalingsteken; aanhalingstekens worden door xargs speciaal " "behandeld tenzij u de optie -0 gebruikt" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dubbel" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "enkel" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argumentregel is te lang" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "fout tijdens wachten op kindproces" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: eindigde met afsluitwaarde 255; xargs breekt af" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: gestopt door signaal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: afgebroken door signaal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: ongeldig nummer bij optie -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: waarde bij optie -%c moet >= %ld zijn\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: waarde bij optie -%c moet < %ld zijn\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/pl.po b/po/pl.po index fb4e343..49f8288 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.22\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-06-18 23:02+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -425,7 +425,7 @@ msgstr "Obs msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "nie mo¿na wykonaæ fork" @@ -484,7 +484,7 @@ msgstr "" "Sk³adnia: %s [--version | --help]\n" "lub %s najpopularniejsze_bigramy < lista-plików > baza-danych-locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -602,46 +602,79 @@ msgstr "GNU locate wersja %s\n" msgid "argument to --limit" msgstr "argument dla --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "¶rodowisko jest zbyt du¿e, aby wykonaæ exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs wersja %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Nie mo¿na otworzyæ pliku wej¶ciowego `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Zmniejszanie arg_max (%ld) do arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Zmienne ¶rodowiskowe zajmuj± %ld bajtów\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "POSIX-owy dolny i górny limit na d³ugo¶æ argumentów: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Maksymalna d³ugo¶æ polecenia, które mo¿na u¿yæ: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Rozmiar u¿ywanego bufora polecenia: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -650,58 +683,58 @@ msgstr "" "niedopasowany %s znak cytowania; domy¶lnie znaki cytowania s± specjalnymi " "dla xargs o ile nie u¿yto opcji -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "podwójny" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "pojedynczy" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "za d³uga linia argumentów" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "b³±d podczas oczekiwania na proces potomny" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: wyszed³ ze stanem 255; zaniechanie" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: zatrzymany sygna³em %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: zakoñczony sygna³em %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: b³êdna liczba dla opcji -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: warto¶æ dla opcji -%c powinna byæ >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: warto¶æ dla opcji -%c powinna byæ < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/pt.po b/po/pt.po index e448660..69c5dce 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.18\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-03-06 00:26+0000\n" "Last-Translator: Helder Correia \n" "Language-Team: Portuguese \n" @@ -421,7 +421,7 @@ msgstr "Apenas uma instância de {} é suportada com -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "não é possível bifurcar (fork)" @@ -480,7 +480,7 @@ msgstr "" "Uso: %s [--version | --help]\n" "ou %s bigramas_mais_comuns < ficheiro-lista > base-de-dados-locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -595,47 +595,80 @@ msgstr "GNU locate versão %s\n" msgid "argument to --limit" msgstr "argumento para --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "o ambiente é demasiado grande para o exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versão %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Não é possível abrir o ficheiro de entrada '%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "a reduzir arg_max (%ld) para arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "As variáveis de ambiente ocupam %ld bytes\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" "Limites inferior e superior POSIX do tamanho dos argumentos: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "tamanho máximo do comando possível de usar: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "tamanho da memória de comandos actual: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -644,58 +677,58 @@ msgstr "" "citação %s não correspondida; por omissão, as citações são especiais para lo " "xargs, a não ser que use a opção -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "duplo" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simples" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "linha de argumentos demasiado longa" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "erro ao esperar pelo processo filho" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: saída com estado 255; a abortar" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: parado pelo sinal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminado pelo sinal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: número inválido para a opção -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: valor para a opção -%c deveria ser >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: vaor para a opção -%c deveria ser < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index af03775..c83c72e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-02-08 18:00-0200\n" "Last-Translator: Alexandre Folle de Menezes \n" "Language-Team: Brazilian Portuguese \n" @@ -395,7 +395,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "não consigo duplicar o processo (fork())" @@ -455,7 +455,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Uso: %s bigrams_mais_comuns < lista > lista_codificada\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -560,104 +560,137 @@ msgstr "GNU locate vers msgid "argument to --limit" msgstr "linha com argumentos muito longa" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "ambiente de execução é muito grande" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versão %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "duplo" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "simples" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "linha com argumentos muito longa" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "erro esperando por processo filho" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: saiu com status 255; abortando" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: desativado pelo sinal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminado pelo sinal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: número inválido para opção -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: valor para opção -%c deve ser >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: valor para opção -%c deve ser < que %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ro.po b/po/ro.po index 6dfb1f9..b0a8f24 100644 --- a/po/ro.po +++ b/po/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-01 12:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -434,7 +434,7 @@ msgstr "Numai o singur msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "nu pot executa fork" @@ -494,7 +494,7 @@ msgstr "" "Folosire: %s [--version | --help]\n" "sau %s cele_mai_comune_bigrame < listã-fisiere > baza-de-date-locate\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -612,46 +612,79 @@ msgstr "GNU locate versiunea %s\n" msgid "argument to --limit" msgstr "argument pentru --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "mediul (environment) este prea larg pentru exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs versiunea %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Nu pot deschide fiºierul de intrare `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Reducem arg_max (%ld) la arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Variabile dvs. de mediu ocupã %ld octeþi\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "limitele POSIX min ºi max pentru lungimea unui argument: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Lungimea mazimã a unei comenzi pe care o putem în fapt folosi: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Dimensiune unui bufer pe care o folosim de fapt: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -660,58 +693,58 @@ msgstr "" "ghilimele %s fãrã pereche; în mod implicit ghilimelele sunt speciale pentru " "xargs, în afarã de cazul în care folosiþi opþiunea -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dublu" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "singur" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "linie argumente prea lungã" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "eroare aºteptând pentru procese copil" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: a terminat cu starea 255; renunþ" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: oprit de semnalul %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: terminat de semnalul %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: numãr invalid pentru opþiunea -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: valoarea pentru opþiunea -%c ar trebui sã fie >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: valoarea pentru opþiunea -%c ar trebui sã fie < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/ru.po b/po/ru.po index 8551d63..2541fba 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-01-07 18:43GMT+06\n" "Last-Translator: Denis Perchine \n" "Language-Team: Russian \n" @@ -390,7 +390,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ ÐÒÏÃÅÓÓ" @@ -451,7 +451,7 @@ msgid "" msgstr "" "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s most_common_bigrams < ÓÐÉÓÏË > ÚÁÛÉÆÒÏ×ÁÎÎÙÊ_ÓÐÉÓÏË\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -556,104 +556,137 @@ msgstr "GNU locate msgid "argument to --limit" msgstr "ÓÔÒÏËÁ ÁÒÇÕÍÅÎÔÏ× ÓÌÉÛËÏÍ ×ÅÌÉËÁ" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "ÏËÒÕÖÅÎÉÅ ÓÌÉÛËÏÍ ×ÅÌÉËÏ ÄÌÑ ÉÓÐÏÌÎÅÎÉÑ" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs ×ÅÒÓÉÉ %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "Ä×ÏÊÎÁÑ" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "ÏÄÉÎÁÒÎÁÑ" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "ÓÔÒÏËÁ ÁÒÇÕÍÅÎÔÏ× ÓÌÉÛËÏÍ ×ÅÌÉËÁ" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "ÏÛÉÂËÁ ÏÖÉÄÁÎÉÑ ÄÏÞÅÒÎÅÇÏ ÐÒÏÃÅÓÓÁ" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: ÚÁ×ÅÒÛÅÎ ÓÏ ÓÔÁÔÕÓÏÍ 255; ÐÒÅÒÙ×ÁÀÓØ" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: ÏÓÔÁÎÏ×ÌÅÎ ÐÏ ÓÉÇÎÁÌÕ %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: ÚÁ×ÅÒÛÅÎ ÐÏ ÓÉÇÎÁÌÕ %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÄÌÑ ÏÐÃÉÉ -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: ÚÎÁÞÅÎÉÅ ÄÌÑ ÏÐÃÉÉ -%c ÄÏÌÖÎÏ ÂÙÔØ >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: ÚÎÁÞÅÎÉÅ ÄÌÑ ÏÐÃÉÉ -%c ÄÏÌÖÎÏ ÂÙÔØ < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/rw.po b/po/rw.po index f6e9750..8df32da 100644 --- a/po/rw.po +++ b/po/rw.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -409,7 +409,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "<%s...%s>CYOSE" -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "" @@ -473,7 +473,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "Verisiyo Ifashayobora Cyangwa IDOSIYE Urutonde" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -578,47 +578,80 @@ msgstr "Verisiyo" msgid "argument to --limit" msgstr "Kuri" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 #, fuzzy msgid "environment is too large for exec" msgstr "ni Binini kugirango" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, fuzzy, c-format msgid "GNU xargs version %s\n" msgstr "Verisiyo" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, fuzzy, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Kuri" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, fuzzy, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Ibihinduka Hejuru" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, fuzzy, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Ntoya Na Nkuru Imbibi ku Uburebure" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, fuzzy, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Uburebure Bya Komandi: Twebwe Gukoresha" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, fuzzy, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Bya Komandi: Twebwe ikoresha" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, fuzzy, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -630,7 +663,7 @@ msgstr "" # officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Font.UnderLine..2.text # #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-# # officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Font.Strikeout..2.text -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 #, fuzzy msgid "double" msgstr "MAHARAKUBIRI" @@ -639,57 +672,57 @@ msgstr "MAHARAKUBIRI" # officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Font.UnderLine..1.text # #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-# # officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Font.Strikeout..1.text -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 #, fuzzy msgid "single" msgstr "UMWE" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 #, fuzzy msgid "argument line too long" msgstr "Umurongo" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 #, fuzzy msgid "error waiting for child process" msgstr "Ikosa Tegereza kugirango" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, fuzzy, c-format msgid "%s: exited with status 255; aborting" msgstr "%s:Na: Imimerere" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, fuzzy, c-format msgid "%s: stopped by signal %d" msgstr "%s:Kyahagariswe ku" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, fuzzy, c-format msgid "%s: terminated by signal %d" msgstr "%s:ku" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, fuzzy, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s:Sibyo Umubare kugirango" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s:Agaciro kugirango Ihitamo" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s:Agaciro kugirango Ihitamo" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/sk.po b/po/sk.po index 59531b6..bd76f2b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-02 05:56+0200\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" @@ -430,7 +430,7 @@ msgstr "Len jeden výskyt {} je podporovaný s -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "nemôžem vykonať fork" @@ -489,7 +489,7 @@ msgstr "" "Použitie: %s [--version | --help]\n" "alebo %s most_common_bigrams < zoznam-súborov > databáza-umiestnení\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -611,46 +611,79 @@ msgstr "GNU locale verzia %s\n" msgid "argument to --limit" msgstr "parameter pre --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "prostredie je príliš veľké na vykonanie" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs verzia %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Nepodarilo sa otvoriť vstupný súbor `%s'" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Zmenšenie arg_max (%ld) na arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Vaše premenné prostredia zaberajú %ld byjtov\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Dolné a horné POSIX limity pre dĺžku parametrov: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Maximálna dĺžka príkazu, ktorú môžeme momentálne používať: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Veľkosť vyrovnávacej pamäte príkazov, ktorú práve používame: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -659,58 +692,58 @@ msgstr "" "nezodpovedajúce úvodzovky %s; štandardne sú úvodzovky špeciálne pre xargs, " "pokiaľ nepoužijete voľbu -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dvojitý" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "jednoduchý" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "riadok s parametrom je príliš dlhý" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "chyba pri zápise do procesu potomka" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: ukončený so stavom 255; prerušujem" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: zastavený signálom %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: ukončený signálom %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: neplatné číslo pre voľbu -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: hodnota pre voľbu -%c by mala byť >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: hodnota pre voľbu -%c by mala byť < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/sl.po b/po/sl.po index 9248c65..73985ee 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,13 +1,13 @@ # -*- mode:po; coding:utf-8; -*- Slovenian messages for findutils. # Copyright (C) 1996 Free Software Foundation, Inc. # Primož Peterlin , 2000, 2001, 2005. -# $Id: sl.po,v 1.22 2005/09/03 11:17:18 jay Exp $ +# $Id: sl.po,v 1.23 2005/09/04 17:59:34 jay Exp $ # msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-24 11:05+0200\n" "Last-Translator: Primož Peterlin \n" "Language-Team: Slovenian \n" @@ -430,7 +430,7 @@ msgstr "Podprta je le enkratna navedba {} v kombinaciji z -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "vejitev ni mogoča" @@ -490,7 +490,7 @@ msgstr "" "Uporaba: %s [--version | --help]\n" "ali %s najpogostejši_bigrami < seznam > kodiran_seznam\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -608,46 +608,79 @@ msgstr "GNU locate, izdaja %s\n" msgid "argument to --limit" msgstr "argument za --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "okolje je preobsežno za klic exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs, izdaja %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Vhodne datoteke »%s« ni mogoče odpreti" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Zmanjšujemo arg_max (%ld) na vrednost arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Spremenljivke okolja zasedajo %ld bajtov\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Zgornja in spodnja meja POSIX za dolžino argumenta: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Največja dolžina ukaza, ki ga lahko uporabimo: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Velikost ukaznega medpomnilnika, ki ga dejansko uporabljamo: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -656,58 +689,58 @@ msgstr "" "%s narekovaj brez para; privzeto so narekovaji za xargs posebni, razen če " "vključite izbiro -O" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dvojni" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "enojni" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "vrstica z argumenti je predolga" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "napaka pri čakanju na proces naslednik" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: izhod s statusom 255; prekinjamo" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: ustavljeno s signalom %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: zaključeno s signalom %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: neveljavno število za izbiro -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: vrednost za izbiro -%c mora biti >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: vrednost za izbiro -%c mora biti < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/sr.po b/po/sr.po index 66219d4..d118588 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-11-24 14:16+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -411,7 +411,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "не могу да расцепим" @@ -473,7 +473,7 @@ msgstr "" "Употреба: %s [--version | --help]\n" "или %s најчешћи_биграми < списак-датотека > locate-база\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -581,47 +581,80 @@ msgstr "ГНУ locate издање %s\n" msgid "argument to --limit" msgstr "аргумент за --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "окружење је превелико за извршење" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "ГНУ xargs издање %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Умањујем arg_max (%ld) на arg_size (%ld)\n" # bug: plural-forms -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Ваше променљиве окружења заузимају %ld бајтова\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Горње и доње POSIX границе за дужину аргумента: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Највећа дужина наредбе коју заправо можемо користити: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Величина бафера наредби који заправо користимо: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -630,58 +663,58 @@ msgstr "" "неупарен наводник %s; уобичајено су наводници нарочити за xargs осим ако " "користите опцију -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "двоструки" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "једноструки" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "ред аргумената предугачак" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "грешка при чекању на подређени процес" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: завршио са стањем 255; обустављам" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: заустављен сигналом %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: окончан сигналом %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: неисправан број за опцију -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: вредност за опцију -%c мора бити >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: вредност за опцију -%c мора бити < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/sv.po b/po/sv.po index 962a21b..9048df2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2004-12-21 00:10+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -417,7 +417,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "kan inte grena" @@ -479,7 +479,7 @@ msgstr "" "Användning: %s [--version | --help]\n" "eller %s vanligaste_bigram < fillista > locate-databas\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -586,46 +586,79 @@ msgstr "GNU locate version %s\n" msgid "argument to --limit" msgstr "argument till --limit" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "miljön är för stor för exec" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs version %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Reducerar arg_max (%ld) till arg_size (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Dina miljövariabler upptar %ld byte\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Undre och övre POSIX-gränser för argumentlängd: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Maximal längd på kommando som vi faktiskt kan använda: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Storlek på kommandobufferten som vi faktiskt använder: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -634,58 +667,58 @@ msgstr "" "citattecknet %s är oavslutat; som standard är citattecken speciella för " "xargs såvida du inte använder flaggan -0" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "dubbelt" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "enkelt" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argumentraden är för lång" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "fel vid väntande på barnprocess" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: avslutades med status 255; avbryter" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: stoppades av signal %d" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: avslutades av signal %d" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: ogiltigt tal för flaggan -%c\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: värdet på flaggan -%c ska vara >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: värdet på flaggan -%c ska vara < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/tr.po b/po/tr.po index 6fc68ba..e94e05f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-02 13:24+0300\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -434,7 +434,7 @@ msgstr "-exec%s ... + ile sadece bir {} desteklenmektedir" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ayrılamaz" @@ -493,7 +493,7 @@ msgstr "" "Kullanımı: %s [--version | --help]\n" "veya %s most_common_bigrams < dosya-listesi > konum-veritabanı\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -614,46 +614,79 @@ msgstr "GNU locate sürüm %s\n" msgid "argument to --limit" msgstr "--limit argümanı" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "icra edilebilir olarak ortam çok geniş" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs sürüm %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Girdi dosyası `%s' açılamıyor" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "arg_max (%ld), arg_size'a (%ld) düşürülüyor\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Ortam değişkenleriniz %ld bayt tutuyor\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Argüman uzunluğu için POSIX alt ve üst sınırları: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Kullanabileceğimiz asgari komut uzunluğu: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Kullanmakta olduğumuz komut tamponunun boyu: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -662,58 +695,58 @@ msgstr "" "%s karşılığı ile eşleşmiyor; -0 seçeneği ile belirtilmedikçe öntanımlı " "olarak sarmalayıcı karakterler xarg'lara özeldir" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "çift" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "tek" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "argüman satırı çok uzun" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "ast süreç beklenirken hata oluştu" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: durum 255 ile çıkıldı; bırakılıyor" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: %d sinyali ile durduruldu" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: %d sinyali ile sonlandırıldı" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: -%c seçeneği için geçersiz sayı\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: -%c seçeneği için değer >= %ld olmalı\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: -%c seçeneği için değer < %ld olmalı\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/vi.po b/po/vi.po index 903f722..f78820b 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-02 17:14+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -488,7 +488,7 @@ msgstr "Hỗ trợ chỉ một thể hiện «{}» với đối số «-exec%s . msgid "< %s ... %s > ? " msgstr "< %s ... %s > không? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "không tạo tiến trình con được" @@ -551,7 +551,7 @@ msgstr "" "(chữ đôi thường nhất, danh sach tập tin, cơ sở dữ liệu loại xác định đúng vị " "trí)\n" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -682,46 +682,79 @@ msgstr "Trình locate (xác định đúng vị trí) phiên bản %s cua GNU\n" msgid "argument to --limit" msgstr "đối số đối với «--limit» (giới hạn)" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "môi trường quá lớn đối với «exec» (thì hành)" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "Trình xargs (x đối số) phiên bản %s của GNU\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "Không mở được tập tin nhập « %s »" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "Đang rút gọn «arg_max» (%ld) thành «arg-size» (%ld)\n" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "Các biến môi trường của bạn sử dụng %ld byte\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "Giới hạn POSIX cao và thập vào độ dài đối số: %ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "Tối đa độ dài lệnh mà thật có thể sử dụng: %ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "Cỡ bộ đệm lệnh mà thật sử dụng: %ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -730,58 +763,58 @@ msgstr "" "chưa khớp dấu trích dẫn « %s »; mặc định là mọi dấu trích dẫn là đặc biệt " "cho xargs nếu không sử dụng tùy chọn «-0»" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "đôi" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "đơn" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "đường đối số quá dài" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "gặp lỗi khi đời tiến trình con" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: đã thoát với trạng thái 255; đang hủy bỏ" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: do tín hiệu «%d» ngừng" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: do tín hiệu «%d» chấm dứt" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: số không hợp lệ đối với tùy chọn «-%c»\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: trị số cho tùy chọn «-%c» phải là ≥ «%ld»\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: trị số cho tùy chọn «-%c» phai có < %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 887939d..22ee25b 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2002-09-03 14:29+0800\n" "Last-Translator: Wang Li \n" "Language-Team: Chinese (simplified) \n" @@ -390,7 +390,7 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "ÎÞ·¨ fork" @@ -450,7 +450,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 #, fuzzy msgid "" "\n" @@ -555,104 +555,137 @@ msgstr "GNU locate msgid "argument to --limit" msgstr "²ÎÊýÐйý³¤" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "¶Ô exec À´Ëµ»·¾³¹ý´ó" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs °æ±¾ %s\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " "the -0 option" msgstr "" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "˫" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "µ¥" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "²ÎÊýÐйý³¤" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "µÈ´ý×Ó½ø³Ìʱ³ö´í" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s£ºÒÔ״̬ 255 Í˳ö£»ÖÐÖ¹" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s£ºÒòÐźŠ%d ¶øÍ£Ö¹" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s£ºÒòÐźŠ%d ¶øÖÕÖ¹" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s£ºÑ¡Ïî -%c µÄÊýÖµÎÞЧ\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, fuzzy, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s£ºÑ¡Ïî -%c µÄÖµ±ØÐë >= %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, fuzzy, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s£ºÑ¡Ïî -%c µÄÖµ±ØÐë < %ld\n" -#: xargs/xargs.c:1087 +#: xargs/xargs.c:1212 #, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index fdf81eb..8b2692b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-09-03 11:46+0100\n" +"POT-Creation-Date: 2005-09-03 13:49+0100\n" "PO-Revision-Date: 2005-08-10 16:38+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -384,7 +384,7 @@ msgstr "在 -exec%s ... + 裡面只可以使用一次 {}" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:887 +#: find/pred.c:1551 xargs/xargs.c:1012 msgid "cannot fork" msgstr "fork 失敗" @@ -441,7 +441,7 @@ msgid "" "or %s most_common_bigrams < file-list > locate-database\n" msgstr "" -#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1095 +#: locate/code.c:131 locate/locate.c:1114 xargs/xargs.c:1221 msgid "" "\n" "Report bugs to .\n" @@ -559,46 +559,79 @@ msgstr "GNU locate %s 版本\n" msgid "argument to --limit" msgstr "" -#: xargs/xargs.c:346 +#: xargs/xargs.c:330 +#, c-format +msgid "Ilegal escape sequence %s in input delimiter specification." +msgstr "" + +#: xargs/xargs.c:348 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lx." +msgstr "" + +#: xargs/xargs.c:354 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; character values " +"must not exceed %lo." +msgstr "" + +#: xargs/xargs.c:363 +#, c-format +msgid "" +"Ilegal escape sequence %s in input delimiter specification; trailing " +"characters %s not recognised." +msgstr "" + +#: xargs/xargs.c:410 +#, c-format +msgid "" +"Illegal input delimiter specification %s: the delimited must be either a " +"single character or an escape sequence starting with \\." +msgstr "" + +#: xargs/xargs.c:465 msgid "environment is too large for exec" msgstr "" -#: xargs/xargs.c:459 +#: xargs/xargs.c:584 #, c-format msgid "GNU xargs version %s\n" msgstr "GNU xargs %s 版本\n" -#: xargs/xargs.c:479 +#: xargs/xargs.c:604 #, c-format msgid "Cannot open input file `%s'" msgstr "無法開啟檔案 ‘%s’ 作為輸入資料" -#: xargs/xargs.c:505 +#: xargs/xargs.c:630 #, c-format msgid "Reducing arg_max (%ld) to arg_size (%ld)\n" msgstr "" -#: xargs/xargs.c:514 +#: xargs/xargs.c:639 #, c-format msgid "Your environment variables take up %ld bytes\n" msgstr "環境變數總共用了 %ld 位元組\n" -#: xargs/xargs.c:517 +#: xargs/xargs.c:642 #, c-format msgid "POSIX lower and upper limits on argument length: %ld, %ld\n" msgstr "POSIX 標準中參數長度上下限為:%ld, %ld\n" -#: xargs/xargs.c:521 +#: xargs/xargs.c:646 #, c-format msgid "Maximum length of command we could actually use: %ld\n" msgstr "實際上可用的指令列長度上限:%ld\n" -#: xargs/xargs.c:524 +#: xargs/xargs.c:649 #, c-format msgid "Size of command buffer we are actually using: %ld\n" msgstr "實際上使用的指令列緩衝區大小:%ld\n" -#: xargs/xargs.c:636 xargs/xargs.c:717 +#: xargs/xargs.c:761 xargs/xargs.c:842 #, c-format msgid "" "unmatched %s quote; by default quotes are special to xargs unless you use " @@ -607,58 +640,58 @@ msgstr "" "%s引號不配合;除非使用 -0 選項,否則在預設模式下引號對於 xargs 來說是有特別意" "義的" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "double" msgstr "雙" -#: xargs/xargs.c:637 xargs/xargs.c:718 +#: xargs/xargs.c:762 xargs/xargs.c:843 msgid "single" msgstr "單" -#: xargs/xargs.c:735 xargs/xargs.c:792 +#: xargs/xargs.c:860 xargs/xargs.c:917 msgid "argument line too long" msgstr "參數太長" -#: xargs/xargs.c:962 +#: xargs/xargs.c:1087 msgid "error waiting for child process" msgstr "等待子進程時出現錯誤" -#: xargs/xargs.c:978 +#: xargs/xargs.c:1103 #, c-format msgid "%s: exited with status 255; aborting" msgstr "%s: 回傳碼為 255;中止" -#: xargs/xargs.c:980 +#: xargs/xargs.c:1105 #, c-format msgid "%s: stopped by signal %d" msgstr "%s: 因訊號 %d 而停止" -#: xargs/xargs.c:982 +#: xargs/xargs.c:1107 #, c-format msgid "%s: terminated by signal %d" msgstr "%s: 因訊號 %d 而中止" -#: xargs/xargs.c:1035 +#: xargs/xargs.c:1160 #, c-format msgid "%s: invalid number for -%c option\n" msgstr "%s: -%c 選項後的數值無效\n" -#: xargs/xargs.c:1042 +#: xargs/xargs.c:1167 #, c-format msgid "%s: value for -%c option should be >= %ld\n" msgstr "%s: -%c 選項後的數值必須不小於 %ld\n" -#: xargs/xargs.c:1056 +#: xargs/xargs.c:1181 #, c-format msgid "%s: value for -%c option should be < %ld\n" msgstr "%s: -%c 選項後的數值必須小於 %ld\n" -#: xargs/xargs.c:1087 -#, c-format +#: xargs/xargs.c:1212 +#, fuzzy, c-format msgid "" "Usage: %s [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" -" [-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-" -"str]]\n" +" [-n max-args] [-s max-chars] [-P max-procs]\n" +" [--null] [-d|--delimiter=delim] [--eof[=eof-str]]\n" " [--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" " [--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" " [--max-args=max-args] [--no-run-if-empty] [--arg-file=file]\n" -- 2.11.4.GIT