From 0cc416a03054901df7837f4eb31f53dbcf8cf006 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 23 Apr 2007 09:17:36 +0000 Subject: [PATCH] Imeplement '-D rates' --- ChangeLog | 20 ++++++++++++++ doc/find.texi | 3 ++ find/defs.h | 22 ++++++++++++++- find/find.1 | 3 ++ find/find.c | 4 +-- find/ftsfind.c | 7 +++-- find/parser.c | 2 +- find/pred.c | 69 +++++++++++++++++++++++++--------------------- find/tree.c | 68 +++++++++++++++++++++++++++++---------------- find/util.c | 30 ++++++++++++++++++-- po/be.po | 82 +++++++++++++++++++++++++++--------------------------- po/bg.po | 82 +++++++++++++++++++++++++++--------------------------- po/ca.po | 82 +++++++++++++++++++++++++++--------------------------- po/da.po | 82 +++++++++++++++++++++++++++--------------------------- po/de.po | 82 +++++++++++++++++++++++++++--------------------------- po/el.po | 82 +++++++++++++++++++++++++++--------------------------- po/eo.po | 82 +++++++++++++++++++++++++++--------------------------- po/es.po | 82 +++++++++++++++++++++++++++--------------------------- po/et.po | 82 +++++++++++++++++++++++++++--------------------------- po/fi.po | 82 +++++++++++++++++++++++++++--------------------------- po/findutils.pot | 82 +++++++++++++++++++++++++++--------------------------- po/fr.po | 82 +++++++++++++++++++++++++++--------------------------- po/ga.po | 82 +++++++++++++++++++++++++++--------------------------- po/gl.po | 82 +++++++++++++++++++++++++++--------------------------- po/hr.po | 82 +++++++++++++++++++++++++++--------------------------- po/hu.po | 82 +++++++++++++++++++++++++++--------------------------- po/id.po | 82 +++++++++++++++++++++++++++--------------------------- po/it.po | 82 +++++++++++++++++++++++++++--------------------------- po/ja.po | 82 +++++++++++++++++++++++++++--------------------------- po/ko.po | 82 +++++++++++++++++++++++++++--------------------------- po/lg.po | 82 +++++++++++++++++++++++++++--------------------------- po/ms.po | 82 +++++++++++++++++++++++++++--------------------------- po/nl.po | 82 +++++++++++++++++++++++++++--------------------------- po/pl.po | 82 +++++++++++++++++++++++++++--------------------------- po/pt.po | 82 +++++++++++++++++++++++++++--------------------------- po/pt_BR.po | 82 +++++++++++++++++++++++++++--------------------------- po/ro.po | 82 +++++++++++++++++++++++++++--------------------------- po/ru.po | 82 +++++++++++++++++++++++++++--------------------------- po/rw.po | 82 +++++++++++++++++++++++++++--------------------------- po/sk.po | 82 +++++++++++++++++++++++++++--------------------------- po/sl.po | 84 ++++++++++++++++++++++++++++---------------------------- po/sr.po | 82 +++++++++++++++++++++++++++--------------------------- po/sv.po | 82 +++++++++++++++++++++++++++--------------------------- po/tr.po | 82 +++++++++++++++++++++++++++--------------------------- po/uk.po | 82 +++++++++++++++++++++++++++--------------------------- po/vi.po | 82 +++++++++++++++++++++++++++--------------------------- po/zh_CN.po | 82 +++++++++++++++++++++++++++--------------------------- po/zh_TW.po | 82 +++++++++++++++++++++++++++--------------------------- 48 files changed, 1722 insertions(+), 1624 deletions(-) diff --git a/ChangeLog b/ChangeLog index 55b2735..c1b3056 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +2007-04-23 James Youngman + + * find/defs.h (struct predicate_performance_info): New data + structure for holding perofmance statistics. + (struct predicate: include predicate_performance_info + (apply_predicate): change from macro to function + (pred_is): new macro, for predicate identity testing + (enum DebugOption): Added DebugSuccessRates + * find/find.1: Document option "-D rates" which turns on + DebugSuccessRates. + * doc/find.texi: ditto + * find.c (main): Call show_success_rates() before exiting. + (apply_predicate): remove the macro defintion, declare equivalent + function in defs.h. + * find/ftsfind.c (main): Call show_success_rates() before + exiting. Use apply_predicate(). + (show_outstanding_execdirs): use pred_is(). + + + 2007-04-22 Eric Blake * xargs/xargs.c (main): Don't assume LINE_MAX exists (i.e. is diff --git a/doc/find.texi b/doc/find.texi index 0be3e51..3581188 100644 --- a/doc/find.texi +++ b/doc/find.texi @@ -2982,6 +2982,9 @@ calls. The find program tries to minimise such calls. @item opt Prints diagnostic information relating to the optimisation of the expression tree; see the @samp{-O} option. +@item rates +Prints a summary indicating how often each predicate succeeded or +failed. @end table @node Find Expressions diff --git a/find/defs.h b/find/defs.h index 09541d8..e6d02be 100644 --- a/find/defs.h +++ b/find/defs.h @@ -280,6 +280,13 @@ struct format_val struct quoting_options *quote_opts; }; +/* Profiling information for a predicate */ +struct predicate_performance_info +{ + unsigned long visits; + unsigned long successes; +}; + /* evaluation cost of a predicate */ enum EvaluationCost { @@ -371,6 +378,8 @@ struct predicate struct predicate *pred_left; struct predicate *pred_right; + struct predicate_performance_info perf; + const struct parser_table* parser_entry; }; @@ -535,6 +544,7 @@ void print_predicate PARAMS((FILE *fp, const struct predicate *p)); void print_tree PARAMS((FILE*, struct predicate *node, int indent)); void print_list PARAMS((FILE*, struct predicate *node)); void print_optlist PARAMS((FILE *fp, const struct predicate *node)); +void show_success_rates(const struct predicate *node); /* tree.c */ @@ -555,6 +565,15 @@ void complete_pending_execdirs(int dirfd); /* Passing dirfd is an unpleasant Cod int process_leading_options PARAMS((int argc, char *argv[])); void set_option_defaults PARAMS((struct options *p)); +#if 0 +#define apply_predicate(pathname, stat_buf_ptr, node) \ + (*(node)->pred_func)((pathname), (stat_buf_ptr), (node)) +#else +boolean apply_predicate(const char *pathname, struct stat *stat_buf, struct predicate *p); +#endif + +#define pred_is(node, fn) ( ((node)->pred_func) == (fn) ) + /* find.c. */ int get_info PARAMS((const char *pathname, struct stat *p, struct predicate *pred_ptr)); @@ -572,7 +591,8 @@ enum DebugOption DebugSearch = 4, DebugTreeOpt = 8, DebugHelp = 16, - DebugExec = 32 + DebugExec = 32, + DebugSuccessRates = 64 }; struct options diff --git a/find/find.1 b/find/find.1 index 22138fa..20ce1b7 100644 --- a/find/find.1 +++ b/find/find.1 @@ -146,6 +146,9 @@ program tries to minimise such calls. .IP opt Prints diagnostic information relating to the optimisation of the expression tree; see the \-O option. +.IP rates +Prints a summary indicating how often each predicate succeeded or +failed. .RE .IP \-Olevel Enables query optimisation. The diff --git a/find/find.c b/find/find.c index 999bf05..ea1bdf5 100644 --- a/find/find.c +++ b/find/find.c @@ -75,9 +75,6 @@ # define N_(String) String #endif -#define apply_predicate(pathname, stat_buf_ptr, node) \ - (*(node)->pred_func)((pathname), (stat_buf_ptr), (node)) - #ifdef STAT_MOUNTPOINTS static void init_mounted_dev_list(int mandatory); #endif @@ -233,6 +230,7 @@ main (int argc, char **argv) * partially-full command lines which have been built, * but which are not yet complete. Execute those now. */ + show_success_rates(eval_tree); cleanup(); return state.exit_status; } diff --git a/find/ftsfind.c b/find/ftsfind.c index ed87657..deee5d5 100644 --- a/find/ftsfind.c +++ b/find/ftsfind.c @@ -237,7 +237,7 @@ visit(FTS *p, FTSENT *ent, struct stat *pstat) /* Apply the predicates to this path. */ eval_tree = get_eval_tree(); - (*(eval_tree)->pred_func)(ent->fts_path, pstat, eval_tree); + apply_predicate(ent->fts_path, pstat, eval_tree); /* Deal with any side effects of applying the predicates. */ if (state.stop_at_current_level) @@ -349,9 +349,9 @@ show_outstanding_execdirs(FILE *fp) { const char *pfx; - if (p->pred_func == pred_execdir) + if (pred_is(p, pred_execdir)) pfx = "-execdir"; - else if (p->pred_func == pred_okdir) + else if (pred_is(p, pred_okdir)) pfx = "-okdir"; else pfx = NULL; @@ -732,6 +732,7 @@ main (int argc, char **argv) * partially-full command lines which have been built, * but which are not yet complete. Execute those now. */ + show_success_rates(eval_tree); cleanup(); return state.exit_status; } diff --git a/find/parser.c b/find/parser.c index 19b95ed..80d97f2 100644 --- a/find/parser.c +++ b/find/parser.c @@ -1985,7 +1985,7 @@ parse_accesscheck (const struct parser_table* entry, char **argv, int *arg_ptr) our_pred = insert_primary (entry); our_pred->need_stat = our_pred->need_type = false; our_pred->side_effects = our_pred->no_default_print = false; - if (our_pred->pred_func == pred_executable) + if (pred_is(our_pred, pred_executable)) our_pred->est_success_rate = 0.2; else our_pred->est_success_rate = 0.9; diff --git a/find/pred.c b/find/pred.c index a221232..6f291f2 100644 --- a/find/pred.c +++ b/find/pred.c @@ -303,17 +303,12 @@ boolean pred_and (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { if (pred_ptr->pred_left == NULL - || (*pred_ptr->pred_left->pred_func) (pathname, stat_buf, - pred_ptr->pred_left)) + || apply_predicate(pathname, stat_buf, pred_ptr->pred_left)) { - /* Check whether we need a stat here. */ - if (get_info(pathname, stat_buf, pred_ptr) != 0) - return false; - return ((*pred_ptr->pred_right->pred_func) (pathname, stat_buf, - pred_ptr->pred_right)); + return apply_predicate(pathname, stat_buf, pred_ptr->pred_right); } else - return (false); + return false; } boolean @@ -361,14 +356,10 @@ boolean pred_comma (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { if (pred_ptr->pred_left != NULL) - (*pred_ptr->pred_left->pred_func) (pathname, stat_buf, - pred_ptr->pred_left); - /* Check whether we need a stat here. */ - /* TODO: what about need_type? */ - if (get_info(pathname, stat_buf, pred_ptr) != 0) - return false; - return ((*pred_ptr->pred_right->pred_func) (pathname, stat_buf, - pred_ptr->pred_right)); + { + apply_predicate(pathname, stat_buf,pred_ptr->pred_left); + } + return apply_predicate(pathname, stat_buf, pred_ptr->pred_right); } boolean @@ -1198,12 +1189,7 @@ pred_name (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) boolean pred_negate (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { - /* Check whether we need a stat here. */ - /* TODO: what about need_type? */ - if (get_info(pathname, stat_buf, pred_ptr) != 0) - return false; - return (!(*pred_ptr->pred_right->pred_func) (pathname, stat_buf, - pred_ptr->pred_right)); + return !apply_predicate(pathname, stat_buf, pred_ptr->pred_right); } boolean @@ -1334,13 +1320,9 @@ boolean pred_or (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { if (pred_ptr->pred_left == NULL - || !(*pred_ptr->pred_left->pred_func) (pathname, stat_buf, - pred_ptr->pred_left)) + || !apply_predicate(pathname, stat_buf, pred_ptr->pred_left)) { - if (get_info(pathname, stat_buf, pred_ptr) != 0) - return false; - return ((*pred_ptr->pred_right->pred_func) (pathname, stat_buf, - pred_ptr->pred_right)); + return apply_predicate(pathname, stat_buf, pred_ptr->pred_right); } else return true; @@ -2115,8 +2097,7 @@ print_parenthesised(FILE *fp, struct predicate *node) if (node) { - if ( ( (node->pred_func == pred_or) - || (node->pred_func == pred_and) ) + if (pred_is(node, pred_or) || pred_is(node, pred_and) && node->pred_left == NULL) { /* We print " or X" as just "X" @@ -2150,10 +2131,36 @@ print_optlist (FILE *fp, const struct predicate *p) p->need_type ? "[need type] " : ""); print_predicate(fp, p); fprintf(fp, " [%g] ", p->est_success_rate); + if (options.debug_options & DebugSuccessRates) + { + fprintf(fp, "[%ld/%ld", p->perf.successes, p->perf.visits); + if (p->perf.visits) + { + double real_rate = (double)p->perf.successes / (double)p->perf.visits; + fprintf(fp, "=%g] ", real_rate); + } + else + { + fprintf(fp, "=_] "); + } + } print_parenthesised(fp, p->pred_right); } } +void show_success_rates(const struct predicate *p) +{ + if (options.debug_options & DebugSuccessRates) + { + fprintf(stderr, "Predicate success rates after completion:\n"); + print_optlist(stderr, p); + fprintf(stderr, "\n"); + } +} + + + + #ifdef _NDEBUG /* If _NDEBUG is defined, the assertions will do nothing. Hence * there is no point in having a function body for pred_sanity_check() @@ -2208,7 +2215,7 @@ pred_sanity_check(const struct predicate *predicates) case ARG_ACTION: assert(p->side_effects); /* actions have side effects. */ - if (p->pred_func != pred_prune && p->pred_func != pred_quit) + if (!pred_is(p, pred_prune) && !pred_is(p, pred_quit)) { /* actions other than -prune and -quit should * inhibit the default -print diff --git a/find/tree.c b/find/tree.c index 8482cac..9a01d9c 100644 --- a/find/tree.c +++ b/find/tree.c @@ -238,10 +238,10 @@ scan_rest (struct predicate **input, static boolean predicate_is_cost_free(const struct predicate *p) { - PRED_FUNC pred_func = p->pred_func; - - if (pred_func == pred_name || pred_func == pred_path || - pred_func == pred_iname || pred_func == pred_ipath) + if (pred_is(p, pred_name) || + pred_is(p, pred_path) || + pred_is(p, pred_iname) || + pred_is(p, pred_ipath)) { /* Traditionally (at least 4.1.7 through 4.2.x) GNU find always * optimised these cases. @@ -250,8 +250,10 @@ predicate_is_cost_free(const struct predicate *p) } else if (options.optimisation_level > 0) { - if (pred_func == pred_and || pred_func == pred_negate || - pred_func == pred_comma || pred_func == pred_or) + if (pred_is(p, pred_and) || + pred_is(p, pred_negate) || + pred_is(p, pred_comma) || + pred_is(p, pred_or)) return false; else return NeedsNothing == p->p_cost; @@ -565,13 +567,13 @@ consider_arm_swap(struct predicate *p) fprintf(stderr, "Success rates: l=%f, r=%f\n", succ_rate_l, succ_rate_r); } - if (pred_or == p->pred_func) + if (pred_is(p, pred_or)) { want_swap = succ_rate_r < succ_rate_l; if (!want_swap) reason = "Operation is OR and right success rate >= left"; } - else if (pred_and == p->pred_func) + else if (pred_is(p, pred_and)) { want_swap = succ_rate_r > succ_rate_l; if (!want_swap) @@ -924,8 +926,8 @@ mark_stat (struct predicate *tree) case UNI_OP: if (mark_stat (tree->pred_right)) - tree->need_stat = true; - return (false); + tree->need_stat = true; /* XXX: is this needed? */ + return false; case BI_OP: /* ANDs and ORs are linked along ->left ending in NULL. */ @@ -933,9 +935,9 @@ mark_stat (struct predicate *tree) mark_stat (tree->pred_left); if (mark_stat (tree->pred_right)) - tree->need_stat = true; + tree->need_stat = true; /* XXX: is this needed? */ - return (false); + return false; default: error (1, 0, _("oops -- invalid expression type in mark_stat!")); @@ -960,7 +962,7 @@ mark_type (struct predicate *tree) case UNI_OP: if (mark_type (tree->pred_right)) - tree->need_type = true; + tree->need_type = true; /* XXX: is this needed */ return false; case BI_OP: @@ -969,7 +971,7 @@ mark_type (struct predicate *tree) mark_type (tree->pred_left); if (mark_type (tree->pred_right)) - tree->need_type = true; + tree->need_type = true; /* XXX: is this needed? */ return false; @@ -1086,11 +1088,10 @@ cost_table_comparison(const void *p1, const void *p2) } static enum EvaluationCost -get_pred_cost(struct predicate *p) +get_pred_cost(const struct predicate *p) { enum EvaluationCost data_requirement_cost = NeedsNothing; enum EvaluationCost inherent_cost = NeedsUnknown; - PRED_FUNC f = p->pred_func; if (p->need_stat) { @@ -1105,14 +1106,14 @@ get_pred_cost(struct predicate *p) data_requirement_cost = NeedsNothing; } - if (pred_exec == f || pred_execdir == f) + if (pred_is(p, pred_exec) || pred_is(p, pred_execdir)) { if (p->args.exec_vec.multiple) inherent_cost = NeedsEventualExec; else inherent_cost = NeedsImmediateExec; } - else if (pred_fprintf == f) + else if (pred_is(p, pred_fprintf)) { /* the parser calculated the cost for us. */ inherent_cost = p->p_cost; @@ -1215,7 +1216,7 @@ calculate_derived_rates(struct predicate *p) case UNI_OP: /* Unary operators must have exactly one operand */ - assert(pred_negate == p->pred_func); + assert(pred_is(p, pred_negate)); assert(NULL == p->pred_left); p->est_success_rate = (1.0 - p->pred_right->est_success_rate); return p->est_success_rate; @@ -1224,15 +1225,15 @@ calculate_derived_rates(struct predicate *p) { float rate; /* Binary operators must have two operands */ - if (pred_and == p->pred_func) + if (pred_is(p, pred_and)) { rate = getrate(p->pred_right) * getrate(p->pred_left); } - else if (pred_comma == p->pred_func) + else if (pred_is(p, pred_comma)) { rate = 1.0f; } - else if (pred_or == p->pred_func) + else if (pred_is(p, pred_or)) { rate = getrate(p->pred_right) + getrate(p->pred_left); } @@ -1428,7 +1429,7 @@ build_expression_tree(int argc, char *argv[], int end_of_leading_options) if (cur_pred != NULL) { /* cur_pred->p_name is often NULL here */ - if (cur_pred->pred_func == pred_close) + if (pred_is(cur_pred, pred_close)) { /* e.g. "find \( -true \) \)" */ error (1, 0, _("you have too many ')'"), cur_pred->p_name); @@ -1460,11 +1461,19 @@ build_expression_tree(int argc, char *argv[], int end_of_leading_options) /* Check that the tree is still in normalised order */ check_normalization(eval_tree, true); - + +#if 0 + /* + James Youngman, Mon Apr 23 00:39:48 2007... + Not that apply_predicate() calls get_info(), + we may no longer need to mark parent predicates if their children need the stat. + */ + /* Determine the point, if any, at which to stat the file. */ mark_stat (eval_tree); /* Determine the point, if any, at which to determine file type. */ mark_type (eval_tree); +#endif if (options.debug_options & (DebugExpressionTree|DebugTreeOpt)) { @@ -1478,6 +1487,16 @@ build_expression_tree(int argc, char *argv[], int end_of_leading_options) return eval_tree; } +/* Initialise the performance data for a predicate. + */ +static void +init_pred_perf(struct predicate *pred) +{ + struct predicate_performance_info *p = &pred->perf; + p->visits = p->successes = 0; +} + + /* Return a pointer to a new predicate structure, which has been linked in as the last one in the predicates list. @@ -1524,6 +1543,7 @@ get_new_pred (const struct parser_table *entry) last_pred->literal_control_chars = options.literal_control_chars; last_pred->artificial = false; last_pred->est_success_rate = 1.0; + init_pred_perf(last_pred); return last_pred; } diff --git a/find/util.c b/find/util.c index 46e6455..f3427a3 100644 --- a/find/util.c +++ b/find/util.c @@ -66,6 +66,7 @@ static struct debug_option_assoc debugassoc[] = { "tree", DebugExpressionTree, "Display the expression tree" }, { "search",DebugSearch, "Navigate the directory tree verbosely" }, { "stat", DebugStat, "Trace calls to stat(2) and lstat(2)" }, + { "rates", DebugSuccessRates, "Indicate how often each predicate succeeded" }, { "opt", DebugExpressionTree|DebugTreeOpt, "Show diagnostic information relating to optimisation" }, { "exec", DebugExec, "Show diagnostic information relating to -exec, -execdir, -ok and -okdir" } }; @@ -284,7 +285,7 @@ do_complete_pending_execdirs(struct predicate *p, int dirfd) do_complete_pending_execdirs(p->pred_left, dirfd); - if (p->pred_func == pred_execdir || p->pred_func == pred_okdir) + if (pred_is(p, pred_execdir) || pred_is(p, pred_okdir)) { /* It's an exec-family predicate. p->args.exec_val is valid. */ if (p->args.exec_vec.multiple) @@ -333,7 +334,8 @@ complete_pending_execs(struct predicate *p) /* It's an exec-family predicate then p->args.exec_val is valid * and we can check it. */ - if (p->pred_func == pred_exec && p->args.exec_vec.multiple) + /* XXX: what about pred_ok() ? */ + if (pred_is(p, pred_exec) && p->args.exec_vec.multiple) { struct exec_val *execp = &p->args.exec_vec; @@ -839,3 +841,27 @@ int get_start_dirfd(void) { return starting_desc; } + +/* apply_predicate + * + */ +boolean apply_predicate(const char *pathname, struct stat *stat_buf, struct predicate *p) +{ + ++p->perf.visits; + + if (p->need_stat || p->need_type) + { + /* We may need a stat here. */ + if (get_info(pathname, stat_buf, p) != 0) + return false; + } + if ((p->pred_func)(pathname, stat_buf, p)) + { + ++(p->perf.successes); + return true; + } + else + { + return false; + } +} diff --git a/po/be.po b/po/be.po index 638dac7..8bb7ba8 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2003-11-04 05:21+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -130,112 +130,112 @@ msgstr "^[тТ]" msgid "^[nN]" msgstr "^[нН]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Выкарыстаньне: %s [шлях...] [выраз]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Выкарыстаньне: %s [шлях...] [выраз]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "увага: нераспазнаная службовая пасьлядоўнасьць \"\\%c\"" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "немагчыма атрымаць бягучую тэчку" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "немагчыма атрымаць бягучую тэчку" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -472,34 +472,34 @@ msgstr "асяродзьдзе занадта вялікае для exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "немагчыма нарадзіць працэс" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "памылка чаканьня %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s завершаны сыгналам %d" @@ -548,7 +548,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "" @@ -557,54 +557,54 @@ msgstr "" msgid "oops -- invalid expression type (%d)!" msgstr "нерэчаісны выраз" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "шлях мусіць папярэднічаць выразу" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "нерэчаісны выказьнік \"%s\"" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "нерэчаісны выказьнік \"%s\"" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "нерэчаісны довад \"%s\" да \"%s\"" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "прапушчаны довад да \"%s\"" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "нерэчаісны выраз" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "нерэчаісны выказьнік \"%s\"" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" diff --git a/po/bg.po b/po/bg.po index 35fa053..59f506c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-11-13 23:03+0200\n" "Last-Translator: Anton Zinoviev \n" "Language-Team: Bulgarian \n" @@ -138,39 +138,39 @@ msgstr "^[дДoOyY]" msgid "^[nN]" msgstr "^[нНkKnN]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Използване: %s [-H] [-L] [-P] [-Oниво] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [път...] [израз]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Пренебрегва се непознатият флаг за програмно тестване %s" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "Празен аргумент за опцията -D." -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "Опцията -O трябва непосредствено да се следва от десетично цяло число." -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "Моля, задайте десетично цяло число непосредствено след -O" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "Нреправилно ниво за оптимизация %s" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -179,7 +179,7 @@ msgstr "" "Нивото за оптимизация %lu е твърде високо. Ако желаете да намирате " "файловете много бързо, обмислете да използвате GNU locate." -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -187,26 +187,26 @@ msgstr "" "Променливата от обкръжението FIND_BLOCK_SIZE не се поддържа. Единственото " "нещо, което влияе на размера на блока, е променливата POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "не може да се установи текущият каталог" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "не може да се установи текущият каталог" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Внимание: файловата система %s бе размонтирана неотдавна." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Внимание: файловата система %s бе монтирана неотдавна." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -215,7 +215,7 @@ msgstr "" "%s%s е изменен по време на изпълнението на %s (стар номер на устройство %ld, " "нов номер на устройство %ld, типът на файловата система е %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -224,7 +224,7 @@ msgstr "" "%s%s е изменен по време на изпълнението на %s (стар номер на i-възел %ld, " "нов номер на i-възел %ld, типът на файловата система е %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -233,7 +233,7 @@ msgstr "" "Символната връзка „%s“ е част от цикъл в йерархията на каталозите; соченият " "каталог вече бе посетен." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -242,20 +242,20 @@ msgstr "" "Открит бе цикъл във файловата система; „%s“ има същия номер на устройство и " "i-възел като каталога, който е %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "ниво по-високо във йерархията на файловата система" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "нива по-високо в йерархията на файловата система" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "внимание: символната връзка %s не се следва" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -536,34 +536,34 @@ msgstr "Обкръжението е твърде голямо за exec()." msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "не може да се създаде нов процес с fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "изчакване на грешка за %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s бе прекратен със сигнал %d" @@ -615,7 +615,7 @@ msgstr "" "неправилен израз; очакваше се някъде да се срещне затваряща скоба „)“, но " "такава не бе открита." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "Опа! Неправилен тип на израза!" @@ -624,53 +624,53 @@ msgstr "Опа! Неправилен тип на израза!" msgid "oops -- invalid expression type (%d)!" msgstr "Опа! Неправилен тип на израза (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "Опа! Неправилен тип на израза в mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "Опа! Неправилен тип на израза в mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "пътищата трябва да предхождат израза: %s" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "неправилен предикат „%s“" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "неправилен предикат „%s“" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "неправилен аргумент „%s“ за „%s“" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "липсващ аргумент за „%s“" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "има твърде много „)“" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "неочакван допълнителен предикат „%s“" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "неочакван допълнителен предикат" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "Опа! Неправилно вмъкване по подразбиране на оператор „И“!" diff --git a/po/ca.po b/po/ca.po index 8a131f8..64907d6 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-05-20 14:54+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -131,46 +131,46 @@ msgstr "^[sS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Forma d'ús: %s [-H] [-L] [-P] [camí...] [expressió]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Forma d'ús: %s [camí...] [expressió]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "avís: seqüència d'escapament «\\%c» no reconegut" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "La variable d'entorn FIND_BLOCK_SIZE no està suportada, l'única cosa que " "afecta a la mida dels blocs és la variable d'entorn POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "no es pot obtenir el directori actual" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "no es pot obtenir el directori actual" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Avís: el sistema de fitxers %s ha estat desmuntat fa poc." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Avís: el sistema de fitxers %s ha estat muntat fa poc." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -207,7 +207,7 @@ msgstr "" "ld, el número del nou dispositiu és %ld, el tipus de sistema de fitxers és %" "s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,7 +217,7 @@ msgstr "" "el número del node-i nou és %ld, el tipus de sistema de fitxers és %s) [ref %" "ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -226,7 +226,7 @@ msgstr "" "L'enllaç simbòlic «%s» és part d'un bucle a la jerarquia del directori. Ja " "hem visitat el directori al qual apunta." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -235,20 +235,20 @@ msgstr "" "S'ha detectat un bucle al sistema de fitxers; «%s» té el mateix número de " "dispositiu i node d'idenficació que un directori que és %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "nivell més alt a la jerarquia del sistema de fitxers" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "nivells més alt a la jerarquia del sistema de fitxers" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "avís: no es seguirà l'enllaç simbòlic %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -526,35 +526,35 @@ msgstr "l'entorn és massa gran per a l'execució" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ?" -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "no es pot fer «fork»" # Suggerències? jm -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "error a l'esperar al procés %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s finalitzat pel senyal %d" @@ -608,7 +608,7 @@ msgstr "" "l'expressió no és vàlida; s'esperava un «)» en algun lloc però no s'ha " "trobat cap." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ep -- el tipus d'expressió no és vàlid!" @@ -617,54 +617,54 @@ msgstr "ep -- el tipus d'expressió no és vàlid!" msgid "oops -- invalid expression type (%d)!" msgstr "ep -- el tipus d'expressió (%d) no és vàlid!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "ep -- el tipus d'expressió no és vàlid!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "ep -- el tipus d'expressió no és vàlid!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "els camins han de precedir la expressió" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "el predicat «%s» no és vàlid" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "el predicat «%s» no és vàlid" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "l'argument «%s» no és vàlid per a «%s»" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "manca un argument per a «%s»" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "l'expressió no és vàlida; teniu massa «)»" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "s'ha trobat un predicat extra no esperat" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "s'ha trobat un predicat extra no esperat" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- inserció per defecte d'«and» no vàlida!" diff --git a/po/da.po b/po/da.po index f9188a4..9b56215 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-08-01 18:25+0200\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -134,46 +134,46 @@ msgstr "^[yYjJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Brug: %s [-H] [-L] [-P] [sti...] [udtryk]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Brug: %s [sti...] [udtryk]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "advarsel: ukendt undvigetegn '\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -181,26 +181,26 @@ msgstr "" "Miljøvariablen FIND_BLOCK_SIZE er ikke understøttet, det eneste der påvirker " "blokstørrelsen er miljøvariablen POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "kan ikke hente det aktuelle katalog" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "kan ikke hente det aktuelle katalog" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Advarsel: filsystemet %s er blevet afmonteret for nylig." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Advarsel: filsystemet %s er blevet monteret for nylig." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -209,7 +209,7 @@ msgstr "" "%s%s ændrede sig under kørsel af %s (tidligere enhedsnummer %ld, nyt " "enhedsnummer %ld, filsystemtype er %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -218,7 +218,7 @@ msgstr "" "%s%s ændrede sig under kørsel af %s (tidligere inode-nummer %ld, nyt inode-" "nummer %ld, filsystemtype er %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -227,7 +227,7 @@ msgstr "" "Symbolsk kæde '%s' er del af en løkke i kataloghierarkiet; det katalog som " "den peger på, er allerede blevet besøgt." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -236,20 +236,20 @@ msgstr "" "Filsystemsløkke fundet; '%s' har det samme enhedsnummer og indekseringsknude " "som et katalog hvilket er %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "niveau højere i filsystemshierarkiet" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "niveauer højere i filsystemshierarkiet" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "advarsel: kunne ikke følge det symbolske link %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -518,36 +518,36 @@ msgstr "milj msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" # der er plads nok at tage af -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "kan ikke fraspalte en ny proces" # ditto, ingen grund til kryptiskhed -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "fejl i forbindelse med at vente på %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s afsluttet af signal %d" @@ -595,7 +595,7 @@ msgid "" "one." msgstr "ugyldigt udtryk; ')' var forventet, men blev ikke fundet" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ups - ugyldig udtrykstype!" @@ -604,54 +604,54 @@ msgstr "ups - ugyldig udtrykstype!" msgid "oops -- invalid expression type (%d)!" msgstr "ups - ugyldig udtrykstype (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "ups - ugyldig udtrykstype i mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "ups - ugyldig udtrykstype i mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "stier skal stå før udtrykket" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ugyldigt udsagn '%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ugyldigt udsagn '%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ugyldig parameter '%s' til '%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "manglende parameter til '%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ugyldigt udtryk; for mange ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "uventet ekstra udsagn" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "uventet ekstra udsagn" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "ups - ugyldig automatisk indsættelse af 'and'!" diff --git a/po/de.po b/po/de.po index 359024d..d460d02 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2003-11-07 21:54+0100\n" "Last-Translator: Nils Naumann \n" "Language-Team: German \n" @@ -129,112 +129,112 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Aufruf: %s [Pfad...] [Suchkriterium]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Aufruf: %s [Pfad...] [Suchkriterium]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Warnung: Unerkanntes Fluchtsymbol \"\\%c\"." -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "Kann nicht in das aktuelle Verzeichnis wechseln." -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "Kann nicht in das aktuelle Verzeichnis wechseln." -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -472,34 +472,34 @@ msgstr "Der Umgebungsspeicher ist f msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "Kann keinen neuen Prozeß starten." -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "Fehler beim Warten auf das Prozeßende von %s." -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "Der Prozeß %s wurde durch das Signal %d abgebrochen." @@ -548,7 +548,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "Oops -- ungültiger Ausdruckstyp!" @@ -557,56 +557,56 @@ msgstr "Oops -- ung msgid "oops -- invalid expression type (%d)!" msgstr "Oops -- ungültiger Ausdruckstyp!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "Oops -- ungültiger Ausdruckstyp!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "Oops -- ungültiger Ausdruckstyp!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "Der Pfad muß vor dem Suchkriterium stehen." -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ungültige Option `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ungültige Option `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Ungültiges Argument \"%s\" für \"%s\"." -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "Fehlendes Argument für \"%s\"." -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "Ungültiger Ausdruck." -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "ungültige Option `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "Oops -- Das automatische Einfügen von \"-and\" ist ungültig!" diff --git a/po/el.po b/po/el.po index b019e3b..2be95c6 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-01-02 13:54+0200\n" "Last-Translator: Lefteris Dimitroulakis \n" "Language-Team: Greek \n" @@ -131,46 +131,46 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Χρήση: %s [-H] [-L] [-P] [διαδρομή...] έκφραση]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Χρήση: %s [διαδρομή...] [έκφραση]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "προειδοποίηση: μη αναγνωριζόμενη ακολουθία διαφυγής «\\%c»" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "Η μεταβλητή περιβάλλοντος FIND_BLOCK_SIZE δεν υποστηρίζεται, αυτό που " "επιρρεάζει το μέγεθος μπλοκ είναι η μεταβλητή περιβάλλοντος POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "Δεν μπορώ να βρώ τον τρέχοντα κατάλογο" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "Δεν μπορώ να βρώ τον τρέχοντα κατάλογο" -#: find/find.c:390 +#: find/find.c:388 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Το σύστημα αρχείων %s αποπροσαρτήθηκε πρόσφατα." -#: find/find.c:400 +#: find/find.c:398 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Το σύστημα αρχείων %s έχει προσφάτως προσαρτηθεί." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -206,7 +206,7 @@ msgstr "" "%s%s άλλαξε κατά την εκτέλεση του %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -215,34 +215,34 @@ msgstr "" "%s%s άλλαξε κατά την εκτέλεση του %s (παλαιός αριθμός inode %ld, νέος " "αριθμός inode %ld, ο τύπος συστήματος αρχείων είναι %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -504,34 +504,34 @@ msgstr "το περιβάλλον είναι πολύ μεγάλο γιά την msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "Δεν μπορώ να κλωνοποιήσω" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "σφάλμα περιμένοντας γιά %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s τερματίστηκε από το σήμα %d" @@ -580,7 +580,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- άκυρος τύπος έκφρασης!" @@ -589,56 +589,56 @@ msgstr "oops -- άκυρος τύπος έκφρασης!" msgid "oops -- invalid expression type (%d)!" msgstr "oops -- άκυρος τύπος έκφρασης!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- άκυρος τύπος έκφρασης!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- άκυρος τύπος έκφρασης!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "οι διαδρομές πρέπει να προηγούνται των εκφράσεων" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "το κατηγόρημα «%s» είναι άκυρο" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "το κατηγόρημα «%s» είναι άκυρο" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Το όρισμα «%s» για την «%s» είναι άκυρο" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "Το όρισμα για την «%s» απουσιάζει" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "άκυρη έκφραση" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "μη αναμενόμενο extra κατηγόρημα" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "μη αναμενόμενο extra κατηγόρημα" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- η παρεμβολή της προεπιλεγμένης παραμέτρου «and» είναι άκυρη!" diff --git a/po/eo.po b/po/eo.po index 939351c..5e86c7b 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-01-04 15:27-0500\n" "Last-Translator: D. Dale Gulledge \n" "Language-Team: Esperanto \n" @@ -129,112 +129,112 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uzado: %s [pado...] [esprimo]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uzado: %s [pado...] [esprimo]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "averto: nerekonata eskapsigno `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "ne povas preni aktualan dosierujon" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "ne povas preni aktualan dosierujon" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -474,34 +474,34 @@ msgstr "medio estas tro granda por exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ne povas forki" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "eraro atendante por %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s æesigita per signalo %d" @@ -550,7 +550,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "up -- malvalida esprimospeco!" @@ -559,56 +559,56 @@ msgstr "up -- malvalida esprimospeco!" msgid "oops -- invalid expression type (%d)!" msgstr "up -- malvalida esprimospeco!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "up -- malvalida esprimospeco!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "up -- malvalida esprimospeco!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "padoj devas esti antaý ol esprimo" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "malvalida predikato `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "malvalida predikato `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "malvalida argumento `%s'por `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "mankas argumento por `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "malvalida esprimo" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "malvalida predikato `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "up -- malvalida defaýlta enþovado de ``and'' (kaj)!" diff --git a/po/es.po b/po/es.po index 57e09b6..b4dbdd3 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-12-23 16:57+0100\n" "Last-Translator: Santiago Vila Doncel \n" "Language-Team: Spanish \n" @@ -137,7 +137,7 @@ msgstr "^[nN]" # ¡Olé! Gracias a tos los de es@li.org que me habeis dado "ruta de acceso". # No se qué significado tendría mi vida sin vuestra ayuda ;), snif ... :~) # IPG -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Modo de empleo: %s [-H] [-L] [-P] [ruta-de-acceso...] [expresión]\n" @@ -147,41 +147,41 @@ msgstr "Modo de empleo: %s [-H] [-L] [-P] [ruta-de-acceso...] [expresi # ¡Olé! Gracias a tos los de es@li.org que me habeis dado "ruta de acceso". # No se qué significado tendría mi vida sin vuestra ayuda ;), snif ... :~) # IPG -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Modo de empleo: %s [ruta-de-acceso...] [expresión]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "atención: secuencia de escape `\\%c' no reconocida" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -189,26 +189,26 @@ msgstr "" "La variable de entorno FIND_BLOCK_SIZE no está soportada, lo único que\n" "afecta al tamaño del bloque es la variable de entorno POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "no se puede obtener el directorio actual" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "no se puede obtener el directorio actual" -#: find/find.c:390 +#: find/find.c:388 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "El sistema de ficheros %s ha sido desmontado recientemente." -#: find/find.c:400 +#: find/find.c:398 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "El sistema de ficheros %s ha sido montado recientemente." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -219,7 +219,7 @@ msgstr "" "número de dispositivo nuevo %ld, el tipo de sistema de ficheros es %s [ref %" "ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -228,34 +228,34 @@ msgstr "" "%s%s ha cambiado durante la ejecución de %s (número de nodo-i antiguo %ld,\n" "número de nodo-i nuevo %ld, tipo de sistema de ficheros %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -583,21 +583,21 @@ msgstr "el entorno es demasiado grande para exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 #, fuzzy msgid "Failed to change directory" msgstr "no se puede volver al directorio de partida" @@ -642,16 +642,16 @@ msgstr "no se puede volver al directorio de partida" # 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:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "falló la llamada al sistema `fork()'" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "error esperando al proceso %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado por la señal %d" @@ -734,7 +734,7 @@ msgstr "" # (Donde menos me pegan es en el "oh, oh", parece cosa de Papá Noel...). sv # # Será por las fechas ... ;) ok, claudico. ipg -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oh, oh -- ¡tipo de expresión inválido!" @@ -811,7 +811,7 @@ msgstr "oh, oh -- # (Donde menos me pegan es en el "oh, oh", parece cosa de Papá Noel...). sv # # Será por las fechas ... ;) ok, claudico. ipg -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oh, oh -- ¡tipo de expresión inválido!" @@ -850,51 +850,51 @@ msgstr "oh, oh -- # (Donde menos me pegan es en el "oh, oh", parece cosa de Papá Noel...). sv # # Será por las fechas ... ;) ok, claudico. ipg -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oh, oh -- ¡tipo de expresión inválido!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "Las rutas-de-acceso deben preceder la expresión" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predicado inválido `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predicado inválido `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento `%s' inválido para la opción `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "falta el argumento de `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expresión inválida" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicado extra inesperado" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "predicado extra inesperado" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oh, oh -- ¡inserción por defecto de `and' inválida!" diff --git a/po/et.po b/po/et.po index b03c730..54c2c4f 100644 --- a/po/et.po +++ b/po/et.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-11-11 12:42+0200\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -129,39 +129,39 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[eE]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Kasuta: %s [-H] [-L] [-P] [-Otase] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [tee...] [avaldis]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Ignoreerin tundmatut silumise võtit %s" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "Võtmel -D puudub argument." -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "Võtme -O järel peab olema numbriline argument" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "Palun kirjutage võtme -O järel number" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "Vigane optimeerimise tase %s" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -170,7 +170,7 @@ msgstr "" "Optimiseerimise tase %lu on liiga kõrge. Kui soovite leida faile väga " "kiiresti, kasutage GNU locate programmi." -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "Keskkonnamuutujat FIND_BLOCK_SIZE ei toetata, bloki suurust mõjutab ainult " "keskkonna muutuja POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "ei õnnestu leida jooksvat kataloogi" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "ei õnnestu leida jooksvat kataloogi" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Hoiatus: failisüsteem %s on just lahti haagitud." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Hoiatus: failisüsteem %s on just haagitud." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -206,7 +206,7 @@ msgstr "" "%s%s muutus %s töö ajal (vana seadme number %ld, uus seadme number %ld, " "failisüsteemi tüüp on %s) [viit %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -215,7 +215,7 @@ msgstr "" "%s%s muutus %s töö ajal (vana i-kirje number %ld, uus i-kirje number %ld, " "failisüsteemi tüüp on %s) [viit %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -224,7 +224,7 @@ msgstr "" "Nimeviide `%s' on osa tsüklist kataloogipuus; me oleme juba külastanad " "kataloogi, millele see viitab." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -233,20 +233,20 @@ msgstr "" "Failisüsteemis on tuvastatud tsükkel; `%s' omab sama seadme ja i-kirje " "numbreid kui kataloog %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "samm kõrgemal failisüsteemi puus" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "sammu kõrgemal failisüsteemi puus" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "hoiatus: ei järgi nimeviidet %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -515,34 +515,34 @@ msgstr "exec() funktsioonile antud keskkond on liiga suur." msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "fork ebaõnnestus" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "viga %s oodates" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s katkestati signaaliga %d" @@ -593,7 +593,7 @@ msgid "" "one." msgstr "vigane avaldis: eeldasin leida sümbolit ')', aga see puudub." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- vigane avaldise tüüp!" @@ -602,53 +602,53 @@ msgstr "oops -- vigane avaldise t msgid "oops -- invalid expression type (%d)!" msgstr "oops -- vigane avaldise tüüp (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- vigane avaldise tüüp mark_stat'is!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- vigane avaldise tüüp mark_type's!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "teed peavad olema enne avaldist: %s" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "vigane predikaat `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "vigane predikaat `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "vigane argument `%s' predikaadil `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "`%s' nõuab argumenti" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "liiga palju ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "ootamatu täiendav predikaat '%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "ootamatu täiendav predikaat" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- vigane konjunktsioonioperaatori lisamine!" diff --git a/po/fi.po b/po/fi.po index 593a1f6..b04f702 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2002-07-10 09:43+03:00\n" "Last-Translator: Matti Koskimies \n" "Language-Team: Finnish \n" @@ -129,112 +129,112 @@ msgstr "^[kKyY]" msgid "^[nN]" msgstr "^[eEnN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Käyttö: %s [polku...] [lauseke]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Käyttö: %s [polku...] [lauseke]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "varoitus: tunnistamaton ohjausmerkki \"\\%c\"" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "työhakemiston nouto ei onnistu" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "työhakemiston nouto ei onnistu" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -472,34 +472,34 @@ msgstr "ymp msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "haarautuminen ei onnistu" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "%s:n odotuksenaikainen virhe" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s keskeytettiin signaalilla %d" @@ -548,7 +548,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "hupsista -- epäkelpo lauseketyyppi!" @@ -557,56 +557,56 @@ msgstr "hupsista -- ep msgid "oops -- invalid expression type (%d)!" msgstr "hupsista -- epäkelpo lauseketyyppi!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "hupsista -- epäkelpo lauseketyyppi!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "hupsista -- epäkelpo lauseketyyppi!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "polkujen täytyy olla ennen lauseketta" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "epäkelpo predikaatti \"%s\"" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "epäkelpo predikaatti \"%s\"" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "\"%s\" on epäkelpo parametri \"%s\":lle" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "\"%s\":n parametri puuttuu" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "epäkelpo lauseke" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "epäkelpo predikaatti \"%s\"" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "hupsista -- epäkelpo \"and\"-operaattorin oletuslisäys" diff --git a/po/findutils.pot b/po/findutils.pot index 5dca21c..da1d26e 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -131,111 +131,111 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "" -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "" -#: find/find.c:211 +#: find/find.c:208 msgid "cannot stat current directory" msgstr "" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -451,34 +451,34 @@ msgstr "" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "" @@ -525,7 +525,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "" @@ -534,53 +534,53 @@ msgstr "" msgid "oops -- invalid expression type (%d)!" msgstr "" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "" -#: find/tree.c:1327 +#: find/tree.c:1328 #, c-format msgid "unknown predicate `%s'" msgstr "" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" diff --git a/po/fr.po b/po/fr.po index 35b0e3d..d44bc3e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-05-23 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -130,46 +130,46 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Usage: %s [-H] [-L] [-P] [CHEMIN...] [EXPRESSION]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Usage: %s [chemin...] [expression]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "AVERTISSEMENT: séquence d'échappement « \\%c » inconnue." -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "chose qui peut affecter la taille de bloc est la variable d'environnement " "POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "Ne peut trouver le répertoire courant" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "Ne peut trouver le répertoire courant" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "AVERTISSEMENT: le système de fichier %s a été récemment démonté." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "AVERTISSEMENT: le système de fichiers %s a été récemment monté." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -206,7 +206,7 @@ msgstr "" "%s%s a été modifié durant l'exécution de %s (ancien no de périphérique %ld, " "nouveau no de périphérique %ld, type du système de fichiers est %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -215,7 +215,7 @@ msgstr "" "%s%s a été modifié durant l'exécution de %s (ancien no d'inode %ld, nouveau " "no d'inode %ld, type du système de fichiers est %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -224,7 +224,7 @@ msgstr "" "Le lien symbolique `%s' fait parti d'une boucle dans la hiérarchie du " "répertoire; le répertoire sur lequel il pointe a déjà été visité." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -233,20 +233,20 @@ msgstr "" "Boucle détecté dans le système de fichiers; `%s' a le même numéro de " "périphérique et d'inode que le répertoie lequel est %d %s" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "plus haut niveau dans la hiérarchie du système de fichiers" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "plus haust niveaux dans la hiérarchie du système de fichiers" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "AVERTISSEMENT: ne lien symbolique ne sera pas suivi %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -530,35 +530,35 @@ msgstr "L'environnement est trop large pour l'ex msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 #, fuzzy msgid "Failed to change directory" msgstr "Ne peut retourner au répertoire de départ." -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "Ne peut faire un clonage (fork)." -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "Erreur s'attendait à %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s a terminé son exécution par le signal %d" @@ -608,7 +608,7 @@ msgid "" "one." msgstr "expression invalide; ')' était attendu mais n'a pas été détecté" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "Le type d'expression est invalide." @@ -617,54 +617,54 @@ msgstr "Le type d'expression est invalide." msgid "oops -- invalid expression type (%d)!" msgstr "oups -- type (%d) de l'expression invalide!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "oups -- type de l'expression est invalide dans mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "oups -- type de l'expression est invalide dans mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "les chemins doivent précéder l'expression" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "prédicat invalide « %s »" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "prédicat invalide « %s »" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Paramètre invalide « %s » pour « %s »" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "Paramètre manquant pour « %s »" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expression invalide; il y a trop de ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "prédicat superflu inattendu" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "prédicat superflu inattendu" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "L'insertion du paramètre par défaut « and » est invalide." diff --git a/po/ga.po b/po/ga.po index 1bd1d58..574a966 100644 --- a/po/ga.po +++ b/po/ga.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-05-22 05:47-0500\n" "Last-Translator: Kevin Patrick Scannell \n" "Language-Team: Irish \n" @@ -132,46 +132,46 @@ msgstr "^[yYiIsS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Úsáid: %s [-H] [-L] [-P] [conair...] [slonn]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Úsáid: %s [conair...] [slonn]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "rabhadh: seicheamh éalúcháin anaithnid `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -179,26 +179,26 @@ msgstr "" "Níl an athróg thimpeallachta FIND_BLOCK_SIZE le fáil, níl aon rud ag dul i " "bhfeidhm ar an méid bloic ach an athróg thimpeallachta POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "níl an chomhadlann reatha ar fáil" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "níl an chomhadlann reatha ar fáil" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Rabhadh: bhí an córas comhaid %s dífheistithe le gairid." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Rabhadh: bhí an córas comhaid %s feistithe le gairid." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -207,7 +207,7 @@ msgstr "" "Athraíodh %s%s le linn rith %s (seanuimhir ghléis %ld, uimhir nua gléis %ld, " "cineál córas comhad %s) [tag %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -216,7 +216,7 @@ msgstr "" "Athraíodh %s%s le linn rith %s (seanuimhir inode %ld, uimhir nua inode %ld, " "cineál córas comhad %s) [tag %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -225,7 +225,7 @@ msgstr "" "Tá an nasc siombalach `%s' cuid de lúb sa chóras chomhadlainne; thugamar " "cuairt cheana ar an gcomhadlann lena bhfuil sé nasctha." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -234,20 +234,20 @@ msgstr "" "Braitheadh lúb sa chóras comhaid; tá an uimhir ghléis agus inode céanna ag `%" "s' agus comhadlann eile atá %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "leibhéal amháin níos airde sa chóras comhaid" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "leibhéal níos airde sa chóras comhaid" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "rabhadh: ní leanfar nasc siombalach %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -528,35 +528,35 @@ msgstr "T msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" # "fork" not in standard refs/corpus. Maybe want a "gabhl*" word instead? -KPS -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ní féidir forc a dhéanamh" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "earráid ag feitheamh le %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "Stopadh %s leis an chomhartha %d" @@ -604,7 +604,7 @@ msgid "" "one." msgstr "slonn neamhbhailí; bhíothas ag súil le ')' áit éigin." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "úps! -- is neamhbhailí an cineál sloinn seo!" @@ -613,54 +613,54 @@ msgstr " msgid "oops -- invalid expression type (%d)!" msgstr "úps! -- cineál neamhbhailí sloinn (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "úps! -- cineál neamhbhailí sloinn i mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "úps! -- cineál neamhbhailí sloinn i mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "caithfidh conairí a theacht roimh an slonn" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "preideacáid neamhbhailí `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "preideacáid neamhbhailí `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argóint neamhbhailí `%s' chun `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "tá argóint de dhíth i ndiaidh na rogha `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "slonn neamhbhailí; an iomarca ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "preideacáid bhreise gan choinne" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "preideacáid bhreise gan choinne" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "úps! -- ionsá neamhbhailí de `and'!" diff --git a/po/gl.po b/po/gl.po index 423f919..236129a 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2000-05-30 10:11+0200\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -134,112 +134,112 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uso: %s [camiño...] [expresión]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uso: %s [camiño...] [expresión]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "aviso: secuencia de escape `\\%c' descoñecida" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "non se pode obte-lo directorio actual" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "non se pode obte-lo directorio actual" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -479,35 +479,35 @@ msgstr "o ambiente msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 #, fuzzy msgid "Failed to change directory" msgstr "non se pode voltar ó directorio inicial" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "non se pode facer fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "erro agardando a %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado por sinal %d" @@ -556,7 +556,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ups -- tipo de expresión no válida" @@ -565,56 +565,56 @@ msgstr "ups -- tipo de expresi msgid "oops -- invalid expression type (%d)!" msgstr "ups -- tipo de expresión no válida" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "ups -- tipo de expresión no válida" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "ups -- tipo de expresión no válida" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "os camiños teñen que preceder á expresión" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predicado `%s' non válido" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predicado `%s' non válido" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento `%s' de `%s' non válido" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "non atopado argumento de `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expresión non válida" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicado `%s' non válido" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "ups -- inserción dun and por defecto non válida" diff --git a/po/hr.po b/po/hr.po index 1abe24d..71bfa3c 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2002-04-22 02:04+02:00\n" "Last-Translator: Hrvoje Niksic \n" "Language-Team: Croatian \n" @@ -129,112 +129,112 @@ msgstr "^[dDyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uporaba: %s [staza...] [izraz]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uporaba: %s [staza...] [izraz]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "upozorenje: nepoznati escape `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "ne mogu saznati trenutni direktorij" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "ne mogu saznati trenutni direktorij" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -473,34 +473,34 @@ msgstr "okoli msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ne mogu se forkati" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "gre¹ka pri èekanju na %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminiran signalom %d" @@ -549,7 +549,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- neispravan tip izraza!" @@ -558,56 +558,56 @@ msgstr "oops -- neispravan tip izraza!" msgid "oops -- invalid expression type (%d)!" msgstr "oops -- neispravan tip izraza!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- neispravan tip izraza!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- neispravan tip izraza!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "staze moraju biti navedene prije izraza" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "neispravan predikat `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "neispravan predikat `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neispravan argument `%s' `%s'-u" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "nedostaje argument `%s'-u" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "neispravan izraz" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "neispravan predikat `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- neispravno podrazumijevano ubacivanje and-a!" diff --git a/po/hu.po b/po/hu.po index ce690b3..7e63009 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-09-11 13:14+0100\n" "Last-Translator: Emese Kovacs \n" "Language-Team: Hungarian \n" @@ -133,46 +133,46 @@ msgstr "^[iIyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Használat: %s [-H] [-L] [-P][útvonal...] [kifejezés]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Használat: %s [útvonal...] [kifejezés]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "figyelmeztetés: ismeretlen escape: \"\\%c\"" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -180,26 +180,26 @@ msgstr "" "A FIND_BLOCK_SIZE környezeti változó nem támogatott, egyedül a " "POSIXLY_CORRECT környezeti változó befolyásolja a blokkméretet." -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "az aktuális könyvtár beolvasása sikertelen" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "az aktuális könyvtár beolvasása sikertelen" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Figyelmeztetés: a(z) \"%s\" fájlrendszer nemrég le lett választva." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Figyelmeztetés: a(z) %s fájlrendszer nemrég csatlakoztatva lett." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -208,7 +208,7 @@ msgstr "" "A(z) %s%s megváltozott a(z) %s végrehajtása során (régi eszközszám: %ld, új " "eszközszám: %ld, a fájlrendszer típusa: %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,7 +217,7 @@ msgstr "" "A(z) %s%s megváltozott a(z) %s végrehajtása során (régi inode szám: %ld, új " "inode szám: %ld, fájlrendszer típusa: %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -226,7 +226,7 @@ msgstr "" "A(z) \"%s\" szimbolikus link egy hurok része a könyvtárhierarchiában; a " "program már bejárta azt a pontot, ahová mutat." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -235,20 +235,20 @@ msgstr "" "A rendszer fájlrendszerhurkot észlelt; a(z) \"%s\" azonos eszközszámmal és " "inode-dal rendelkezik, mint egy könyvtár, amely a(z) %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "szinttel feljebb a fájlrendszer-hierarchiában" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "szinttel feljebb a fájlrendszer-hierarchiában" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "figyelmeztetés: a(z) %s szimbolikus linket a rendszer nem követi" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -526,34 +526,34 @@ msgstr "a környezet túl nagy az exec-hez" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "fork() rendszerhívás sikertelen" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "hiba a következőre várakozás közben: %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s leállítva %d szignállal" @@ -605,7 +605,7 @@ msgid "" msgstr "" "érvénytelen kifejezés; a program egy ) jelre számított, de nem találta meg." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "hoppá -- érvénytelen kifejezéstípus!" @@ -614,54 +614,54 @@ msgstr "hoppá -- érvénytelen kifejezéstípus!" msgid "oops -- invalid expression type (%d)!" msgstr "hoppá -- érvénytelen kifejezéstípus (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "hoppá -- érvénytelen kifejezéstípus a mark_stat-ban!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "hoppá -- érvénytelen kifejezéstípusa mark_type-ban!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "az útvonalaknak meg kell előzniük a kifejezést" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "érvénytelen predikátum: \"%s\"" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "érvénytelen predikátum: \"%s\"" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "A(z) \"%s\" argumentum érvénytelen a következőhöz: %s" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "A(z) \"%s\" argumentuma hiányzik" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "érvénytelen kifejezés; túl sok ) karaktert tartalmaz" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "váratlan extra predikátum" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "váratlan extra predikátum" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "hoppá -- az and alapértelmezett beszúrása érvénytelen!" diff --git a/po/id.po b/po/id.po index 0dd48c6..faf9c6a 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2002-03-21 00:24GMT+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -130,112 +130,112 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Pemakaian: %s [path...] [ekspresi]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Pemakaian: %s [path...] [ekspresi]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "PERINGATAN: escape `\\%c' tidak dikenal" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "tidak dapat mengetahui direktori saat ini" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "tidak dapat mengetahui direktori saat ini" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -470,34 +470,34 @@ msgstr "environment terlalu besar untuk exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "tidak dapat mem-fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "Kesalahan waiting untuk %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s di-terminate oleh sinyal %d" @@ -546,7 +546,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- tipe ekspresi tidak valid!" @@ -555,56 +555,56 @@ msgstr "oops -- tipe ekspresi tidak valid!" msgid "oops -- invalid expression type (%d)!" msgstr "oops -- tipe ekspresi tidak valid!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- tipe ekspresi tidak valid!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- tipe ekspresi tidak valid!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "path harus mendahului ekspresi" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predikat `%s' tidak valid" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predikat `%s' tidak valid" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumen `%s' tidak valid untuk `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "argumen hilang untuk `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ekspresi tidak valid" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predikat `%s' tidak valid" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- penyisipan and baku tidak valid!" diff --git a/po/it.po b/po/it.po index ce8d937..4b1b993 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-12-23 12:44+0100\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -130,46 +130,46 @@ msgstr "^[yYsS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uso: %s [-H] [-L] [-P] [percorso...] [espressione]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uso: %s [percorso...] [espressione]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "attenzione: sequenza di escape `\\%c' non riconosciuta" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "influenza la dimensione dei blocchi è la variabile di ambiente " "POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "impossibile ottenere la directory corrente" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "impossibile ottenere la directory corrente" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Attenzione: il file system %s è stato smontato di recente." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Attenzione: il file system %s è stato montato di recente." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -206,7 +206,7 @@ msgstr "" "%s%s è cambiato durante l'esecuzione di %s (vecchio numero di dispositivo %" "ld, nuovo numero di dispositivo %ld, il filesystem è di tipo %s) [rif. %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -215,7 +215,7 @@ msgstr "" "%s%s è cambiato durante l'esecuzione di %s (vecchio numero di inode %ld, " "nuovo numero di inode %ld, il filesystem è di tipo %s) [rif. %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -224,7 +224,7 @@ msgstr "" "Il link simbolico `%s' è parte di un loop nella gerarchia delle directory; " "la directory a cui punta è già stata visitata." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -233,20 +233,20 @@ msgstr "" "Trovato un loop nel file system; `%s' ha gli stessi numeri di dispositivo e " "di inode di una directory %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "livello più in alto nella gerarchia del file system" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "livelli più in alto nella gerarchia del file system" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -507,34 +507,34 @@ msgstr "l'ambiente msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "impossibile fare fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "errore aspettando %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminato dal segnale %d" @@ -583,7 +583,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- tipo di espressione non valido!" @@ -592,56 +592,56 @@ msgstr "oops -- tipo di espressione non valido!" msgid "oops -- invalid expression type (%d)!" msgstr "oops -- tipo di espressione non valido!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- tipo di espressione non valido!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- tipo di espressione non valido!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "i percorsi devono precedere l'espressione" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "il predicato `%s' non è valido" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "il predicato `%s' non è valido" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "l'argomento `%s' di `%s' non è valido" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "manca l'argomento di `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "espressione non valida" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicato aggiuntivo inatteso" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "predicato aggiuntivo inatteso" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- inserimento predefinito di and non valido!" diff --git a/po/ja.po b/po/ja.po index db8996c..d60b8f6 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2001-11-05 00:45+0900\n" "Last-Translator: GOTO Masanori \n" "Language-Team: Japanese \n" @@ -129,112 +129,112 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "»ÈÍÑË¡: %s [¥Ñ¥¹...] [ɾ²Á¼°]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "»ÈÍÑË¡: %s [¥Ñ¥¹...] [ɾ²Á¼°]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "·Ù¹ð: ǧ¼±¤Ç¤­¤Ê¤¤¥¨¥¹¥±¡¼¥× `\\%c' ¤Ç¤¹" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤¬¼èÆÀ¤Ç¤­¤Þ¤»¤ó" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤¬¼èÆÀ¤Ç¤­¤Þ¤»¤ó" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -471,34 +471,34 @@ msgstr " msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "fork ¤Ç¤­¤Þ¤»¤ó" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "%s ¤Ø¤ÎÂÔ¤Á¤Ç¥¨¥é¡¼" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s ¤Ï¥·¥°¥Ê¥ë %d ¤Ç½ªÎ»" @@ -547,7 +547,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "¤·¤Þ¤Ã¤¿ -- ÉÔÀµ¤Êɾ²Á¼°¥¿¥¤¥×¤À!" @@ -556,56 +556,56 @@ msgstr " msgid "oops -- invalid expression type (%d)!" msgstr "¤·¤Þ¤Ã¤¿ -- ÉÔÀµ¤Êɾ²Á¼°¥¿¥¤¥×¤À!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "¤·¤Þ¤Ã¤¿ -- ÉÔÀµ¤Êɾ²Á¼°¥¿¥¤¥×¤À!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "¤·¤Þ¤Ã¤¿ -- ÉÔÀµ¤Êɾ²Á¼°¥¿¥¤¥×¤À!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "¥Ñ¥¹¤Ïɾ²Á¼°¤ÎÁ°¤Ë¤ª¤«¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ÉÔÀµ¤Ê½Ò¸ì `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ÉÔÀµ¤Ê½Ò¸ì `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ÉÔÀµ¤Ê°ú¿ô `%s' ¤«¤é `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "`%s' ¤Ë°ú¿ô¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ÉÔÀµ¤Êɾ²Á¼°¤Ç¤¹" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "ÉÔÀµ¤Ê½Ò¸ì `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "¤·¤Þ¤Ã¤¿ -- ÉÔÀµ¤Ë AND ¤ò¥Ç¥Õ¥©¥ë¥ÈÁÞÆþ¤·¤Æ¤·¤Þ¤Ã¤¿!" diff --git a/po/ko.po b/po/ko.po index 4fd47d8..e242bd9 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 1996-10-07 22:13+0900\n" "Last-Translator: Bang Jun-Young \n" "Language-Team: Korean \n" @@ -129,113 +129,113 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "»ç¿ë¹ý: %s [°æ·Î...] [¼ö½Ä]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "»ç¿ë¹ý: %s [°æ·Î...] [¼ö½Ä]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "°æ°í: ÀνÄÇÒ ¼ö ¾ø´Â À̽ºÄÉÀÌÇÁ `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 #, fuzzy msgid "cannot get current directory" msgstr "½ÃÀÛ µð·ºÅ丮·Î µ¹¾Æ°¥ ¼ö ¾ø½À´Ï´Ù" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "½ÃÀÛ µð·ºÅ丮·Î µ¹¾Æ°¥ ¼ö ¾ø½À´Ï´Ù" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -464,34 +464,34 @@ msgstr "ȯ msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "%s¸¦ ±â´Ù¸®´Â µµÁß ¿À·ù ¹ß»ý" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s°¡ ½ÅÈ£ %d¿¡ ÀÇÇØ Á¾·áµÊ" @@ -540,7 +540,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "À¹ -- ºÎÀûÀýÇÑ ¼ö½Ä ÇüÀÔ´Ï´Ù!" @@ -549,56 +549,56 @@ msgstr " msgid "oops -- invalid expression type (%d)!" msgstr "À¹ -- ºÎÀûÀýÇÑ ¼ö½Ä ÇüÀÔ´Ï´Ù!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "À¹ -- ºÎÀûÀýÇÑ ¼ö½Ä ÇüÀÔ´Ï´Ù!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "À¹ -- ºÎÀûÀýÇÑ ¼ö½Ä ÇüÀÔ´Ï´Ù!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ºÎÀûÀýÇÑ ¸ðµå `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, fuzzy, c-format msgid "invalid predicate `%s'" msgstr "ºÎÀûÀýÇÑ ¸ðµå `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, fuzzy, c-format msgid "invalid argument `%s' to `%s'" msgstr "-size¿¡ ºÎÀûÀýÇÑ ³Î Àμö°¡ ÁÖ¾îÁü" -#: find/tree.c:1359 +#: find/tree.c:1360 #, fuzzy, c-format msgid "missing argument to `%s'" msgstr "-size¿¡ ºÎÀûÀýÇÑ ³Î Àμö°¡ ÁÖ¾îÁü" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ºÎÀûÀýÇÑ ¼ö½Ä" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "ºÎÀûÀýÇÑ ¸ðµå `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "À¹ -- and¸¦ ³»Á¤Ä¡·Î ºÎÀûÀýÇÏ°Ô »ðÀÔÇß½À´Ï´Ù!" diff --git a/po/lg.po b/po/lg.po index 3b2585a..d15fbc4 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-04-02 18:57GMT\n" "Last-Translator: K.Birabwa \n" "Language-Team: Luganda \n" @@ -131,113 +131,113 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Nkozesa eri: %s [kubo...] [mboozi]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Nkozesa eri: %s [kubo...] [mboozi]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "" "kulabula: akabonero akufuula enneyisa ya bunnaako, `\\%c', tekategeerekese" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "nemedwa okufuna etterekero ekiragiro mwe kiweereddwa" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "nemedwa okufuna etterekero ekiragiro mwe kiweereddwa" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -482,34 +482,34 @@ msgstr "exec esanze nga enviromenti esukkiridde obunene" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ekilagiro ekya sisitemu ekya`fork()' kigaanye" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "wazzewo kiremya nga nnindirira %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "omulimu %s guyimirizidwa ekiragiro %d" @@ -558,7 +558,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- ekika eky'emboozi ekyo tekikola wano!" @@ -567,56 +567,56 @@ msgstr "oops -- ekika eky'emboozi ekyo tekikola wano!" msgid "oops -- invalid expression type (%d)!" msgstr "oops -- ekika eky'emboozi ekyo tekikola wano!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- ekika eky'emboozi ekyo tekikola wano!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- ekika eky'emboozi ekyo tekikola wano!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "sooka okuteekawo amakubo olyoke ozeeko emboozi" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "puledikato `%s' tekola wano" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "puledikato `%s' tekola wano" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "agumenti `%s' tekozesebwa ku` %s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "`%s' ebulako agumenti" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "emboozi tekola wano" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "puledikato `%s' tekola wano" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" "oops -- esonsesewo and! etakolerawo. Enkola eya bulijjo kwe kusonsekawo " diff --git a/po/ms.po b/po/ms.po index 8352ddd..25ad9ea 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2003-01-19 14:42+0800\n" "Last-Translator: Nik Ramadhan Nik Idris \n" "Language-Team: Malay \n" @@ -129,111 +129,111 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "" -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "" -#: find/find.c:211 +#: find/find.c:208 msgid "cannot stat current directory" msgstr "" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -449,34 +449,34 @@ msgstr "" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "ralat menunggu untuk %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "" @@ -523,7 +523,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "" @@ -532,53 +532,53 @@ msgstr "" msgid "oops -- invalid expression type (%d)!" msgstr "" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "" -#: find/tree.c:1327 +#: find/tree.c:1328 #, c-format msgid "unknown predicate `%s'" msgstr "" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "hujah yang salah `%s' kepada `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "kehilangan hujah kepada `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" diff --git a/po/nl.po b/po/nl.po index 53f05b9..71fce50 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-11-08 19:10+0100\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -133,39 +133,39 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Gebruik: %s [-H] [-L] [-P] [-Oniveau] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [pad...] [expressie]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Onbekende debuggingvlag '%s'; genegeerd." -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "Argument van optie '-D' is leeg" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "Direct na optie '-O' dient een decimaal getal te staan" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "Geef een decimaal getal op direct na optie '-O'" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "Ongeldig optimalisatieniveau %s" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -174,7 +174,7 @@ msgstr "" "Optimalisatieniveau %lu is te hoog. Als u bestanden heel vlug wilt vinden, " "gebruik dan 'locate'." -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -182,26 +182,26 @@ msgstr "" "De omgevingsvariabele FIND_BLOCK_SIZE wordt niet ondersteund.\n" "Alleen de omgevingsvariabele POSIXLY_CORRECT beïnvloedt de blokgrootte." -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "kan huidige map niet opvragen" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "kan huidige map niet opvragen" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Waarschuwing: bestandssysteem %s is recent ontkoppeld." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Waarschuwing: bestandssysteem %s is recent aangekoppeld." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -210,7 +210,7 @@ msgstr "" "%s%s is gewijzigd tijdens het uitvoeren van %s (oud apparaatnummer %ld, " "nieuw apparaatnummer %ld, bestandssysteemsoort %s) [regel %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -219,7 +219,7 @@ msgstr "" "%s%s is gewijzigd tijdens het uitvoeren van %s (oud inode-nummer %ld, nieuw " "inode-nummer %ld, bestandssysteemsoort %s) [regel %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -228,7 +228,7 @@ msgstr "" "Symbolische koppeling '%s' is deel van een oneindige lus in de " "mappenhiërarchie: de map waarnaar de koppeling wijst is al bezocht." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -237,20 +237,20 @@ msgstr "" "Oneindige lus in bestandssysteem: '%s' heeft hetzelfde apparaatnummer en " "inode-nummer als een map %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "niveau hoger in de mappenhiërarchie" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "niveaus hoger in de mappenhiërarchie" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "waarschuwing: symbolische koppeling %s wordt niet gevolgd" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -525,34 +525,34 @@ msgstr "Omgeving is te groot voor exec()." msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "kan geen nieuw proces starten" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "fout tijdens wachten op %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s afgebroken door signaal %d" @@ -600,7 +600,7 @@ msgid "" "one." msgstr "ongeldige expressie: ontbrekend ')'" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oeps -- ongeldig expressietype!" @@ -609,53 +609,53 @@ msgstr "oeps -- ongeldig expressietype!" msgid "oops -- invalid expression type (%d)!" msgstr "oeps -- ongeldig expressietype (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "oeps -- ongeldig expressietype in mark_stat()!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "oeps -- ongeldig expressietype in mark_type()!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "padnamen moeten voorafgaan aan expressies (%s)" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ongeldige optie '%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ongeldige optie '%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ongeldig argument '%s' van '%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "ontbrekend argument van '%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "ongeldige expressie: er zijn te veel ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "onverwacht extra ding '%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "onverwacht extra ding" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oeps -- ongeldige standaardtussenvoeging van '-and'!" diff --git a/po/pl.po b/po/pl.po index 7952612..e7668c9 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-11-08 18:01+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -130,39 +130,39 @@ msgstr "^[yYtT]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Sk³adnia: %s [-H] [-L] [-P] [-Opoziom] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [¶cie¿ka...] [wyra¿enie]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Zignorowano nierozpoznan± flagê diagnostyczn± %s" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "Pusty argument dla opcji -D." -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "Bezpo¶rednio po opcji -O musi wyst±piæ liczba dziesiêtna" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "Proszê podaæ liczbê dziesiêtn± bezpo¶rednio po -O" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "B³êdny poziom optymalizacji %s" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -171,7 +171,7 @@ msgstr "" "Poziom optymalizacji %lu jest zbyt du¿y. Aby odnale¼æ pliki bardzo szybko, " "mo¿na u¿yæ GNU locate." -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -179,26 +179,26 @@ msgstr "" "Zmienna ¶rodowiskowa FIND_BLOCK_SIZE nie jest obs³ugiwana; jedyne, co wp³ywa " "na rozmiar bloku, to zmienna ¶rodowiskowa POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "nie mo¿na uzyskaæ bie¿±cego katalogu" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "nie mo¿na uzyskaæ bie¿±cego katalogu" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Uwaga: system plików %s zosta³ niedawno odmontowany." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Uwaga: system plików %s zosta³ niedawno zamontowany." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -207,7 +207,7 @@ msgstr "" "%s%s zmieni³ siê podczas wykonywania %s (stary numer urz±dzenia %ld, nowy " "numer urz±dzenia %ld, typ systemu plików to %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -216,7 +216,7 @@ msgstr "" "%s%s zmieni³ siê podczas wykonywania %s (stary numer i-wêz³a %ld, nowy numer " "i-wêz³a %ld, typ systemu plików %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -225,7 +225,7 @@ msgstr "" "Dowi±zanie symboliczne `%s' jest czê¶ci± pêtli w hierarchii katalogów; " "katalog wskazywany przez to dowi±zanie by³ ju¿ odwiedzony." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -234,20 +234,20 @@ msgstr "" "Wykryto pêtlê w systemie plików; `%s' ma ten sam numer urz±dzenia i i-wêze³ " "jak katalog %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "poziom wy¿ej w hierarchii systemu plików" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "poziomów wy¿ej w hierarchii systemu plików" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "uwaga: nie pod±¿anie za dowi±zaniem symbolicznym %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -523,34 +523,34 @@ msgstr " msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "nie mo¿na wykonaæ fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "b³±d podczas czekania na %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s zakoñczony sygna³em %d" @@ -599,7 +599,7 @@ msgid "" "one." msgstr "b³êdne wyra¿enie; oczekiwano gdzie¶ ')', ale nie znaleziono." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ojej -- b³êdny typ wyra¿enia!" @@ -608,53 +608,53 @@ msgstr "ojej -- b msgid "oops -- invalid expression type (%d)!" msgstr "ojej -- b³êdny typ wyra¿enia (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "ojej -- b³êdny typ wyra¿enia w mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "ojej -- b³êdny typ wyra¿enia w mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "¶cie¿ki musz± poprzedzaæ wyra¿enie: %s" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "b³êdne wyra¿enie `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "b³êdne wyra¿enie `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "b³êdny argument `%s' dla `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "brak argumentu dla `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "za du¿o ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "nieoczekiwane dodatkowe wyra¿enie '%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "nie obs³ugiwane dodatkowe wyra¿enie" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "ojej -- b³êdne domy¶lne wstawienie and!" diff --git a/po/pt.po b/po/pt.po index 06cccd0..fc5e755 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.26\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-11-28 17:34+0000\n" "Last-Translator: Helder Correia \n" "Language-Team: Portuguese \n" @@ -130,46 +130,46 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Utilização: %s [-H] [-L] [-P] [caminho...] [expressão]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Utilização: %s [caminho...] [expressão]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "aviso: escape '\\%c' não reconhecido" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -177,26 +177,26 @@ msgstr "" "A variável de ambiente FIND_BLOCK_SIZE não é suportada, a única coisa que " "afecta o tamanho de bloco é a variável de ambiente POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "não é possível obter a pasta corrente" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "não é possível obter a pasta corrente" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Aviso: o sistema de ficheiros %s foi desmontado recentemente." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Aviso: o sistema de ficheiros %s foi montado recentemente." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -205,7 +205,7 @@ msgstr "" "%s%s alterado durante a execution de %s (número do disposito antigo %ld, " "novo número do disposito %ld, tipo do sistema de ficheiros é %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -214,7 +214,7 @@ msgstr "" "%s%s alterado durante a execução de %s (número 'inode' antigo %ld, novo " "número 'inode' %ld, tipo do sistema de ficheiros é %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -223,7 +223,7 @@ msgstr "" "A ligação simbólica `%s' é parte de um ciclo na hierarquia de pastas; a " "pasta para a qual aponta já foi visitada." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -232,20 +232,20 @@ msgstr "" "Detectado um ciclo no sistema de ficheiros; '%s' tem o mesmo número de " "dispositivo e 'inode' que uma directoria que é %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "nível mais alto na hierarquia do sistema de ficheiros" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "níveis mais alto na hierarquia do sistema de ficheiros" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "aviso: a não seguir a ligação simbólica %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -515,34 +515,34 @@ msgstr "o ambiente é demasiado grande para o exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "não é possível bifurcar (fork)" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "erro ao aguardar por %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado pelo sinal %d" @@ -590,7 +590,7 @@ msgid "" "one." msgstr "expressão inválida; ')' esperado algures mas não encontrado." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ops -- tipo de expressão inválido" @@ -599,54 +599,54 @@ msgstr "ops -- tipo de expressão inválido" msgid "oops -- invalid expression type (%d)!" msgstr "tipo de expressão inválido (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "tipo de expressão inválido em mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "tipo de expressão inválido em mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "os caminhos devem preceder a expressão" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predicado inválido '%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predicado inválido '%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento '%s' inválido para '%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "argumento em falta para '%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expressão inválida; tem demasiados ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicado extra inesperado" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "predicado extra inesperado" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "ops -- inserção por omissão de and inválida!" diff --git a/po/pt_BR.po b/po/pt_BR.po index 77f1b27..91dac85 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-02-08 18:00-0200\n" "Last-Translator: Alexandre Folle de Menezes \n" "Language-Team: Brazilian Portuguese \n" @@ -134,112 +134,112 @@ msgstr "^[sS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uso: %s [caminho...] [expressão]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uso: %s [caminho...] [expressão]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "aviso: controle (escape) não reconhecido `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "não foi possível obter o diretório atual" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "não foi possível obter o diretório atual" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -477,34 +477,34 @@ msgstr "ambiente de execu msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "não consigo duplicar o processo (fork())" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "erro esperando por %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado pelo sinal %d" @@ -553,7 +553,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "oops -- tipo inválido de expressão!" @@ -562,56 +562,56 @@ msgstr "oops -- tipo inv msgid "oops -- invalid expression type (%d)!" msgstr "oops -- tipo inválido de expressão!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "oops -- tipo inválido de expressão!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "oops -- tipo inválido de expressão!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "os caminhos devem preceder a expressão" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predicado inválido `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predicado inválido `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento inválido `%s' para `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "faltando argumento para `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expressão inválida" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicado inválido `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "oops -- inserção padrão de and! inválida" diff --git a/po/ro.po b/po/ro.po index 576b3f7..9175b91 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-08-01 12:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -133,46 +133,46 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Folosire : %s [-H] [-L] [-P] [cale...] [expresie]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Folosire : %s [cale...] [expresie]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "avertisment: escape nerecunoscut `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -180,26 +180,26 @@ msgstr "" "Variabila de mediu FIND_BLOCK_SIZE nu este suportatã, singurul lucru care " "afecteazã dimensiunea blocului esre variabila de mediu POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "nu pot obþine directorul curent" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "nu pot obþine directorul curent" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Avertisment: sistemul de fiºiere %s de fost demontat de curând." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Avertisment: sistemul de fiºiere %s de fost montat de curând." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -208,7 +208,7 @@ msgstr "" "%s%s s-a schimbat în timpul execuþiei lui %s (vechiul nr. dispozitiv %ld, " "noul nr. dispozitiv %ld, tipul sistemului de fiºiere este %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,7 +217,7 @@ msgstr "" "%s%s s-a schimbat în timpul execuþiei lui %s (vechiul nr. inode %ld, noul " "nr. inode %ld, tipul sistemului de fiºiere este %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -226,7 +226,7 @@ msgstr "" "Legãtura simbolicã `%s' este parte a unei bucle în ierarhia de directoare; " "am vizitat deja directorul cãtre care þinteºte." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -235,20 +235,20 @@ msgstr "" "Am detectat o buclã în sistemul de fiºiere; `%s' are acelaºi numãr de " "unitate ºi inode ca ºi un director care este %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "nivel mai înalt în ierarhia sistemului de fiºiere" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "nivele mai înalte în ierarhia sistemului de fiºiere" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "avertisment: nu urmez legãtura simbolicã %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -521,34 +521,34 @@ msgstr "mediul (environment) este prea larg pentru exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "nu pot executa fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "eroare aºteptând pentru %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminat de semnal %d" @@ -598,7 +598,7 @@ msgid "" msgstr "" "expresie invalidã; aºteptam sã gãsesc o ')' pe undeva, dar nu am gãsit-o." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "hopa -- tip expresie invalid!" @@ -607,54 +607,54 @@ msgstr "hopa -- tip expresie invalid!" msgid "oops -- invalid expression type (%d)!" msgstr "hopa -- tip expresie invalid (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "hopa -- tip expresie invalid în mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "hopa -- tip expresie invalid în mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "cãile trebuie specificate înaintea expresiei" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "predicat invalid `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "predicat invalid `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argument invalid `%s' pentru `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "argument lipsã pentru `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "expresie invalidã; aveþi prea multe ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "predicat adiþional neaºteptat" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "predicat adiþional neaºteptat" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "hopa -- inserare implicitã invalidã de and!" diff --git a/po/ru.po b/po/ru.po index 98ae0f4..2dbf27b 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2002-01-07 18:43GMT+06\n" "Last-Translator: Denis Perchine \n" "Language-Team: Russian \n" @@ -130,112 +130,112 @@ msgstr "^[yY msgid "^[nN]" msgstr "^[nNÎî]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ÐÕÔØ...] [×ÙÒÁÖÅÎÉÅ]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ÐÕÔØ...] [×ÙÒÁÖÅÎÉÅ]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÎÅÒÁÓÐÏÚÎÁ×ÁÅÍÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ '\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -472,34 +472,34 @@ msgstr " msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ ÐÒÏÃÅÓÓ" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "ÏÛÉÂËÁ ÏÖÉÄÁÎÉÑ %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s ÐÒÅÒ×ÁÎ ÐÏ ÓÉÇÎÁÌÕ %d" @@ -548,7 +548,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ÏÏÐÓ -- ÎÅ×ÅÒÎÙÊ ÔÉÐ ×ÙÒÁÖÅÎÉÑ!" @@ -557,56 +557,56 @@ msgstr " msgid "oops -- invalid expression type (%d)!" msgstr "ÏÏÐÓ -- ÎÅ×ÅÒÎÙÊ ÔÉÐ ×ÙÒÁÖÅÎÉÑ!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "ÏÏÐÓ -- ÎÅ×ÅÒÎÙÊ ÔÉÐ ×ÙÒÁÖÅÎÉÑ!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "ÏÏÐÓ -- ÎÅ×ÅÒÎÙÊ ÔÉÐ ×ÙÒÁÖÅÎÉÑ!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "ÐÕÔÉ ÄÏÌÖÎÙ ÂÙÔØ ÐÅÒÅÄ ×ÙÒÁÖÅÎÉÅÍ" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ÎÅ×ÅÒÎÙÊ ÐÒÅÄÉËÁÔ `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ÎÅ×ÅÒÎÙÊ ÐÒÅÄÉËÁÔ `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ÎÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ `%s' Õ `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ Õ `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ÎÅ×ÅÒÎÏÅ ×ÙÒÁÖÅÎÉÅ" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "ÎÅ×ÅÒÎÙÊ ÐÒÅÄÉËÁÔ `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "ÏÏÐÓ -- ÎÅ×ÅÒÎÁÑ ×ÓÔÁ×ËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ ÏÐÅÒÁÔÏÒÁ 'é' (and)" diff --git a/po/rw.po b/po/rw.po index ed4f7d7..5a53a08 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -143,73 +143,73 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "H Inzira imvugo" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Inzira imvugo" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Iburira" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 #, fuzzy msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "IMPINDURAGACIRO ni OYA i i Funga Ingano ni i IMPINDURAGACIRO" -#: find/find.c:207 +#: find/find.c:204 #, fuzzy msgid "cannot get current directory" msgstr "Kubona KIGEZWEHO bushyinguro" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "Kubona KIGEZWEHO bushyinguro" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, fuzzy, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -218,7 +218,7 @@ msgstr "" "%s%sByahinduwe Bya ki/ bishaje APAREYE Umubare Gishya APAREYE Umubare Ubwoko " "ni indango" -#: find/find.c:533 +#: find/find.c:531 #, fuzzy, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -226,34 +226,34 @@ msgid "" msgstr "" "%s%sByahinduwe Bya ki/ bishaje Umubare Gishya Umubare Ubwoko ni indango" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -488,34 +488,34 @@ msgstr "ni Binini kugirango" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, fuzzy, c-format msgid "< %s ... %s > ? " msgstr "<%s...%s>CYOSE" -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "" -#: find/pred.c:1838 +#: find/pred.c:1820 #, fuzzy, c-format msgid "error waiting for %s" msgstr "Ikosa Tegereza kugirango" -#: find/pred.c:1846 +#: find/pred.c:1828 #, fuzzy, c-format msgid "%s terminated by signal %d" msgstr "%sku" @@ -568,7 +568,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 #, fuzzy msgid "oops -- invalid expression type!" msgstr "Sibyo imvugo Ubwoko" @@ -578,58 +578,58 @@ msgstr "Sibyo imvugo Ubwoko" msgid "oops -- invalid expression type (%d)!" msgstr "Sibyo imvugo Ubwoko" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "Sibyo imvugo Ubwoko" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "Sibyo imvugo Ubwoko" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "Inzira imvugo" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "Sibyo" -#: find/tree.c:1347 +#: find/tree.c:1348 #, fuzzy, c-format msgid "invalid predicate `%s'" msgstr "Sibyo" -#: find/tree.c:1352 +#: find/tree.c:1353 #, fuzzy, c-format msgid "invalid argument `%s' to `%s'" msgstr "Sibyo Kuri" -#: find/tree.c:1359 +#: find/tree.c:1360 #, fuzzy, c-format msgid "missing argument to `%s'" msgstr "Ibuze Kuri" # sc/source\ui\src\namedlg.src:RID_SCDLG_NAMES.STR_INVALIDSYMBOL.text -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "Imvugo itariyo" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "Birenga" -#: find/tree.c:1441 +#: find/tree.c:1442 #, fuzzy msgid "unexpected extra predicate" msgstr "Birenga" -#: find/tree.c:1551 +#: find/tree.c:1571 #, fuzzy msgid "oops -- invalid default insertion of and!" msgstr "Sibyo Mburabuzi Iyinjizamo Bya Na" diff --git a/po/sk.po b/po/sk.po index 82aa5ba..84b036e 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-08-02 05:56+0200\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" @@ -129,46 +129,46 @@ msgstr "^[yYaAáÁ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Použitie: %s [-H] [-L] [-P] [cesta...] [výraz]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Použitie: %s [cesta...] [výraz]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "upozornenie: nerozlíšený prepínací znak `\\%c'" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -176,26 +176,26 @@ msgstr "" "Premenná prostredia FIND_BLOCK_SIZE je nepodporovaná, jediná vec, ktorá " "ovplyvňuje veľkosť bloku je premenná prostredia POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "nemôžem zistiť aktuálny adresár" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "nemôžem zistiť aktuálny adresár" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Upozornenie: súborový systém %s bol nedávno odpojený." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Upozornenie: súborový systém %s bol nedávno pripojený." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -204,7 +204,7 @@ msgstr "" "%s%s zmenený počas vykonávania %s (staré číslo zariadenia %ld, nové číslo " "zariadenia %ld, typ súborového systému je %s) [odk %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -213,7 +213,7 @@ msgstr "" "%s%s zmenený počas vykonávania %s (staré číslo i-uzla %ld, nové číslo i-uzla " "%ld, typ súborového systému je %s) [odk %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -222,7 +222,7 @@ msgstr "" "Symbolický odkaz `%s' je časťou slučky v hierarchii adresárov; už sme " "navštívili adresár, na ktorý ukazuje." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -231,20 +231,20 @@ msgstr "" "Zdetekovaná slučka na súborovom systéme; `%s' má rovnaké číslo zariadenia a " "i-uzil ako adresár %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "vyššia úroveň v hierarchii súborového systému" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "úrovne nad hierarchiou súborového systému" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "upozornenie: nenasledujem symbolický odkaz %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -517,34 +517,34 @@ msgstr "prostredie je príliš veľké na vykonanie" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "nemôžem vykonať fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "chyba pri čakaní na %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s ukončený signálom %d" @@ -592,7 +592,7 @@ msgid "" "one." msgstr "neplatný výraz; očakával som, že niekde nájdem ')', ale nenašiel som." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "ach -- neplatný typ výrazu!" @@ -601,54 +601,54 @@ msgstr "ach -- neplatný typ výrazu!" msgid "oops -- invalid expression type (%d)!" msgstr "ach -- neplatný typ výrazu (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "ach -- neplatný typ výrazu v mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "ach -- neplatný typ výrazu v mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "cesty musia byť pred výrazom" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "neplatný predikát `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "neplatný predikát `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neplatný parameter `%s' pre `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "chýbajúci parameter pre `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "neplatný výraz; máte príliš veľa ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "neočakávaný predikát navyše" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "neočakávaný predikát navyše" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "chyba -- neplatné implicitné vloženie logického súčinu (and)!" diff --git a/po/sl.po b/po/sl.po index b9aae36..27c0858 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, 2000, 2001, 2005, 2006 Free Software Foundation, Inc. # Primož Peterlin , 2000, 2001, 2005, 2006. -# $Id: sl.po,v 1.52 2007/04/22 22:32:02 jay Exp $ +# $Id: sl.po,v 1.53 2007/04/23 09:17:36 jay Exp $ # msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-09-28 13:49+0200\n" "Last-Translator: Primož Peterlin \n" "Language-Team: Slovenian \n" @@ -130,46 +130,46 @@ msgstr "^[DdJj]" msgid "^[nN]" msgstr "^[Nn]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Uporaba: %s [-H] [-L] [-P] [POT...] [IZRAZ]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Uporaba: %s [POT]... [IZRAZ]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "opozorilo: neprepoznano ubežno zaporedje »\\%c«" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -177,26 +177,26 @@ msgstr "" "Spremenljivka FIND_BLOCK_SIZE ni podprta; na velikost bloka vpliva " "spremenljivka POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "trenutnega imenika ni mogoče ugotoviti" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "trenutnega imenika ni mogoče ugotoviti" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Opozorilo: datotečni sistem %s je bil nedavno odklopljen." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Opozorilo: datotečni sistem %s je bil nedavno priklopljen." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -205,7 +205,7 @@ msgstr "" "%s%s se je spremenila med izvajanjem %s (stara številka enote %ld, nova " "številka enote %ld, vrsta datotečnega sistema %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -214,7 +214,7 @@ msgstr "" "%s%s se je spremenila med izvajanjem %s (stara številka inoda %ld, nova " "številka inoda %ld, vrsta datotečnega sistema %s) [ref %ld]<" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -223,7 +223,7 @@ msgstr "" "Simbolna povezava »%s« je del zanke v drevesu imenikov; imenik, na katerega " "kaže, smo že obiskali." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -232,20 +232,20 @@ msgstr "" "Odkrita zanka v datotečnem sistemu: »%s« ima isto številko enote in inoda " "kot imenik %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "raven višje v datotečni hierarhiji" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "ravni višje v datotečni hierarhiji" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "opozorilo: simbolni povezavi %s ne sledimo" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -519,35 +519,35 @@ msgstr "okolje je preobsežno za klic exec" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 #, fuzzy msgid "Failed to change directory" msgstr "vrnitev v začetni imenik ni možna" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "vejitev ni mogoča" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "napaka pri čakanju na %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s zaključen s signalom %d" @@ -596,7 +596,7 @@ msgid "" "one." msgstr "neveljaven izraz: manjkajoč zaklepaj »)«." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "opla -- neveljaven tip izraza!" @@ -605,54 +605,54 @@ msgstr "opla -- neveljaven tip izraza!" msgid "oops -- invalid expression type (%d)!" msgstr "opla -- neveljaven tip izraza (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "opla -- neveljaven tip izraza v mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "opla -- neveljaven tip izraza v mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "poti morajo biti navedene pred izrazom" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "neveljaven predikat »%s«" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "neveljaven predikat »%s«" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neveljaven argument »%s« za »%s«" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "manjkajoč argument k »%s«" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "neveljaven izraz; preveč zaklepajev »)«" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "nepričakovan dodatni predikat" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "nepričakovan dodatni predikat" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "opla - neveljavno privzeto vstavljanje logičnega ALI!" diff --git a/po/sr.po b/po/sr.po index 2c6a294..c597ae5 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2004-11-24 14:16+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -129,46 +129,46 @@ msgstr "^[yYдДdD]" msgid "^[nN]" msgstr "^[nNнН]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Употреба: %s [-H] [-L] [-P] [путања...] [израз]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Употреба: %s [путања...] [израз]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "упозорење: непознато истицање „\\%c“" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -176,26 +176,26 @@ msgstr "" "Променљива окружења FIND_BLOCK_SIZE није подржана, једина ствар која утиче " "на величину блока је променљива окружења POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "не могу да сазнам текући директоријум" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "не могу да сазнам текући директоријум" -#: find/find.c:390 +#: find/find.c:388 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Систем датотека %s је недавно искључен." -#: find/find.c:400 +#: find/find.c:398 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Систем датотека %s је недавно прикључен." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -204,7 +204,7 @@ msgstr "" "%s%s је измењен при извршавању %s (стари број уређаја %ld, нови број %ld, " "врста система датотека је %s) [реф %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -213,34 +213,34 @@ msgstr "" "%s%s је измењен при извршавању %s (стари број чвора %ld, нови број %ld, " "врста система датотека је %s) [реф %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -493,34 +493,34 @@ msgstr "окружење је превелико за извршење" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "не могу да расцепим" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "грешка при чекању %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s окончан сигналом %d" @@ -569,7 +569,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "упс — неисправна врста израза!" @@ -578,56 +578,56 @@ msgstr "упс — неисправна врста израза!" msgid "oops -- invalid expression type (%d)!" msgstr "упс — неисправна врста израза!" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "упс — неисправна врста израза!" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "упс — неисправна врста израза!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "путање морају претходити изразу" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "неисправан предикат „%s“" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "неисправан предикат „%s“" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "неисправан аргумент „%s“ за „%s“" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "недостаје аргумент за „%s“" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "неисправан израз" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "неочекивани допунски предикат" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "неочекивани допунски предикат" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "упс — неисправно подразумевано уметање „и“!" diff --git a/po/sv.po b/po/sv.po index 4edb093..f4de0a0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-05-23 22:33+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -131,46 +131,46 @@ msgstr "^[jJyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Användning: %s [-H] [-L] [-P] [sökväg...] [uttryck]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Användning: %s [sökväg...] [uttryck]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "varning: okänd kontrollsekvens \"\\%c\"" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -178,26 +178,26 @@ msgstr "" "Miljövariabeln FIND_BLOCK_SIZE stöds inte, det enda som påverkar " "blockstorleken är miljövariabeln POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "kan inte få tag i aktuell katalog" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "kan inte få tag i aktuell katalog" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Varning: filsystemet %s har nyligen avmonterats." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Varning: filsystemet %s har nyligen monterats." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -206,7 +206,7 @@ msgstr "" "%s%s ändrades under exekvering av %s (gammalt enhetsnummer %ld, nytt " "enhetsnummer %ld, filsystemstypen är %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -215,7 +215,7 @@ msgstr "" "%s%s ändrades under exekvering av %s (gammalt inodsnummer %ld, nytt " "inodsnummer %ld, filsystemstypen är %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -225,7 +225,7 @@ msgstr "" "redan besökt katalogen till vilken den pekar." # Osäker på %d %s -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -234,20 +234,20 @@ msgstr "" "Filsystemsloop hittades; \"%s\" har samma enhetsnummer och inod som en " "katalog vilken är %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "nivå högre i filsystemshierarkin" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "nivåer högre i filsystemshierarkin" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "varning: följer inte den symboliska länken %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -523,34 +523,34 @@ msgstr "milj msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "kan inte grena" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "fel vid väntande på %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s avslutades av signal %d" @@ -603,7 +603,7 @@ msgstr "" "ogiltigt uttryck; Jag förväntade mig att hitta ett \")\"-tecken någonstans " "men kunde inte se ett." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "hoppsan -- ogiltig uttryckstyp!" @@ -612,54 +612,54 @@ msgstr "hoppsan -- ogiltig uttryckstyp!" msgid "oops -- invalid expression type (%d)!" msgstr "hoppsan -- ogiltig uttryckstyp (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "hoppsan -- ogiltig uttryckstyp i mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "hoppsan -- ogiltig uttryckstyp i mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "sökvägar måste komma före uttryck" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ogiltigt predikat \"%s\"" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ogiltigt predikat \"%s\"" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ogiltigt argument \"%s\" till \"%s\"" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "argument till \"%s\" saknas" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "ogiltigt uttryck; du har för många \")\"" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "oväntat extra predikat" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "oväntat extra predikat" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "hoppsan -- ogiltig standardinsättning av \"and\"!" diff --git a/po/tr.po b/po/tr.po index 04789b8..dcfaa96 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-11-08 19:40+0200\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -131,39 +131,39 @@ msgstr "^[eE]" msgid "^[nN]" msgstr "^[hH]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Kullanımı: %s [-H] [-L] [-P] [-Oseviye] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [dosyaYolu...] [ifade]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Tanınmayan hata ayıklama seçeneği %s yoksayılıyor" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "-D seçeneğine boş argüman." -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "-O seçeneği ile bir ondalık tamsayı verilmelidir" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "-O'nun ardına lütfen bir ondalık sayı yazın" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "En iyileme seviyesi %s geçersiz" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -172,7 +172,7 @@ msgstr "" "En iyileme seviyesi %lu çok büyük. Dosyaları çabucak bulmak istiyorsanız, " "GNU locate kullanmayı düşünebilirsiniz" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -180,26 +180,26 @@ msgstr "" "FIND_BLOCK_SIZE ortam değişkeni destekenmiyor, blok boyunu etkileyen tek şey " "POSIXLY_CORRECT ortam değişkenidir" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "çalışılan dizin alınamadı" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "çalışılan dizin alınamadı" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Uyarı: %s dosya sistemi zaten ayrılmıştı." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Uyarı: %s dosya sistemi zaten bağlanmıştı." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -208,7 +208,7 @@ msgstr "" "%s%s, %s yürütülürken değişti (eski aygıt numarası: %ld, yeni aygıt " "numarası: %ld, dosya sistemi türü: %s) [ref %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,7 +217,7 @@ msgstr "" "%s%s, %s yürütülürken değişti (eski dosya indisi: %ld, yeni dosya indisi: %" "ld, dosya sistemi türü: %s) [ref %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -226,7 +226,7 @@ msgstr "" "`%s' sembolik bağı dizin hiyerarşisinde bir döngünün parçası ve gösterdiği " "dizini zaten ziyaret etmiştik." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -235,20 +235,20 @@ msgstr "" "Dosya sisteminde döngü saptandı; `%s', %d %s deki bir dizin gibi aynı aygıt " "ve düğüm numarasına sahip." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "seviye, dosya sistemi hiyerarşisinde daha yüksek" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "seviyeler, dosya sistemi hiyerarşisinde daha yüksek" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "uyarı: %s sembolik bağı izlenemiyor" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -527,34 +527,34 @@ msgstr "exec() için ortam çok geniş." msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ayrılamaz" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "%s beklenirken hata oluştu" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s, %d sinyali ile sonlandırıldı" @@ -605,7 +605,7 @@ msgid "" "one." msgstr "geçersiz ifade; bir ')' olmalıydı ama hiç yok." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "hooop -- geçersiz ifade türü!" @@ -614,53 +614,53 @@ msgstr "hooop -- geçersiz ifade türü!" msgid "oops -- invalid expression type (%d)!" msgstr "hooop -- geçersiz ifade türü (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "hooop -- mark_stat'ta geçersiz ifade türü!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "hooop -- mark_type'ta geçersiz ifade türü!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "dosya yolları ifadeyi öncelemelidir: %s" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "geçersiz dayanak `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "geçersiz dayanak `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "`%s' argümanı `%s'de geçersiz" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "`%s'de argüman eksik" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "çok fazla ')' var" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "umulmayan ek dayanak '%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "umulmayan ek dayanak" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "Hoop -- öntanımlı `and' yerleştirme geçersiz!" diff --git a/po/uk.po b/po/uk.po index c25b7e0..6d4b92e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.3.2\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2007-01-03 13:55+0300\n" "Last-Translator: Maxim V. Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -130,39 +130,39 @@ msgstr "^[yYтТ]" msgid "^[nN]" msgstr "^[nNнН]" -#: find/util.c:160 +#: find/util.c:161 #, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Використання: %s [-H] [-L] [-P] [-Oрівень] [-D " -#: find/util.c:162 +#: find/util.c:163 #, c-format msgid "] [path...] [expression]\n" msgstr "] [шлях...] [вираз]\n" -#: find/util.c:632 +#: find/util.c:634 #, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "Невідома ознака налагодження %s проігнорована" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "Не вказаний аргумент ключа -D" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "За ключем -O одразу має йти десяткове ціле число" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "Вкажіть десяткове ціле число після ключа -O" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "Некоректний рівень оптимізації %s" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " @@ -171,7 +171,7 @@ msgstr "" "Рівень оптимізації %lu надто високий. Якщо треба дуже швидко шукати файли, " "скористайтесь GNU locate." -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -179,26 +179,26 @@ msgstr "" "Змінна оточення FIND_BLOCK_SIZE не підтримується, на розмір блоку впливає " "лише змінна оточення POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "не вдається отримати поточний каталог" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "не вдається отримати поточний каталог" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Попередження: файлову систему %s відключено." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Попередження: файлову систему %s підключено." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -207,7 +207,7 @@ msgstr "" "%s%s змінено під час виконання %s (старий номер пристрою %ld, новий номер " "пристрою %ld, файлова система %s) [посилань %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -216,7 +216,7 @@ msgstr "" "%s%s змінено під час виконання %s (старий inode %ld, новий inode %ld, " "файлова система %s) [посилань %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -225,7 +225,7 @@ msgstr "" "Символічне посилання `%s' є частиною циклу в ієрархії каталогів; у каталозі " "на який воно вказує, пошук вже відбувався." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -234,20 +234,20 @@ msgstr "" "Зациклення у файловій системі; `%s' має той самий номер пристрою та inode, " "що й каталог, який %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "рівнем вище у ієрархії файлової системи" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "рівнями вище у ієрархії файлової системи" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "попередження: не відбувся перехід за символічним посиланням %s" -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -522,34 +522,34 @@ msgstr "Оточення надто велике для виконання." msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "не вдається створити процес" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "помилка очікування %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s перерваний сигналом %d" @@ -600,7 +600,7 @@ msgid "" "one." msgstr "неправильний вираз: очікувався символ ')', але він не знайдений." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "оопс -- неправильний тип виразу!" @@ -609,53 +609,53 @@ msgstr "оопс -- неправильний тип виразу!" msgid "oops -- invalid expression type (%d)!" msgstr "оопс -- неправильний тип виразу (%d)!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "оопс -- неправильний тип виразу у mark_stat!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "оопс -- неправильний тип виразу у mark_type!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, c-format msgid "paths must precede expression: %s" msgstr "шляхи треба вказувати перед виразом: %s" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "неправильний ключ `%s'" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "неправильний ключ `%s'" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "неправильний аргумент `%s' у `%s'" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "відсутній аргумент у `%s'" -#: find/tree.c:1434 +#: find/tree.c:1435 msgid "you have too many ')'" msgstr "надто багато символів ')'" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "неочікуваний зайвий ключ `%s'" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "неочікуваний зайвий ключ" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "оопс -- помилкова типова вставка оператора 'ТА' (and)" diff --git a/po/vi.po b/po/vi.po index 4614f26..1938be1 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.27\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2006-07-11 22:58+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -132,46 +132,46 @@ msgstr "^[cC]" msgid "^[nN]" msgstr "^[kK]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Cách sử dụng: %s [-H] [-L] [-P] [đường_dẫn...] [biểu_thức]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Cách sử dụng: %s [đường_dẫn...] [biểu_thức]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "cảnh báo : không nhận diện ký tự thoát « \\%c »" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -180,26 +180,26 @@ msgstr "" "chỉ một điều làm ảnh hướng đến kích cỡ của khối: biến môi trường « " "POSIXLY_CORRECT » (đúng kiểu Posix)" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "không thể lấy thư mục hiện có" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "không thể lấy thư mục hiện có" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Cảnh báo : hệ thống tập tin %s vừa bị tháo gắn kết." -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Cảnh báo : hệ thống tập tin « %s » vừa được gắn kết." -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -208,7 +208,7 @@ msgstr "" "%s%s đã thay đổi trong khi thì hành %s (số hiệu thiết bị cũ %ld, số thiết bị " "mới « %ld », kiểu hệ thống tập tin là %s) [nhắc %ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,7 +217,7 @@ msgstr "" "%s%s đã thay đổi trong khi thì hành %s (số hiệu inode cũ %ld, số inode mới %" "ld, kiểu hệ thống tập tin là %s) [nhắc %ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -226,7 +226,7 @@ msgstr "" "Liên kết tượng trưng « %s » là một phần của vòng lặp trong tôn ti thư mục " "này; đã thăm thư mục đến đó nó hướng." -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -235,20 +235,20 @@ msgstr "" "Mới phát hiện vòng lặp hệ thống tập tin; « %s » có cùng một số hiệu thiết bị " "và inode với một thư mục nào đó, mà là %d %s." -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "cấp cao hơn trong tôn ti hệ thống tập tin" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "cấp cao hơn trong tôn ti hệ thống tập tin" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "cảnh báo : không đi theo liên kết tượng trưng %s." -#: find/find.c:1402 +#: find/find.c:1400 #, fuzzy, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -583,34 +583,34 @@ msgstr "môi trường quá lớn đối với « exec » (thì hành)" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "không thể tạo tiến trình con" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "gặp lỗi khi đời %s" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s bị chấm dứt bởi tín hiệu %d" @@ -660,7 +660,7 @@ msgid "" "one." msgstr "biểu thức không hợp lệ; ngờ ký tự « ) » nhưng chưa gặp." -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "rõ tiếc — kiểu biểu thức không hợp lệ." @@ -669,54 +669,54 @@ msgstr "rõ tiếc — kiểu biểu thức không hợp lệ." msgid "oops -- invalid expression type (%d)!" msgstr "rõ tiếc — kiểu biểu thức không hợp lệ (%d)." -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "rõ tiếc — kiểu biểu thức không hợp lệ trong « mark_stat »." -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "rõ tiếc — kiểu biểu thức không hợp lệ trong « mark_type »." -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "đương dẫn phải nằm trước biểu thức" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "vị ngữ không hợp lệ « %s »" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "vị ngữ không hợp lệ « %s »" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "đối số « %s » không hợp lệ đối với « %s »" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "thiếu đối số đối với « %s »" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "biểu thức không hợp lệ; có quá nhiều ký tự « ) »" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "gặp vị ngữ thêm bất ngờ" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "gặp vị ngữ thêm bất ngờ" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "rỗ tiếc — việc chèn mặc định điều « and » một cách không hợp lệ." diff --git a/po/zh_CN.po b/po/zh_CN.po index e799c5e..8ae7215 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: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2002-09-03 14:29+0800\n" "Last-Translator: Wang Li \n" "Language-Team: Chinese (simplified) \n" @@ -129,112 +129,112 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "Ó÷¨£º%s [·¾¶...] [±í´ïʽ]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "Ó÷¨£º%s [·¾¶...] [±í´ïʽ]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "¾´¸æ£ºÎÞ·¨Ê¶±ðµÄתÒå×Ö·û¡°\\%c¡±" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" msgstr "" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "ÎÞ·¨»ñÈ¡µ±Ç°Ä¿Â¼" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "ÎÞ·¨»ñÈ¡µ±Ç°Ä¿Â¼" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" "ld, filesystem type is %s) [ref %ld]" msgstr "" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -472,34 +472,34 @@ msgstr " msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "ÎÞ·¨ fork" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "µÈ´ý %s ʱ³ö´í" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s ÓÉÓÚÐźŠ%d ¶øÖÕÖ¹" @@ -548,7 +548,7 @@ msgid "" "one." msgstr "" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "°¥Ñ½ -- ÎÞЧµÄ±í´ïʽÀàÐÍ£¡" @@ -557,56 +557,56 @@ msgstr " msgid "oops -- invalid expression type (%d)!" msgstr "°¥Ñ½ -- ÎÞЧµÄ±í´ïʽÀàÐÍ£¡" -#: find/tree.c:941 +#: find/tree.c:943 #, fuzzy msgid "oops -- invalid expression type in mark_stat!" msgstr "°¥Ñ½ -- ÎÞЧµÄ±í´ïʽÀàÐÍ£¡" -#: find/tree.c:977 +#: find/tree.c:979 #, fuzzy msgid "oops -- invalid expression type in mark_type!" msgstr "°¥Ñ½ -- ÎÞЧµÄ±í´ïʽÀàÐÍ£¡" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "·¾¶±ØÐëÔÚ±í´ïʽ֮ǰ" -#: find/tree.c:1327 +#: find/tree.c:1328 #, fuzzy, c-format msgid "unknown predicate `%s'" msgstr "ÎÞЧ¶ÏÑÔ¡°%s¡±" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "ÎÞЧ¶ÏÑÔ¡°%s¡±" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "¡°%2$s¡±µÄÎÞЧ²ÎÊý¡°%1$s¡±" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "ÒÅ©¡°%s¡±µÄ²ÎÊý" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "·Ç·¨±í´ïʽ" -#: find/tree.c:1439 +#: find/tree.c:1440 #, fuzzy, c-format msgid "unexpected extra predicate '%s'" msgstr "ÎÞЧ¶ÏÑÔ¡°%s¡±" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 67474f1..d53999f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.26\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2007-04-22 23:20+0100\n" +"POT-Creation-Date: 2007-04-23 10:11+0100\n" "PO-Revision-Date: 2005-12-06 11:30+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -129,46 +129,46 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:160 +#: find/util.c:161 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [-Olevel] [-D " msgstr "用法: %s [-H] [-L] [-P] [路徑...] [表達式]\n" -#: find/util.c:162 +#: find/util.c:163 #, fuzzy, c-format msgid "] [path...] [expression]\n" msgstr "用法:%s [路徑...] [表達式]\n" -#: find/util.c:632 +#: find/util.c:634 #, fuzzy, c-format msgid "Ignoring unrecognised debug flag %s" msgstr "警告:無效辨認轉義控制序列 (escape sequence) ‘\\%c’" -#: find/util.c:639 +#: find/util.c:641 msgid "Empty argument to the -D option." msgstr "" -#: find/util.c:653 +#: find/util.c:655 msgid "The -O option must be immediately followed by a decimal integer" msgstr "" -#: find/util.c:662 find/util.c:672 +#: find/util.c:664 find/util.c:674 msgid "Please specify a decimal number immediately after -O" msgstr "" -#: find/util.c:677 find/util.c:681 +#: find/util.c:679 find/util.c:683 #, c-format msgid "Invalid optimisation level %s" msgstr "" -#: find/util.c:688 +#: find/util.c:690 #, c-format msgid "" "Optimisation level %lu is too high. If you want to find files very quickly, " "consider using GNU locate." msgstr "" -#: find/util.c:819 +#: find/util.c:821 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -176,26 +176,26 @@ msgstr "" "環境變數 FIND_BLOCK_SIZE 已經不再支援,唯一一個能夠影響檔案區段大小的環境變數" "是 POSIXLY_CORRECT" -#: find/find.c:207 +#: find/find.c:204 msgid "cannot get current directory" msgstr "無法決定當前目錄位置" -#: find/find.c:211 +#: find/find.c:208 #, fuzzy msgid "cannot stat current directory" msgstr "無法決定當前目錄位置" -#: find/find.c:390 +#: find/find.c:388 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "警告︰檔案系統 %s 剛剛被卸載。" -#: find/find.c:400 +#: find/find.c:398 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "警告︰檔案系統 %s 剛剛被掛載。" -#: find/find.c:496 +#: find/find.c:494 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -204,7 +204,7 @@ msgstr "" "執行 %3$s 時 %1$s%2$s 有所更改 (舊裝置編號為 %4$ld,新裝置編號為 %5$ld,檔案" "系統類型為 %6$s) [ref %7$ld]" -#: find/find.c:533 +#: find/find.c:531 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -213,34 +213,34 @@ msgstr "" "執行 %3$s 時 %1$s%2$s 有所更改 (舊 inode 編號為 %4$ld,新 inode 編號為 %5" "$ld,檔案系統類型為 %6$s) [ref %7$ld]" -#: find/find.c:1094 +#: find/find.c:1092 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " "already visited the directory to which it points." msgstr "" -#: find/find.c:1109 +#: find/find.c:1107 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " "directory which is %d %s." msgstr "" -#: find/find.c:1113 +#: find/find.c:1111 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1114 +#: find/find.c:1112 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1358 +#: find/find.c:1356 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1402 +#: find/find.c:1400 #, c-format msgid "" "WARNING: Hard link count is wrong for %s (saw only st_nlink=%d but we " @@ -495,34 +495,34 @@ msgstr "執行 exec 時的環境變數太大" msgid "arithmetic overflow when trying to calculate the end of today" msgstr "" -#: find/pred.c:1235 +#: find/pred.c:1221 #, c-format msgid "Warning: cannot determine birth time of file `%s'" msgstr "" -#: find/pred.c:1297 +#: find/pred.c:1283 #, c-format msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1738 +#: find/pred.c:1720 msgid "Cannot close standard input" msgstr "" -#: find/pred.c:1773 +#: find/pred.c:1755 msgid "Failed to change directory" msgstr "" -#: find/pred.c:1814 xargs/xargs.c:1074 +#: find/pred.c:1796 xargs/xargs.c:1074 msgid "cannot fork" msgstr "fork 失敗" -#: find/pred.c:1838 +#: find/pred.c:1820 #, c-format msgid "error waiting for %s" msgstr "等待 %s 時出現錯誤" -#: find/pred.c:1846 +#: find/pred.c:1828 #, c-format msgid "%s terminated by signal %d" msgstr "%s 因訊號 %d 而終止" @@ -570,7 +570,7 @@ msgid "" "one." msgstr "表達式無效;‘)’ 本應出現但實際上沒有" -#: find/tree.c:157 find/tree.c:811 +#: find/tree.c:157 find/tree.c:813 msgid "oops -- invalid expression type!" msgstr "表達式類型無效!" @@ -579,54 +579,54 @@ msgstr "表達式類型無效!" msgid "oops -- invalid expression type (%d)!" msgstr "表達式類型 (%d) 無效!" -#: find/tree.c:941 +#: find/tree.c:943 msgid "oops -- invalid expression type in mark_stat!" msgstr "mark_stat 中的表達式類型無效!" -#: find/tree.c:977 +#: find/tree.c:979 msgid "oops -- invalid expression type in mark_type!" msgstr "mark_type 中的表達式類型無效!" -#: find/tree.c:1318 +#: find/tree.c:1319 #, fuzzy, c-format msgid "paths must precede expression: %s" msgstr "路徑必須放在表達式之前" -#: find/tree.c:1327 +#: find/tree.c:1328 #, c-format msgid "unknown predicate `%s'" msgstr "" -#: find/tree.c:1347 +#: find/tree.c:1348 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/tree.c:1352 +#: find/tree.c:1353 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "‘%2$s’ 的參數 ‘%1$s’ 無效" -#: find/tree.c:1359 +#: find/tree.c:1360 #, c-format msgid "missing argument to `%s'" msgstr "‘%s’ 後缺少了參數" -#: find/tree.c:1434 +#: find/tree.c:1435 #, fuzzy msgid "you have too many ')'" msgstr "表達式無效;出現太多的 ‘)’" -#: find/tree.c:1439 +#: find/tree.c:1440 #, c-format msgid "unexpected extra predicate '%s'" msgstr "" -#: find/tree.c:1441 +#: find/tree.c:1442 msgid "unexpected extra predicate" msgstr "" -#: find/tree.c:1551 +#: find/tree.c:1571 msgid "oops -- invalid default insertion of and!" msgstr "" -- 2.11.4.GIT