From 1260fbd761da239cbc1cf19df3525e8a8719181f Mon Sep 17 00:00:00 2001 From: James Youngman Date: Tue, 22 Nov 2005 08:01:31 +0000 Subject: [PATCH] Implemented the tests -readable, -writable and -executable --- NEWS | 5 +- configure.in | 2 +- doc/find.texi | 41 +++++++++++++ find/defs.h | 3 + find/find.1 | 17 ++++++ find/parser.c | 37 ++++++++++++ find/pred.c | 19 ++++++ find/testsuite/Makefile.am | 2 + find/testsuite/find.gnu/access.exp | 13 +++++ find/testsuite/find.gnu/access.xo | 11 ++++ po/be.po | 93 ++++++++++++++--------------- po/ca.po | 94 +++++++++++++++--------------- po/da.po | 94 +++++++++++++++--------------- po/de.po | 93 ++++++++++++++--------------- po/el.po | 93 ++++++++++++++--------------- po/eo.po | 93 ++++++++++++++--------------- po/es.po | 93 ++++++++++++++--------------- po/et.po | 94 +++++++++++++++--------------- po/fi.po | 93 ++++++++++++++--------------- po/findutils.pot | 93 ++++++++++++++--------------- po/fr.po | 94 +++++++++++++++--------------- po/ga.po | 94 +++++++++++++++--------------- po/gl.po | 93 ++++++++++++++--------------- po/hr.po | 93 ++++++++++++++--------------- po/hu.po | 93 ++++++++++++++--------------- po/id.po | 93 ++++++++++++++--------------- po/it.po | 93 ++++++++++++++--------------- po/ja.po | 93 ++++++++++++++--------------- po/ko.po | 93 ++++++++++++++--------------- po/lg.po | 93 ++++++++++++++--------------- po/ms.po | 93 ++++++++++++++--------------- po/nl.po | 94 +++++++++++++++--------------- po/pl.po | 94 +++++++++++++++--------------- po/pt.po | 94 +++++++++++++++--------------- po/pt_BR.po | 93 ++++++++++++++--------------- po/ro.po | 94 +++++++++++++++--------------- po/ru.po | 93 ++++++++++++++--------------- po/rw.po | 93 ++++++++++++++--------------- po/sk.po | 94 +++++++++++++++--------------- po/sl.po | 94 +++++++++++++++--------------- po/sr.po | 93 ++++++++++++++--------------- po/sv.po | 93 ++++++++++++++--------------- po/tr.po | 94 +++++++++++++++--------------- po/vi.po | 94 +++++++++++++++--------------- po/zh_CN.po | 93 ++++++++++++++--------------- po/zh_TW.po | 93 ++++++++++++++--------------- 46 files changed, 1853 insertions(+), 1658 deletions(-) create mode 100644 find/testsuite/find.gnu/access.exp create mode 100644 find/testsuite/find.gnu/access.xo diff --git a/NEWS b/NEWS index fd03d8b9..ad64675e 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,5 @@ GNU findutils NEWS - User visible changes. -*- outline -*- (allout) -* Major changes in release 4.3.0 +* Major changes in release 4.3.0-CVS ** Functional Changes @@ -8,6 +8,9 @@ system, which means that it can search deeper directory hierarchies. You can go back to the old filesystem search implementation by using the configure option '--without-fts'. +New tests, -readable, -writable, -executable. These check that a file +can be read, written or executed respectively. + * Major changes in release 4.2.26 ** Public Service Announcements diff --git a/configure.in b/configure.in index d77bbd2c..c5bd7fda 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR(gnulib/m4) dnl Set of available languages. -ALL_LINGUAS="be ca da de el eo es et fi fr ga gl hr hu id it ja ko lg ms nl pl pt pt_BR ro ru sk sl sr sv tr vi zh_CN rw" +ALL_LINGUAS="be ca da de el eo es et fi fr ga gl hr hu id it ja ko lg ms nl pl pt pt_BR ro ru sk sl sr sv tr vi zh_CN zh_TW rw" AC_SUBST(INCLUDES)dnl diff --git a/doc/find.texi b/doc/find.texi index d019f04e..a455344c 100644 --- a/doc/find.texi +++ b/doc/find.texi @@ -971,6 +971,47 @@ program. @xref{File Permissions}, for information on how file permissions are structured and how to specify them. +Four tests determine what users can do with files. These are +@samp{-readable}, @samp{-writable}, @samp{-executable} and +@samp{-perm}. The first three tests ask the operating system if the +current user can perform the relevant operation on a file, while +@samp{-perm} just examines the file's mode. The file mode may give +a misleading impression of what the user can actually do, because the +file may have an access control list, or exist on a read-only +filesystem, for example. Of these four tests though, only +@samp{-perm} is specified by the POSIX standard. + +The @samp{-readable}, @samp{-writable} and @samp{-executable} tests +are implemented via the @code{access} system call. This is +implemented within the operating system itself. If the file being +considered is on an NFS filesystem, the remote system may allow or +forbid read or write operations for reasons of which the NFS client +cannot take account. This includes user-ID mapping, either in the +general sense or the more restricted sense in which remote superusers +are treated by the NFS server as if they are the local user +@samp{nobody} on the NFS server. + +None of the tests in this section should be used to verify that a user +is authorised to perform any operation (on the file being tested or +any other file) because of the possibility of a race condition. That +is, the situation may change between the test and an action being +taken on the basis of the result of that test. + + +@deffn Test -readable +True if the file can be read by the invoking user. +@end deffn + +@deffn Test -writable +True if the file can be written by the invoking user. This is an +in-principle check, and other things may prevent a successful write +operation; for example, the filesystem might be full. +@end deffn + +@deffn Test -executable +True if the file can be executed by the invoking user. +@end deffn + @deffn Test -perm mode True if the file's permissions are exactly @var{mode}, which can be diff --git a/find/defs.h b/find/defs.h index 92dfa1af..a00eb8cf 100644 --- a/find/defs.h +++ b/find/defs.h @@ -443,6 +443,7 @@ boolean pred_delete PARAMS((char *pathname, struct stat *stat_buf, struct predic boolean pred_empty PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_exec PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_execdir PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); +boolean pred_executable PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_false PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_fls PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_fprint PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); @@ -475,6 +476,7 @@ boolean pred_print PARAMS((char *pathname, struct stat *stat_buf, struct predica boolean pred_print0 PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_prune PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_quit PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); +boolean pred_readable PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_regex PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_samefile PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_size PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); @@ -483,6 +485,7 @@ boolean pred_type PARAMS((char *pathname, struct stat *stat_buf, struct predicat boolean pred_uid PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_used PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_user PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); +boolean pred_writable PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); boolean pred_xtype PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr)); diff --git a/find/find.1 b/find/find.1 index 89c6154c..13e6dab4 100644 --- a/find/find.1 +++ b/find/find.1 @@ -198,6 +198,17 @@ than the directory's link count, it knows that the rest of the entries in the directory are non-directories (`leaf' files in the directory tree). If only the files' names need to be examined, there is no need to stat them; this gives a significant increase in search speed. +.IP "\-readable, \-writable, \-executable" +Matches files which are readable, writable and executable, +respectively. This takes into account access control lists and other +permissions artefacts which the \-perm test ignores. This test makes +use of the +.BR access (2) +system call, and so can be fooled by NFS servers which do UID +mapping (or root-squashing), since many systems implement +.BR access (2) +in the client's kernel and so cannot make use of the UID mapping +information held on the server. .IP "\-regextype \fItype\fR" Changes the regular expression syntax understood by .B \-regex @@ -1108,6 +1119,12 @@ remainder is discarded. That means that to match a file will have to have a modification in the past which is less than 24 hours ago. +.P +.nf +.B find /sbin /usr/sbin -executable \e! -readable \-print + +.fi +Search for files which are executable but not readable. .P .nf diff --git a/find/parser.c b/find/parser.c index 889d4370..9f0fb74f 100644 --- a/find/parser.c +++ b/find/parser.c @@ -92,6 +92,7 @@ static boolean parse_depth PARAMS((const struct parser_table*, char *arg static boolean parse_empty PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_exec PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_execdir PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); +static boolean parse_executable PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_false PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_fls PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_fprintf PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); @@ -130,6 +131,7 @@ static boolean parse_perm PARAMS((const struct parser_table*, char *arg static boolean parse_print0 PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_printf PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_prune PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); +static boolean parse_readable PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_regex PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_regextype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_samefile PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); @@ -145,6 +147,7 @@ static boolean parse_xdev PARAMS((const struct parser_table*, char *arg static boolean parse_ignore_race PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_noignore_race PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_warn PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); +static boolean parse_writable PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_xtype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_quit PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); @@ -223,6 +226,7 @@ static struct parser_table const parse_table[] = PARSE_OPTION ("depth", depth), PARSE_TEST ("empty", empty), /* GNU */ PARSE_ACTION ("exec", exec), + PARSE_TEST ("executable", executable), /* GNU, 4.3.0+ */ PARSE_ACTION ("execdir", execdir), /* *BSD, GNU */ PARSE_ACTION ("fls", fls), /* GNU */ PARSE_POSOPT ("follow", follow), /* GNU, Unix */ @@ -268,6 +272,7 @@ static struct parser_table const parse_table[] = PARSE_ACTION_NP ("printf", printf), /* GNU */ PARSE_ACTION ("prune", prune), PARSE_ACTION ("quit", quit), /* GNU */ + PARSE_TEST ("readable", readable), /* GNU, 4.3.0+ */ PARSE_TEST ("regex", regex), /* GNU */ PARSE_OPTION ("regextype", regextype), /* GNU */ PARSE_TEST ("samefile", samefile), /* GNU */ @@ -278,6 +283,7 @@ static struct parser_table const parse_table[] = PARSE_TEST ("user", user), PARSE_OPTION ("warn", warn), /* GNU */ PARSE_TEST_NP ("wholename", wholename), /* GNU, replaces -path */ + PARSE_TEST ("writable", writable), /* GNU, 4.3.0+ */ PARSE_OPTION ("xdev", xdev), PARSE_TEST ("xtype", xtype), /* GNU */ #ifdef UNIMPLEMENTED_UNIX @@ -835,6 +841,7 @@ tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n\ -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE")); puts (_("\ -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n\ + -readable -writable -executable\n\ -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n\ -used N -user NAME -xtype [bcdpfls]\n")); puts (_("\ @@ -1636,6 +1643,36 @@ parse_true (const struct parser_table* entry, char **argv, int *arg_ptr) return true; } +static boolean +insert_accesscheck (const struct parser_table* entry, char **argv, int *arg_ptr) +{ + struct predicate *our_pred; + (void) argv; + (void) 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; + return true; +} + +static boolean +parse_executable (const struct parser_table* entry, char **argv, int *arg_ptr) +{ + return insert_accesscheck(entry, argv, arg_ptr); +} + +static boolean +parse_readable (const struct parser_table* entry, char **argv, int *arg_ptr) +{ + return insert_accesscheck(entry, argv, arg_ptr); +} + +static boolean +parse_writable (const struct parser_table* entry, char **argv, int *arg_ptr) +{ + return insert_accesscheck(entry, argv, arg_ptr); +} + static boolean parse_type (const struct parser_table* entry, char **argv, int *arg_ptr) { diff --git a/find/pred.c b/find/pred.c index ec8e94a9..6c391bbe 100644 --- a/find/pred.c +++ b/find/pred.c @@ -1244,6 +1244,25 @@ pred_perm (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) } } + +boolean +pred_executable (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) +{ + return 0 == access(state.rel_pathname, X_OK); +} + +boolean +pred_readable (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) +{ + return 0 == access(state.rel_pathname, R_OK); +} + +boolean +pred_writable (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) +{ + return 0 == access(state.rel_pathname, W_OK); +} + boolean pred_print (char *pathname, struct stat *stat_buf, struct predicate *pred_ptr) { diff --git a/find/testsuite/Makefile.am b/find/testsuite/Makefile.am index c9241abb..9d903cfc 100644 --- a/find/testsuite/Makefile.am +++ b/find/testsuite/Makefile.am @@ -5,6 +5,7 @@ FINDFLAGS = DEJATOOL = find EXTRA_DIST_XO = \ +find.gnu/access.xo \ find.gnu/comma.xo \ find.gnu/delete.xo \ find.gnu/depth.xo \ @@ -68,6 +69,7 @@ find.gnu/follow-arg-parent-symlink.xo EXTRA_DIST_EXP = \ config/unix.exp \ +find.gnu/access.exp \ find.gnu/comma.exp \ find.gnu/delete.exp \ find.gnu/depth.exp \ diff --git a/find/testsuite/find.gnu/access.exp b/find/testsuite/find.gnu/access.exp new file mode 100644 index 00000000..099693d1 --- /dev/null +++ b/find/testsuite/find.gnu/access.exp @@ -0,0 +1,13 @@ +# tests for -readable, -writable, -executable +exec rm -rf tmp +exec mkdir tmp +exec touch tmp/x tmp/w tmp/r tmp/rw tmp/rwx tmp/0 +exec chmod 400 tmp/r +exec chmod 200 tmp/w +exec chmod 100 tmp/x +exec chmod 000 tmp/0 +exec chmod 600 tmp/rw +exec chmod 700 tmp/rwx +exec ls -l tmp > OUT +find_start p {tmp -readable -printf "r %p\n" , -writable -printf "w %p\n" , -executable -printf "x %p\n"} +exec rm -rf tmp diff --git a/find/testsuite/find.gnu/access.xo b/find/testsuite/find.gnu/access.xo new file mode 100644 index 00000000..464957d8 --- /dev/null +++ b/find/testsuite/find.gnu/access.xo @@ -0,0 +1,11 @@ +r tmp +r tmp/r +r tmp/rw +r tmp/rwx +w tmp +w tmp/rw +w tmp/rwx +w tmp/w +x tmp +x tmp/rwx +x tmp/x diff --git a/po/be.po b/po/be.po index cd352764..7470fcd8 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2003-11-04 05:21+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -130,100 +130,100 @@ msgstr "^[тТ]" msgid "^[nN]" msgstr "^[нН]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Выкарыстаньне: %s [шлях...] [выраз]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "шлях мусіць папярэднічаць выразу" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "нерэчаісны выказьнік \"%s\"" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "прапушчаны довад да \"%s\"" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "нерэчаісны довад \"%s\" да \"%s\"" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "немагчыма атрымаць бягучую тэчку" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -236,7 +236,7 @@ msgstr "" msgid "unknown" msgstr "невядома" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -245,18 +245,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Выкарыстаньне: %s [шлях...] [выраз]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -269,7 +269,7 @@ msgstr "" "незаданыя):\n" " ( ВЫРАЗ ) ! ВЫРАЗ -not ВЫРАЗ ВЫРАЗ1 -a ВЫРАЗ2 ВЫРАЗ1 -and ВЫРАЗ2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -283,7 +283,7 @@ msgstr "" "незаданыя):\n" " ( ВЫРАЗ ) ! ВЫРАЗ -not ВЫРАЗ ВЫРАЗ1 -a ВЫРАЗ2 ВЫРАЗ1 -and ВЫРАЗ2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -292,7 +292,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -305,10 +305,11 @@ msgstr "" " -ilname УЗОР -iname УЗОР -inum N -ipath УЗОР -iregex УЗОР\n" " -links N -lname УЗОР -mmin N -mtime N -name УЗОР -newer ФАЙЛ\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -316,7 +317,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user НАЗВА\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -324,18 +325,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -345,46 +346,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "нерэчаісны рэжым \"%s\"" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "нерэчаісны null-довад да -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "нерэчаісны від -size \"%c\"" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find вэрсыі %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "увага: нераспазнаная службовая пасьлядоўнасьць \"\\%c\"" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "увага: нераспазнанае прадпісаньне фармату \"%%%c\"" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -393,13 +394,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -409,16 +410,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "немагчыма нарадзіць працэс" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "памылка чаканьня %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s завершаны сыгналам %d" diff --git a/po/ca.po b/po/ca.po index 94cf9468..a85ca9fc 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-01 17:33+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -131,16 +131,16 @@ msgstr "^[sS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- inserció per defecte d'«and» no vàlida!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Forma d'ús: %s [-H] [-L] [-P] [camí...] [expressió]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -148,44 +148,44 @@ 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "els camins han de precedir la expressió" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "el predicat «%s» no és vàlid" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "manca un argument per a «%s»" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "l'argument «%s» no és vàlid per a «%s»" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "s'ha trobat un predicat extra no esperat" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "no es pot obtenir el directori actual" -#: find/find.c:838 +#: find/find.c:582 #, 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:848 +#: find/find.c:592 #, 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:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -195,7 +195,7 @@ msgstr "" "ld, el número del nou dispositiu és %ld, el tipus de sistema de fitxers és %" "s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -205,7 +205,7 @@ msgstr "" "el número del node-i nou és %ld, el tipus de sistema de fitxers és %s) [ref %" "ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -214,7 +214,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -223,20 +223,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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "nivell més alt a la jerarquia del sistema de fitxers" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "nivells més alt a la jerarquia del sistema de fitxers" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "avís: no es seguirà l'enllaç simbòlic %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -253,7 +253,7 @@ msgstr "" msgid "unknown" msgstr "desconegut" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -266,7 +266,7 @@ msgstr "" "abans d'ella com també aquelles especificades després d'ella). Si us plau, " "especifiqueu les opcions abans d'altres arguments.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -274,12 +274,12 @@ msgstr "" "avís: l'opció -d està desaconsellada; si us plau, utilitzeu -depth en el seu " "lloc, ja que aquesta és una funcionalitat que compleix amb POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Forma d'ús: %s [camí...] [expressió]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -290,7 +290,7 @@ msgstr "" "print\n" "l'expressió pot consistir d'operadors, opcions, avaluacions i accions:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -301,7 +301,7 @@ msgstr "" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -315,7 +315,7 @@ msgstr "" " -depth -help -maxdepth NIVELLS -mindepth NIVELLS -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -329,9 +329,11 @@ msgstr "" " -ilname PATRÓ -iname PATRÓ -inum N -iwholename PATRÓ -iregex PATRÓ\n" " -links N -lname PATRÓ -mmin N -mtime N -name PATRÓ -newer FITXER" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -339,7 +341,7 @@ msgstr "" " -wholename PATRÓ -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NOM -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -351,7 +353,7 @@ msgstr "" " -exec ORDRE ; -exec ORDRE {} + -ok ORDRE ;\n" " -execdir ORDRE ; -execdir ORDRE {} + -okdir ORDRE ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -362,12 +364,12 @@ msgstr "" "pàgina d'informes d'error de findutils en http://savannah.gnu.org/ o, si no\n" "teniu accés a la web, enviant correu a ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" "la comprovació de sanitat de la funció fnmatch() de la biblioteca ha fallat." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -382,48 +384,48 @@ msgstr "" "«-samefile». Alternativament, si esteu utilitzant GNU grep, podeu utilitzar " "«find ... -print0 | grep -FzZ %s»." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "avís: el predicat -ipath està desaconsellat; utilitzeu -iwholename en el seu " "lloc." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "el mode «%s» no és vàlid" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "l'argument nul no és vàlid per a -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "el tipus de -size «%c» no vàlid" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versió %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Funcionalitats habilitades: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "avís: sequència d'escapament «\\%c» no reconegut" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "avís: directiva de format «%%%c» no reconeguda" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -436,7 +438,7 @@ msgstr "" "del vostre $PATH (és a dir, elimineu «.» o els dos punts del principi o " "final)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -444,7 +446,7 @@ msgstr "" "No pdeu utilitzar {} dins del nom de la utilitat per a -execdir i -okdir, ja " "que això és un problema de seguretat potencial." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Només es suporta una instància de {} amb -exec%s ... +" @@ -454,17 +456,17 @@ msgstr "Només es suporta una instància de {} amb -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ?" -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "no es pot fer «fork»" # Suggerències? jm -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "error a l'esperar al procés %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s finalitzat pel senyal %d" diff --git a/po/da.po b/po/da.po index bf1f1f46..b242c5be 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-01 18:25+0200\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -134,16 +134,16 @@ msgstr "^[yYjJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ups - ugyldig automatisk indsttelse af 'and'!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Brug: %s [-H] [-L] [-P] [sti...] [udtryk]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -151,44 +151,44 @@ msgstr "" "Miljvariablen FIND_BLOCK_SIZE er ikke understttet, det eneste der pvirker " "blokstrrelsen er miljvariablen POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "stier skal st fr udtrykket" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "ugyldigt udsagn '%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "manglende parameter til '%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ugyldig parameter '%s' til '%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "uventet ekstra udsagn" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "kan ikke hente det aktuelle katalog" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Advarsel: filsystemet %s er blevet afmonteret for nylig." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Advarsel: filsystemet %s er blevet monteret for nylig." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -197,7 +197,7 @@ msgstr "" "%s%s ndrede sig under krsel af %s (tidligere enhedsnummer %ld, nyt " "enhedsnummer %ld, filsystemtype er %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -206,7 +206,7 @@ msgstr "" "%s%s ndrede sig under krsel af %s (tidligere inode-nummer %ld, nyt inode-" "nummer %ld, filsystemtype er %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -215,7 +215,7 @@ msgstr "" "Symbolsk kde '%s' er del af en lkke i kataloghierarkiet; det katalog som " "den peger p, er allerede blevet besgt." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -224,20 +224,20 @@ msgstr "" "Filsystemslkke fundet; '%s' har det samme enhedsnummer og indekseringsknude " "som et katalog hvilket er %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "niveau hjere i filsystemshierarkiet" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "niveauer hjere i filsystemshierarkiet" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "advarsel: kunne ikke flge det symbolske link %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -254,7 +254,7 @@ msgstr "" msgid "unknown" msgstr "ukendt" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -266,7 +266,7 @@ msgstr "" "tilvalg, men tilvalg er ikke positionsafhngige (tilvalget %s pvirker bde " "test angivet fr og efter det); angiv venligst tilvalg fr andre parametre.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -274,12 +274,12 @@ msgstr "" "advarsel: tilvalget -d er forldet; benyt -depth i stedet som er i " "overenstemmelse med POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Brug: %s [sti...] [udtryk]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -289,7 +289,7 @@ msgstr "" "hvis ikke andet angivet er stien det aktuelle katalog og udtrykket -print\n" "udtryk kan best af: operatorer, tilvalg, test og handlinger:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -300,7 +300,7 @@ msgstr "" " ( UDTR ) ! UDTR -not UDTR UDTR1 -a UDTR2 UDTR1 -and UDTR2\n" " UDTR1 -o UDTR2 UDTR1 -or UDTR2 UDTR1 , UDTR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -314,7 +314,7 @@ msgstr "" " -depth --help -maxdepth NIVEAUER -mindepth NIVEAUER -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -328,9 +328,11 @@ msgstr "" "MNSTER\n" " -links N -lname MNSTER -mmin N -mtime N -name MNSTER -newer FIL" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -338,7 +340,7 @@ msgstr "" " -wholename MNSTER -size N[bckwMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAVN -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -350,7 +352,7 @@ msgstr "" " -exec KOMMANDO ; -exec KOMMANDO {} + -ok KOMMANDO ;\n" " -execdir KOMMANDO ; -execdir KOMMANDO {} + -okdir KOMMANDO ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -360,11 +362,11 @@ msgstr "" "p http://savannah.gnu.org/ eller, hvis du ikke kan tilg denne, ved\n" "at sende et brev til ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "fornuftighedstjek af biblioteksfunktionen fnmatch() mislykkedes." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -379,47 +381,47 @@ msgstr "" "brugbar. Alternativt kan du hvis du bruger GNU grep, benytte 'find ... -" "print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "advarsel: udsagnet -ipath er forldet; brug venligst -iwholename i stedet." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "ugyldig tilstand '%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "ugyldig tom parameter til -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "ugyldig -size type '%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find version %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Faciliteter aktiveret: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "advarsel: ukendt undvigetegn '\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "advarsel: ukendt formatteringsdirektiv '%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -432,7 +434,7 @@ msgstr "" "katalog fra din $PATH (dvs. fjern \".\" eller begyndende og afsluttende " "koloner)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -440,7 +442,7 @@ msgstr "" "Det kan ikke bruge {} i programnavnet for -execdir og -okdir fordi der er et " "potentielt sikkerhedsproblem." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Kun en forekomst af {} er understttet med -exec%s ... +" @@ -451,17 +453,17 @@ msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " # der er plads nok at tage af -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "kan ikke fraspalte en ny proces" # ditto, ingen grund til kryptiskhed -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "fejl i forbindelse med at vente p %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s afsluttet af signal %d" diff --git a/po/de.po b/po/de.po index 7b467d4b..67211755 100644 --- a/po/de.po +++ b/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2003-11-07 21:54+0100\n" "Last-Translator: Nils Naumann \n" "Language-Team: German \n" @@ -129,100 +129,100 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "Oops -- Das automatische Einfgen von \"-and\" ist ungltig!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Aufruf: %s [Pfad...] [Suchkriterium]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "Der Pfad mu vor dem Suchkriterium stehen." -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "ungltige Option `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "Fehlendes Argument fr \"%s\"." -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Ungltiges Argument \"%s\" fr \"%s\"." -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "Kann nicht in das aktuelle Verzeichnis wechseln." -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "unbekannt" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Aufruf: %s [Pfad...] [Suchkriterium]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -268,7 +268,7 @@ msgstr "" "Operatoren (Im abnehmenden Vorrang, kein Operator bedeutet \"-and\".):\n" " ( AUSDR ) ! AUSDR -not AUSDR AUSDR1 -a AUSDR2 AUSDR1 -and AUSDR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -282,7 +282,7 @@ msgstr "" "Operatoren (Im abnehmenden Vorrang, kein Operator bedeutet \"-and\".):\n" " ( AUSDR ) ! AUSDR -not AUSDR AUSDR1 -a AUSDR2 AUSDR1 -and AUSDR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -291,7 +291,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -305,10 +305,11 @@ msgstr "" " -iregex SUCHMUSTER -links N -lname SUCHMUSTER -mmin N -mtime N \n" " -name SUCHMUSTER -newer DATEI\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -316,7 +317,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NAME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -324,18 +325,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -345,46 +346,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "Ungltiger Modus \"%s\"." -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "\"-size\" erfordert ein Argument." -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Ungltige Einheit \"%c\" fr \"-size\"." -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find Version %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "Warnung: Unerkanntes Fluchtsymbol \"\\%c\"." -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "Warnung: Unerkannte Formatanweisung \"%%%c\"." -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -393,13 +394,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -409,16 +410,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "Kann keinen neuen Proze starten." -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "Fehler beim Warten auf das Prozeende von %s." -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "Der Proze %s wurde durch das Signal %d abgebrochen." diff --git a/po/el.po b/po/el.po index b9e79b8f..69fb6222 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils-4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-01-02 13:54+0200\n" "Last-Translator: Lefteris Dimitroulakis \n" "Language-Team: Greek \n" @@ -131,16 +131,16 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- η παρεμβολή της προεπιλεγμένης παραμέτρου «and» είναι άκυρη!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Χρήση: %s [-H] [-L] [-P] [διαδρομή...] έκφραση]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -148,44 +148,44 @@ msgstr "" "Η μεταβλητή περιβάλλοντος FIND_BLOCK_SIZE δεν υποστηρίζεται, αυτό που " "επιρρεάζει το μέγεθος μπλοκ είναι η μεταβλητή περιβάλλοντος POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "οι διαδρομές πρέπει να προηγούνται των εκφράσεων" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "το κατηγόρημα «%s» είναι άκυρο" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "Το όρισμα για την «%s» απουσιάζει" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Το όρισμα «%s» για την «%s» είναι άκυρο" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "μη αναμενόμενο extra κατηγόρημα" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "Δεν μπορώ να βρώ τον τρέχοντα κατάλογο" -#: find/find.c:838 +#: find/find.c:582 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Το σύστημα αρχείων %s αποπροσαρτήθηκε πρόσφατα." -#: find/find.c:848 +#: find/find.c:592 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Το σύστημα αρχείων %s έχει προσφάτως προσαρτηθεί." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -194,7 +194,7 @@ msgstr "" "%s%s άλλαξε κατά την εκτέλεση του %s (old device number %ld, new device " "number %ld, filesystem type is %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -203,34 +203,34 @@ msgstr "" "%s%s άλλαξε κατά την εκτέλεση του %s (παλαιός αριθμός inode %ld, νέος " "αριθμός inode %ld, ο τύπος συστήματος αρχείων είναι %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -243,7 +243,7 @@ msgstr "" msgid "unknown" msgstr "άγνωστο" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -256,7 +256,7 @@ msgstr "" "τόσο πριν όσο και μετά). Παρακαλώ καθόρισε επιλογές πριν από άλλα " "ορίσματα.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -264,12 +264,12 @@ msgstr "" "προειδοποίηση: η επιλογή -d έχει καταργηθεί, στη θέση της δώσε -depth που " "συμφωνεί με το POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Χρήση: %s [διαδρομή...] [έκφραση]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -283,7 +283,7 @@ msgstr "" "ο -and υπονοείται όταν δεν δείνονται άλλοι):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -298,7 +298,7 @@ msgstr "" "ο -and υπονοείται όταν δεν δείνονται άλλοι):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -316,7 +316,7 @@ msgstr "" " -ignore_readdir_race -noignore_readdir_race\n" "tests (N μπορεί νάναι +N ή -N ή N): -amin N -anewer ΑΡΧΕΙΟ -atime N -cmin N" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -331,10 +331,11 @@ msgstr "" "PATTERN\n" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer ΑΡΧΕΙΟ" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -342,7 +343,7 @@ msgstr "" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user ΟΝΟΜΑ -xtype [bcdpfls]" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -350,7 +351,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -361,11 +362,11 @@ msgstr "" "στο http://savannah.gnu.org/ ή, αν δεν έχεις πρόσβαση στο web,\n" "αποστέλοντας μήνυμα στη διεύθυνση ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "η συνάρτηση βιβλιοθήκης fnmatch(), δεν πέρασε τον έλεγχο ακεραιότητος." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -375,48 +376,48 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "προειδοποίηση: το κατηγόρημα -ipath είναι υπό κατάργηση· παρακαλώ " "χρησιμοποείστε στη θέση του το -iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "άκυρη κατάσταση «%s»" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "το όρισμα null είναι άκυρο για την επιλογή -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Ο τύπος «%c» για την επιλογή -size είναι άκυρος" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find έκδοση %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "προειδοποίηση: μη αναγνωριζόμενη ακολουθία διαφυγής «\\%c»" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "προειδοποίηση: άγνωστη οδηγία μορφοποίησης «%%%c»" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -425,13 +426,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -441,16 +442,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "Δεν μπορώ να κλωνοποιήσω" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "σφάλμα περιμένοντας γιά %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s τερματίστηκε από το σήμα %d" diff --git a/po/eo.po b/po/eo.po index e69a0349..acf755a9 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-01-04 15:27-0500\n" "Last-Translator: D. Dale Gulledge \n" "Language-Team: Esperanto \n" @@ -129,100 +129,100 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "up -- malvalida defalta enovado de ``and'' (kaj)!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uzado: %s [pado...] [esprimo]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "padoj devas esti anta ol esprimo" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "malvalida predikato `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "mankas argumento por `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "malvalida argumento `%s'por `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "ne povas preni aktualan dosierujon" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "nekonata" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uzado: %s [pado...] [esprimo]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -269,7 +269,7 @@ msgstr "" "aliaj estas donitaj):\n" " ( ESPR ) ! ESPR -not ESPR ESPR1 -a ESPR2 ESPR1 -and ESPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -284,7 +284,7 @@ msgstr "" "aliaj estas donitaj):\n" " ( ESPR ) ! ESPR -not ESPR ESPR1 -a ESPR2 ESPR1 -and ESPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -293,7 +293,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -307,10 +307,11 @@ msgstr "" " -ilname ABLONO -iname ABLONO -inum N -ipath ABLONO -iregex ABLONO\n" " -links N -lname ABLONO -mmin N -mtime N -name ABLONO -newer DOSIERO\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -318,7 +319,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NOMO\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -326,18 +327,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -347,46 +348,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "malvalida reimo `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "malvalida senvalora argumento por -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "malvalida -size speco `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versio %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "averto: nerekonata eskapsigno `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "averto: nerekonata formatdirektivo `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -395,13 +396,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -411,16 +412,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "ne povas forki" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "eraro atendante por %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s esigita per signalo %d" diff --git a/po/es.po b/po/es.po index b0f87dcb..03f7680e 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-12-23 16:57+0100\n" "Last-Translator: Santiago Vila Doncel \n" "Language-Team: Spanish \n" @@ -132,7 +132,7 @@ msgstr "^[sS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oh, oh -- insercin por defecto de `and' invlida!" @@ -141,12 +141,12 @@ msgstr "oh, oh -- # Ol! Gracias a tos los de es@li.org que me habeis dado "ruta de acceso". # No se qu significado tendra mi vida sin vuestra ayuda ;), snif ... :~) # IPG -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Modo de empleo: %s [-H] [-L] [-P] [ruta-de-acceso...] [expresin]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -154,44 +154,44 @@ msgstr "" "La variable de entorno FIND_BLOCK_SIZE no est soportada, lo nico que\n" "afecta al tamao del bloque es la variable de entorno POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "Las rutas-de-acceso deben preceder la expresin" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predicado invlido `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "falta el argumento de `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento `%s' invlido para la opcin `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "predicado extra inesperado" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "no se puede obtener el directorio actual" -#: find/find.c:838 +#: find/find.c:582 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "El sistema de ficheros %s ha sido desmontado recientemente." -#: find/find.c:848 +#: find/find.c:592 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "El sistema de ficheros %s ha sido montado recientemente." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -202,7 +202,7 @@ msgstr "" "nmero de dispositivo nuevo %ld, el tipo de sistema de ficheros es %s [ref %" "ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -211,34 +211,34 @@ msgstr "" "%s%s ha cambiado durante la ejecucin de %s (nmero de nodo-i antiguo %ld,\n" "nmero de nodo-i nuevo %ld, tipo de sistema de ficheros %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -251,7 +251,7 @@ msgstr "" msgid "unknown" msgstr "desconocido" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -264,7 +264,7 @@ msgstr "" "las evaluaciones especificadas antes de l como a las especificadas\n" "despus). Por favor especifique las opciones antes de otros argumentos.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -277,7 +277,7 @@ msgstr "" # Ol! Gracias a tos los de es@li.org que me habeis dado "ruta de acceso". # No se qu significado tendra mi vida sin vuestra ayuda ;), snif ... :~) # IPG -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Modo de empleo: %s [ruta-de-acceso...] [expresin]\n" @@ -306,7 +306,7 @@ msgstr "Modo de empleo: %s [ruta-de-acceso...] [expresi # o mejor "si no se da ninguno". sv # # Lo dejo as. ipg -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -343,7 +343,7 @@ msgstr "" # o mejor "si no se da ninguno". sv # # Lo dejo as. ipg -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -357,7 +357,7 @@ msgstr "" "operadores (prioridad decreciente; se supone -and si no se dan):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -386,7 +386,7 @@ msgstr "" # # Tambin me han sugerido `patrn', pero prefiero EXPR-REG. IPG # -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -400,10 +400,11 @@ msgstr "" " -iwholename EXPR-REG -iregex EXPR-REG -links N -lname EXPR-REG\n" " -mmin N -mtime N -name EXPR-REG -newer FICHERO" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -411,7 +412,7 @@ msgstr "" " -wholename EXPR-REG -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NOMBRE -xtype [bcdpfls]" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -419,7 +420,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -429,12 +430,12 @@ msgstr "" "pgina de comunicacin de bichos en http://savannah.gnu.org/ o bien, si no\n" "tiene acceso a web, enviando un mensaje a ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" "la comprobacin de adecuacin de la funcin de biblioteca fnmatch() fall." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -444,14 +445,14 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "atencin: el predicado -ipath est obsoleto; por favor use -iwholename en\n" "su lugar" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "modo invlido `%s'" @@ -466,36 +467,36 @@ msgstr "modo inv # # find . -size "" # -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argumento nulo invlido para la opcin -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "tipo dado a -size invlido `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versin %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "atencin: secuencia de escape `\\%c' no reconocida" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "atencin: directiva de formato `%%%c' no reconocida" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -504,13 +505,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -560,16 +561,16 @@ msgstr "< %s ... %s > ? " # Al fin y al cabo es la coletilla que tengo yo al final de mi # comentario, no? Me parece lo mismo, m o meno, pero por no meternos # en darle caa y acabar ya esto de una vez :) ... -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "fall la llamada al sistema `fork()'" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "error esperando al proceso %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado por la seal %d" diff --git a/po/et.po b/po/et.po index f5b93d9b..853d698c 100644 --- a/po/et.po +++ b/po/et.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-02 08:56+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -129,16 +129,16 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[eE]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- vigane konjunktsioonioperaatori lisamine!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Kasuta: %s [-H] [-L] [-P] [tee...] [avaldis]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -146,44 +146,44 @@ msgstr "" "Keskkonnamuutujat FIND_BLOCK_SIZE ei toetata, bloki suurust mjutab ainult " "keskkonna muutuja POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "teed peavad olema enne avaldist" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "vigane predikaat `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "`%s' nuab argumenti" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "vigane argument `%s' predikaadil `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "ootamatu tiendav predikaat" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "ei nnestu leida jooksvat kataloogi" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Hoiatus: failissteem %s on just lahti haagitud." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Hoiatus: failissteem %s on just haagitud." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -192,7 +192,7 @@ msgstr "" "%s%s muutus %s t ajal (vana seadme number %ld, uus seadme number %ld, " "failissteemi tp on %s) [viit %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -201,7 +201,7 @@ msgstr "" "%s%s muutus %s t ajal (vana i-kirje number %ld, uus i-kirje number %ld, " "failissteemi tp on %s) [viit %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -210,7 +210,7 @@ msgstr "" "Nimeviide `%s' on osa tsklist kataloogipuus; me oleme juba klastanad " "kataloogi, millele see viitab." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -219,20 +219,20 @@ msgstr "" "Failissteemis on tuvastatud tskkel; `%s' omab sama seadme ja i-kirje " "numbreid kui kataloog %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "samm krgemal failissteemi puus" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "sammu krgemal failissteemi puus" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "hoiatus: ei jrgi nimeviidet %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -248,7 +248,7 @@ msgstr "" msgid "unknown" msgstr "tundmatu" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -260,7 +260,7 @@ msgstr "" "positsioonilised (%s mjutab eelnevalt ja jrgnevalt mratud teste). Palun " "andke vtmed enne muid argumente.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -268,12 +268,12 @@ msgstr "" "hoiatus: vti -d on aegunud; kasutage palun vtit -depth, viimane on POSIX-" "hilduv." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Kasuta: %s [tee...] [avaldis]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -283,7 +283,7 @@ msgstr "" "vaikimisi tee on jooksev kataloog; vaikimisi avaldis on -print\n" "avaldis vib koosneda: operaatorid, vtmed, testid ja tegevused:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -295,7 +295,7 @@ msgstr "" " ( AVALD ) ! AVALD -not AVALD AVALD1 -a AVALD2 AVALD1 -and AVALD2\n" " AVALD1 -o AVALD2 AVALD1 -or AVALD2 AVALD1 , AVALD2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -308,7 +308,7 @@ msgstr "" " -depth --help -maxdepth TASE -mindepth TASE -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -322,9 +322,11 @@ msgstr "" "MUSTER\n" " -links N -lname MUSTER -mmin N -mtime N -name MUSTER -newer FAIL" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -332,7 +334,7 @@ msgstr "" " -wholename MUSTER -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NIMI -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -344,7 +346,7 @@ msgstr "" " -exec KSKLUS ; -exec KSKLUS {} + -ok KSKLUS ;\n" " -execdir KSKLUS ; -execdir KSKLUS {} + -okdir KSKLUS ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -354,11 +356,11 @@ msgstr "" "http://savannah.gnu.org/ v kui teil puudub juurdeps veebile, saates\n" "emaili aadressil ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "funktsiooni fnmatch() korrektsuse kontroll ebannestus." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -373,48 +375,48 @@ msgstr "" "mrksa kasulikum. Alternatiivina, kui te kasutate GNU grep, viks proovida " "'find ... -print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "hoiatus: predikaat -ipath on aegunud; kasutage selle asemel palun -" "iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "vigane mood `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "vigane thi argument -size predikaadile" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "vigane tp `%c' -size predikaadile" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versioon %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Lubatud omadused: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "hoiatus: tundmatu paojada `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "hoiatus: tundmatu formaadidirektiiv `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -426,7 +428,7 @@ msgstr "" "korral ebaturvaline. Palun eemaldage jooksev kataloog PATH muutujast " "(eemaldage \".\" vi algavad vi lpetavad koolonid)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -434,7 +436,7 @@ msgstr "" "Vtmetega -execdir ja -okdir ei ole lubatud programmi nimes kasutada {}, " "kuna see vib olla turvarisk." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Predikaadiga -exec%s ... + on lubatud kasutada ainult hte {} paari" @@ -444,16 +446,16 @@ msgstr "Predikaadiga -exec%s ... + on lubatud kasutada ainult msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "fork ebannestus" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "viga %s oodates" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s katkestati signaaliga %d" diff --git a/po/fi.po b/po/fi.po index 4d55e22a..5dfc6356 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-07-10 09:43+03:00\n" "Last-Translator: Matti Koskimies \n" "Language-Team: Finnish \n" @@ -129,100 +129,100 @@ msgstr "^[kKyY]" msgid "^[nN]" msgstr "^[eEnN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "hupsista -- epkelpo \"and\"-operaattorin oletuslisys" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Kytt: %s [polku...] [lauseke]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "polkujen tytyy olla ennen lauseketta" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "epkelpo predikaatti \"%s\"" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "\"%s\":n parametri puuttuu" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "\"%s\" on epkelpo parametri \"%s\":lle" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "tyhakemiston nouto ei onnistu" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "tuntematon" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Kytt: %s [polku...] [lauseke]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -268,7 +268,7 @@ msgstr "" "ole annettuna):\n" " ( LAUS ) ! LAUS -not LAUS LAUS1 -a LAUS2 LAUS1 -and LAUS2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -282,7 +282,7 @@ msgstr "" "ole annettuna):\n" " ( LAUS ) ! LAUS -not LAUS LAUS1 -a LAUS2 LAUS1 -and LAUS2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -291,7 +291,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -305,10 +305,11 @@ msgstr "" " -ilname MALLI -iname MALLI -inum N -ipath MALLI -iregex MALLI\n" " -links N -lname MALLI -mmin N -mtime N -name MALLI -newer TIEDOSTO\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -316,7 +317,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NIMI\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -324,18 +325,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -345,46 +346,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "epkelpo tila \"%s\"" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "epkelpo tyhj parametri \"-size\":lle" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "elkelpo \"-size\"-tyyppi \"%c\"" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versio %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "varoitus: tunnistamaton ohjausmerkki \"\\%c\"" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "varoitus: tunnistamaton muotoilumrite \"%%%c\"" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -393,13 +394,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -409,16 +410,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "haarautuminen ei onnistu" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "%s:n odotuksenaikainen virhe" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s keskeytettiin signaalilla %d" diff --git a/po/findutils.pot b/po/findutils.pot index 7b1ae9a5..828bde95 100644 --- a/po/findutils.pot +++ b/po/findutils.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -131,100 +131,100 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -237,7 +237,7 @@ msgstr "" msgid "unknown" msgstr "" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -246,25 +246,25 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" "expression may consist of: operators, options, tests, and actions:\n" msgstr "" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -272,7 +272,7 @@ msgid "" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" msgstr "" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -281,7 +281,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -290,14 +290,15 @@ msgid "" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE" msgstr "" -#: find/parser.c:802 +#: find/parser.c:842 msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -305,18 +306,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -326,46 +327,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -374,13 +375,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -390,16 +391,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "" diff --git a/po/fr.po b/po/fr.po index ac663101..756195ec 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-10 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -130,16 +130,16 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "L'insertion du paramtre par dfaut and est invalide." -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Usage: %s [-H] [-L] [-P] [CHEMIN...] [EXPRESSION]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -148,44 +148,44 @@ msgstr "" "chose qui peut affecter la taille de bloc est la variable d'environnement " "POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "les chemins doivent prcder l'expression" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "prdicat invalide %s " -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "Paramtre manquant pour %s " -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "Paramtre invalide %s pour %s " -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "prdicat superflu inattendu" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "Ne peut trouver le rpertoire courant" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "AVERTISSEMENT: le systme de fichier %s a t rcemment dmont." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "AVERTISSEMENT: le systme de fichiers %s a t rcemment mont." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -194,7 +194,7 @@ msgstr "" "%s%s a t modifi durant l'excution de %s (ancien no de priphrique %ld, " "nouveau no de priphrique %ld, type du systme de fichiers est %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -203,7 +203,7 @@ msgstr "" "%s%s a t modifi durant l'excution de %s (ancien no d'inode %ld, nouveau " "no d'inode %ld, type du systme de fichiers est %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -212,7 +212,7 @@ msgstr "" "Le lien symbolique `%s' fait parti d'une boucle dans la hirarchie du " "rpertoire; le rpertoire sur lequel il pointe a dj t visit." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -221,20 +221,20 @@ msgstr "" "Boucle dtect dans le systme de fichiers; `%s' a le mme numro de " "priphrique et d'inode que le rpertoie lequel est %d %s" -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "plus haut niveau dans la hirarchie du systme de fichiers" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "plus haust niveaux dans la hirarchie du systme de fichiers" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "AVERTISSEMENT: ne lien symbolique ne sera pas suivi %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -251,7 +251,7 @@ msgstr "" msgid "unknown" msgstr "inconnu" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -263,7 +263,7 @@ msgstr "" "pas une option %s mais les options sont positionnelles (%s affecte les tests " "spcifis avant aussi bien qu'aprs)\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -271,12 +271,12 @@ msgstr "" "AVERTISSEMENT: l'option -d est obsolte; svp utilisez -depth la place, " "parce celle-ci est est une option se conformant POSIX" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Usage: %s [chemin...] [expression]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -288,7 +288,7 @@ msgstr "" "Une expression peut tre constitue: d'oprateurs, d'options, de tests et " "d'actions:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -299,7 +299,7 @@ msgstr "" "lorsqu'aucun autre paramtre n'est fourni):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -315,7 +315,7 @@ msgstr "" " -depth --help -maxdepth NIVEAUX -mindepth NIVEAUX -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -330,9 +330,11 @@ msgstr "" "MODLE\n" " -links N -lname MODLE -mmin N -mtime N -name MODLE -newer FICHIER" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -340,7 +342,7 @@ msgstr "" " -wholename MODLE -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NOM -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -352,7 +354,7 @@ msgstr "" " -exec COMMANDE ; -exec COMMANDE {} + -ok COMMANDE ;\n" " -execdir COMMANDE ; -execdir COMMANDE {} + -okdir COMMANDE ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -364,13 +366,13 @@ msgstr "" "un courriel \n" "." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" "la vrification d'intgrit par la fonction de fnmatch() de la librairie a " "chou." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -386,48 +388,48 @@ msgstr "" "Alternativement, si vous utilisez GNU grep, vous devriez utiliser 'find ... -" "print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "AVERTISSEMENT: le prdicat -ipath est obsolte; svp utilisez -iwholename " "la place." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "mode invalide %s " -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "Paramtre nul invalide pour l'option -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Type invalide pour l'option -size %c " -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr " find de GNU version %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Options actives: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "AVERTISSEMENT: squence d'chappement \\%c inconnue." -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "AVERTISSEMENT: directive de formatage %%%c inconnue." -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -440,7 +442,7 @@ msgstr "" "enlever le rpertoire courant de $PATH (i.e enlver \".\" ou : en prfixe et " "suffixe)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -448,7 +450,7 @@ msgstr "" "Vous ne pouvez utiliser {} l'intrieur du nom de l'utilitaire pour --" "execdir et -okdir, parce qu'il pose un problme potentiel de scurit." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Une seule instance de {} est supporte avec -exec%s ... +" @@ -458,16 +460,16 @@ msgstr "Une seule instance de {} est support msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "Ne peut faire un clonage (fork)." -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "Erreur s'attendait %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s a termin son excution par le signal %d" diff --git a/po/ga.po b/po/ga.po index 71b7de89..ab8482eb 100644 --- a/po/ga.po +++ b/po/ga.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-01 05:47-0500\n" "Last-Translator: Kevin Patrick Scannell \n" "Language-Team: Irish \n" @@ -132,16 +132,16 @@ msgstr "^[yYiIsS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ps! -- ions neamhbhail de `and'!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "sid: %s [-H] [-L] [-P] [conair...] [slonn]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -149,44 +149,44 @@ msgstr "" "Nl an athrg thimpeallachta FIND_BLOCK_SIZE le fil, nl aon rud ag dul i " "bhfeidhm ar an mid bloic ach an athrg thimpeallachta POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "n folir conair a theacht roimh an slonn" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "preideacid neamhbhail `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "n folir argint don rogha `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argint neamhbhail `%s' chun `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "preideacid bhreise gan choinne" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "nl an chomhadlann reatha ar fil" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Rabhadh: bh an cras comhaid %s dfheistithe le gairid." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Rabhadh: bh an cras comhaid %s feistithe le gairid." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -195,7 +195,7 @@ msgstr "" "Athraodh %s%s le linn rith %s (seanuimhir ghlis %ld, uimhir nua glis %ld, " "cinel cras comhad %s) [tag %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -204,7 +204,7 @@ msgstr "" "Athraodh %s%s le linn rith %s (seanuimhir inode %ld, uimhir nua inode %ld, " "cinel cras comhad %s) [tag %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -213,7 +213,7 @@ msgstr "" "T an nasc siombalach `%s' cuid de lb sa chras chomhadlainne; thugamar " "cuairt cheana ar an gcomhadlann lena bhfuil s nasctha." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -222,20 +222,20 @@ msgstr "" "Braitheadh lb sa chras comhaid; t an uimhir ghlis agus inode canna ag `%" "s' agus comhadlann eile at %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "leibhal amhin nos airde sa chras comhaid" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "leibhal nos airde sa chras comhaid" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "rabhadh: n leanfar nasc siombalach %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -252,7 +252,7 @@ msgstr "" msgid "unknown" msgstr "anaithnid" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -265,7 +265,7 @@ msgstr "" "bhfeidhm ar thrialacha ar gach taobh de). Tabhair na roghanna roimh na " "hargint eile.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -273,12 +273,12 @@ msgstr "" "rabhadh: t an rogha -d as feidhm; bain sid as -depth ina ionad, os rud " "go bhfuil -depth oirinach leis an chaighden POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "sid: %s [conair...] [slonn]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -290,7 +290,7 @@ msgstr "" "is ard is fidir a bheith sa slonn:\n" "oibreoir, roghanna, trialacha, agus gnomhartha:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -303,7 +303,7 @@ msgstr "" "SLONN2\n" " SLONN1 -o SLONN2 SLONN1 -or SLONN2 SLONN1 , SLONN2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -317,7 +317,7 @@ msgstr "" " -depth --help -maxdepth LEIBHIL -mindepth LEIBHIL -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -332,9 +332,11 @@ msgstr "" "PATRN\n" " -links N -lname PATRN -mmin N -mtime N -name PATRN -newer COMHAD" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -342,7 +344,7 @@ msgstr "" " -wholename PATRN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user AINM -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -355,7 +357,7 @@ msgstr "" " -exec ORD ; -exec ORD {} + -ok ORD ;\n" " -execdir ORD ; -execdir ORD {} + -okdir ORD ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -367,11 +369,11 @@ msgstr "" "bhfuil\n" " rochtain ar an nGrasn agat, seol r-phost chuig ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "theip ar sheiceil slnchille don fheidhm leabharlainne fnmatch()." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -386,48 +388,48 @@ msgstr "" "wholename' nos isila, n b'fhidir '-samefile'. N, m t GNU grep agat, " "is fidir 'find ... -print0 | grep -FzZ %s' a sid mar mhalairt." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "rabhadh: t an phreideacid -ipath as feidhm; bain sid as -iwholename ina " "hionad, le do thoil." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "md neamhbhail `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argint nialasach neamhbhail i ndiaidh -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "argint neamhbhail `%c' i ndiaidh -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find, leagan %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Gnithe arna gcumas: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "rabhadh: seicheamh alchin anaithnid `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "rabhadh: treoir fhormide anaithnid `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -439,7 +441,7 @@ msgstr "" "neamhdhaingean seo in ineacht leis an ghnomh %s. Bain an chomhadlann " "reatha as $PATH (.i., bain \".\", n idirstad ar dts/i ndeireadh, amach)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -447,7 +449,7 @@ msgstr "" "N cheadatear {} mar chuid d'ainm uirlise le -execdir n -okdir, de bharr " "gur neamhdhaingean seo." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "N thacatear ach aon phire amhin {} le -exec%s ... +" @@ -458,16 +460,16 @@ msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " # "fork" not in standard refs/corpus. Maybe want a "gabhl*" word instead? -KPS -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "n fidir forc a dhanamh" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "earrid ag fanacht le %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "Stopadh %s leis an chomhartha %d" diff --git a/po/gl.po b/po/gl.po index 2c7273a0..ff067f82 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.5\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2000-05-30 10:11+0200\n" "Last-Translator: Jess Bravo lvarez \n" "Language-Team: Galician \n" @@ -134,100 +134,100 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ups -- insercin dun and por defecto non vlida" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uso: %s [camio...] [expresin]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "os camios teen que preceder expresin" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predicado `%s' non vlido" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "non atopado argumento de `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento `%s' de `%s' non vlido" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "non se pode obte-lo directorio actual" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -240,7 +240,7 @@ msgstr "" msgid "unknown" msgstr "descoecido" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -249,18 +249,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uso: %s [camio...] [expresin]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -274,7 +274,7 @@ msgstr "" "outros):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -289,7 +289,7 @@ msgstr "" "outros):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -298,7 +298,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -312,10 +312,11 @@ msgstr "" " -ilname PATRN -iname PATRN -inum N -ipath PATRN -iregex PATRN\n" " -links N -lname PATRN -mmin N -mtime N -name PATRN -newer FICHEIRO\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -323,7 +324,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NOME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -331,18 +332,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -352,46 +353,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "modo `%s' non vlido" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argumento nulo de -size non vlido" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "tipo `%c' de -size non vlido" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versin %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "aviso: secuencia de escape `\\%c' descoecida" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "aviso: directiva de formato `%%%c' descoecida" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -400,13 +401,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -416,16 +417,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "non se pode facer fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "erro agardando a %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado por sinal %d" diff --git a/po/hr.po b/po/hr.po index 2ddfa995..49a382a3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-04-22 02:04+02:00\n" "Last-Translator: Hrvoje Niksic \n" "Language-Team: Croatian \n" @@ -129,100 +129,100 @@ msgstr "^[dDyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- neispravno podrazumijevano ubacivanje and-a!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uporaba: %s [staza...] [izraz]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "staze moraju biti navedene prije izraza" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "neispravan predikat `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "nedostaje argument `%s'-u" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neispravan argument `%s' `%s'-u" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "ne mogu saznati trenutni direktorij" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "nepoznat" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uporaba: %s [staza...] [izraz]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -269,7 +269,7 @@ msgstr "" "nisu navedeni):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -284,7 +284,7 @@ msgstr "" "nisu navedeni):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -293,7 +293,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -306,10 +306,11 @@ msgstr "" " -ilname UZORAK -iname UZORAK -inum N -ipath UZORAK -iregex UZORAK\n" " -links N -lname UZORAK -mmin N -mtime N -name UZORAK -newer SPIS\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -317,7 +318,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user IME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -325,18 +326,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -346,46 +347,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "neispravan mod `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "neispravan prazan argument -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "neispravan -size tip `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find verzija %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "upozorenje: nepoznati escape `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "upozorenje: nepoznata format direktiva `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -394,13 +395,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -410,16 +411,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "ne mogu se forkati" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "greka pri ekanju na %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminiran signalom %d" diff --git a/po/hu.po b/po/hu.po index f49398be..7888bad4 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-05-07 15:06+0200\n" "Last-Translator: Emese Kovcs \n" "Language-Team: Hungarian \n" @@ -130,100 +130,100 @@ msgstr "^[iIyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "hopp -- and! rvnytelen alaprtelmezett beszrsa " -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Hasznlat: %s [tvonal...] [kifejezs]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "az tvonalak elbb jnnek, mint a kifejezs" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "rvnytelen kapcsol: %s" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "`%s' argumentuma hinyzik" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "A `%s' argumentum rvnytelen ehhez: %s" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "aktulis knyvtr beolvassa sikertelen" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -236,7 +236,7 @@ msgstr "" msgid "unknown" msgstr "ismeretlen" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -245,18 +245,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Hasznlat: %s [tvonal...] [kifejezs]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -274,7 +274,7 @@ msgstr "" " KIF1 -a KIF2 \n" " KIF1 -and KIF2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -293,7 +293,7 @@ msgstr "" " KIF1 -a KIF2 \n" " KIF1 -and KIF2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -302,7 +302,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -315,10 +315,11 @@ msgstr "" " -ilname MINTA -iname MINTA -inum N -ipath MINTA -iregex MINTA\n" " -links N -lname MINTA -mmin N -mtime N -name MINTA -newer FJL\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -326,7 +327,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NV\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -334,18 +335,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -355,46 +356,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "rvnytelen md: `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "rvnytelen null argumentum a -size kapcsolnl" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "-size tpusa (`%c') rvnytelen" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find %s verzi\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "vigyzat: ismeretlen escape `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "vigyzat: ismeretlen formtum direktva `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -403,13 +404,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -419,16 +420,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "fork() rendszerhvs sikertelen" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "hiba, mikzben erre vrtunk: %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s lelltva %d jelzssel" diff --git a/po/id.po b/po/id.po index 124c75ff..77c46f52 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-03-21 00:24GMT+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -130,100 +130,100 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- penyisipan and baku tidak valid!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Pemakaian: %s [path...] [ekspresi]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "path harus mendahului ekspresi" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predikat `%s' tidak valid" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "argumen hilang untuk `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumen `%s' tidak valid untuk `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "tidak dapat mengetahui direktori saat ini" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -236,7 +236,7 @@ msgstr "" msgid "unknown" msgstr "Tidak dikenal" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -245,18 +245,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Pemakaian: %s [path...] [ekspresi]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -268,7 +268,7 @@ msgstr "" "operator (urutan menurun; -and adalah implisit bila tidak ada yang lain):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -281,7 +281,7 @@ msgstr "" "operator (urutan menurun; -and adalah implisit bila tidak ada yang lain):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -290,7 +290,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -303,10 +303,11 @@ msgstr "" " -ilname PATTERN -iname PATTERN -inum N -ipath PATTERN -iregex PATTERN\n" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -314,7 +315,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NAME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -322,18 +323,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -343,46 +344,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "Mode `%s' tidak valid" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "Null argument tidak valid untuk -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Type `%c' -size tidak valid" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versi %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "PERINGATAN: escape `\\%c' tidak dikenal" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "PERINGATAN: format direktif `%%%c' tidak dikenal" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -391,13 +392,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -407,16 +408,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "tidak dapat mem-fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "Kesalahan waiting untuk %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s di-terminate oleh sinyal %d" diff --git a/po/it.po b/po/it.po index de0d3900..4785adc9 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.10\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-12-23 12:44+0100\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -130,16 +130,16 @@ msgstr "^[yYsS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- inserimento predefinito di and non valido!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uso: %s [-H] [-L] [-P] [percorso...] [espressione]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -148,44 +148,44 @@ msgstr "" "influenza la dimensione dei blocchi la variabile di ambiente " "POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "i percorsi devono precedere l'espressione" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "il predicato `%s' non valido" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "manca l'argomento di `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "l'argomento `%s' di `%s' non valido" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "predicato aggiuntivo inatteso" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "impossibile ottenere la directory corrente" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Attenzione: il file system %s stato smontato di recente." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Attenzione: il file system %s stato montato di recente." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -194,7 +194,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:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -203,7 +203,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:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -212,7 +212,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -221,20 +221,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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "livello pi in alto nella gerarchia del file system" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "livelli pi in alto nella gerarchia del file system" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -247,7 +247,7 @@ msgstr "" msgid "unknown" msgstr "sconosciuto" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -259,7 +259,7 @@ msgstr "" "opzione, ma le opzioni non sono posizionali (%s ha effetto sui test indicati " "sia prima che dopo di essa). Usare le opzioni prima degli altri argomenti.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -267,12 +267,12 @@ msgstr "" "attenzione: l'opzione -d deprecata; per favore usare l'opzione -depth, che " "segue POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uso: %s [percorso...] [espressione]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -286,7 +286,7 @@ msgstr "" " indicati altri):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -301,7 +301,7 @@ msgstr "" " indicati altri):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -319,7 +319,7 @@ msgstr "" " --ignore_readdir_race -noignore_readdir_race\n" "test (N pu essere +N, -N o N): -amin N -anewer FILE -atime N -cmin N" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -333,10 +333,11 @@ msgstr "" "MODELLO\n" " -links N -lname MODELLO -mmin N -mtime N -name MODELLO -newer FILE" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -344,7 +345,7 @@ msgstr "" " -wholename MODELLO -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NOME -xtype [bcdpfls]" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -352,7 +353,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -364,11 +365,11 @@ msgstr "" "non\n" "si ha accesso al web inviando un'email a ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "il controllo interno della funzione di libreria fnmatch() fallito." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -378,48 +379,48 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "attenzione: il predicato -ipath deprecato; per favore usare -iwholename al " "suo posto." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "il modo `%s' non valido" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size non pu avere un argomento nullo" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "il tipo di -size `%c' non valido" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versione %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "attenzione: sequenza di escape `\\%c' non riconosciuta" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "attenzione: direttiva di formattazione `%%%c' non riconosciuta" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -428,13 +429,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -444,16 +445,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "impossibile fare fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "errore aspettando %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminato dal segnale %d" diff --git a/po/ja.po b/po/ja.po index 77bba02d..23468da8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2001-11-05 00:45+0900\n" "Last-Translator: GOTO Masanori \n" "Language-Team: Japanese \n" @@ -129,100 +129,100 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ޤä -- AND ǥեƤޤä!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "ˡ: %s [ѥ...] [ɾ]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "ѥɾˤʤФʤʤ" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "ʽҸ `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "`%s' ˰Ĥޤ" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ʰ `%s' `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "ȥǥ쥯ȥ꤬Ǥޤ" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "ˡ: %s [ѥ...] [ɾ]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -268,7 +268,7 @@ msgstr "" "黻 (ͥ; ¾˲ͿƤʤȤ -and ̣):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -282,7 +282,7 @@ msgstr "" "黻 (ͥ; ¾˲ͿƤʤȤ -and ̣):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -291,7 +291,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -304,10 +304,11 @@ msgstr "" " -ilname PATTERN -iname PATTERN -inum N -ipath PATTERN -iregex PATTERN\n" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -315,7 +316,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NAME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -323,18 +324,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -344,46 +345,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "ʥ⡼ `%s' Ǥ" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size ФʶΰǤ" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr " -size `%c' Ǥ" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find version %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "ٹ: ǧǤʤ `\\%c' Ǥ" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "ٹ: ǧǤʤեޥåȤλؼ `%%%c' Ǥ" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -392,13 +393,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -408,16 +409,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "fork Ǥޤ" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "%s ؤԤǥ顼" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s ϥʥ %d ǽλ" diff --git a/po/ko.po b/po/ko.po index cda105e7..368797a4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 1996-10-07 22:13+0900\n" "Last-Translator: Bang Jun-Young \n" "Language-Team: Korean \n" @@ -129,101 +129,101 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr " -- and ġ ϰ ߽ϴ!" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr ": %s [...] []\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "" -#: find/find.c:545 +#: find/find.c:283 #, fuzzy, c-format msgid "invalid predicate `%s'" msgstr " `%s'" -#: find/find.c:553 +#: find/find.c:291 #, fuzzy, c-format msgid "missing argument to `%s'" msgstr "-size μ ־" -#: find/find.c:555 +#: find/find.c:293 #, fuzzy, c-format msgid "invalid argument `%s' to `%s'" msgstr "-size μ ־" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 #, fuzzy msgid "cannot get current directory" msgstr " 丮 ư ϴ" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -236,7 +236,7 @@ msgstr "" msgid "unknown" msgstr " " -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -245,18 +245,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr ": %s [...] []\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -269,7 +269,7 @@ msgstr "" ")\n" " ( EXPR ) | EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -283,7 +283,7 @@ msgstr "" ")\n" " ( EXPR ) | EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -292,7 +292,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -301,14 +301,15 @@ msgid "" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE" msgstr "" -#: find/parser.c:802 +#: find/parser.c:842 msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -316,18 +317,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -337,46 +338,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr " `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size μ ־" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr " -size `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr ": ν ̽ `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr ": ν `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -385,13 +386,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -401,16 +402,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "" -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "%s ٸ ߻" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s ȣ %d " diff --git a/po/lg.po b/po/lg.po index 60316648..e64e58d9 100644 --- a/po/lg.po +++ b/po/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-04-02 18:57GMT\n" "Last-Translator: K.Birabwa \n" "Language-Team: Luganda \n" @@ -131,102 +131,102 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" "oops -- esonsesewo and! etakolerawo. Enkola eya bulijjo kwe kusonsekawo " "\"and!\"" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Nkozesa eri: %s [kubo...] [mboozi]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "sooka okuteekawo amakubo olyoke ozeeko emboozi" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "puledikato `%s' tekola wano" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "`%s' ebulako agumenti" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "agumenti `%s' tekozesebwa ku` %s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "nemedwa okufuna etterekero ekiragiro mwe kiweereddwa" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -239,7 +239,7 @@ msgstr "" msgid "unknown" msgstr "tekimanyidwa" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -248,18 +248,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Nkozesa eri: %s [kubo...] [mboozi]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -275,7 +275,7 @@ msgstr "" "pulogulamu ekibala nti ekifuula \"-and\" kyo wekiri):\n" " ( EMBOZ ) ! EMBOZ -not EMBOZ EMBOZ1 -a EMBOZ2 EMBOZ1 -and EMBOZ2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -292,7 +292,7 @@ msgstr "" "pulogulamu ekibala nti ekifuula \"-and\" kyo wekiri):\n" " ( EMBOZ ) ! EMBOZ -not EMBOZ EMBOZ1 -a EMBOZ2 EMBOZ1 -and EMBOZ2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -301,7 +301,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -315,10 +315,11 @@ msgstr "" " -ipath KIGAMBO -iregex KIGAMBO -links N -lname KIGAMBO\n" " -mmin N -mtime N -name KIGAMBO -newer FAYIRO\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -326,7 +327,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user LINNYA\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -334,18 +335,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -355,47 +356,47 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "enkola `%s' tekola wano" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "towadde agumenti eyetaagibwa ku kawayiro -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr " -size eweereddwa ekika, `%c', ekitakola wano " -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find ey'omutindo %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "" "kulabula: akabonero akufuula enneyisa ya bunnaako, `\\%c', tekategeerekese" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "kulabula: ekiragiro ekifuga entereeza, `%%%c', tekitegeerekese" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -404,13 +405,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -420,16 +421,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "ekilagiro ekya sisitemu ekya`fork()' kigaanye" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "wazzewo kiremya nga nnindirira %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "omulimu %s guyimirizidwa ekiragiro %d" diff --git a/po/ms.po b/po/ms.po index 4d2e9487..4203c645 100644 --- a/po/ms.po +++ b/po/ms.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils-4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2003-01-19 14:42+0800\n" "Last-Translator: Nik Ramadhan Nik Idris \n" "Language-Team: Malay \n" @@ -129,100 +129,100 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "kehilangan hujah kepada `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "hujah yang salah `%s' kepada `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "tidak diketahui" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,25 +244,25 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" "expression may consist of: operators, options, tests, and actions:\n" msgstr "" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -270,7 +270,7 @@ msgid "" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" msgstr "" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -279,7 +279,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -288,14 +288,15 @@ msgid "" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE" msgstr "" -#: find/parser.c:802 +#: find/parser.c:842 msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -303,18 +304,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -324,46 +325,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "mod yang salah `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "jenis saiz tidak sah `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "versi find GNU %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -372,13 +373,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -388,16 +389,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "ralat menunggu untuk %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "" diff --git a/po/nl.po b/po/nl.po index fe182590..55c582f7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-01 21:37+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -133,16 +133,16 @@ msgstr "^[jJ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oeps -- ongeldige standaardtussenvoeging van '-and'!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Gebruik: %s [-H] [-L] [-P] [pad...] [expressie]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -150,44 +150,44 @@ msgstr "" "De omgevingsvariabele FIND_BLOCK_SIZE wordt niet ondersteund. Alleen de " "POSIXLY_CORRECT-omgevingsvariabele beïnvloedt de blokgrootte." -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "padnamen moeten aan de expressies voorafgaan" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "ongeldige optie '%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "ontbrekend argument van '%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ongeldig argument '%s' van '%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "onverwacht extra ding" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "kan huidige map niet opvragen" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Waarschuwing: bestandssysteem %s is recent ontkoppeld." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Waarschuwing: bestandssysteem %s is recent aangekoppeld." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -196,7 +196,7 @@ msgstr "" "%s%s is gewijzigd tijdens het uitvoeren van %s (oud apparaatnummer %ld, " "nieuw apparaatnummer %ld, bestandssysteemsoort %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -205,7 +205,7 @@ msgstr "" "%s%s is gewijzigd tijdens het uitvoeren van %s (oud inode-nummer %ld, nieuw " "inode-nummer %ld, bestandssysteemsoort %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -214,7 +214,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -223,20 +223,20 @@ msgstr "" "Oneindige lus in bestandssysteem: '%s' heeft hetzelfde apparaatnummer en " "inode-nummer als een map %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "niveau hoger in de bestandshiërarchie" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "niveaus hoger in de bestandshiërarchie" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "waarschuwing: symbolische koppeling %s wordt niet gevolgd" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -253,7 +253,7 @@ msgstr "" msgid "unknown" msgstr "onbekend" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -265,7 +265,7 @@ msgstr "" "opties zijn niet positioneel: %s beïnvloedt zowel voorgaande als nakomende " "testen. Geef opties op vóór andere argumenten.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -273,12 +273,12 @@ msgstr "" "waarschuwing: de optie '-d' wordt afgeraden; gebruik liever '-depth', omdat " "dat een POSIX-mogelijkheid is" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Gebruik: %s [pad...] [expressie]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -288,7 +288,7 @@ msgstr "" "het standaardpad is de huidige map; de standaardexpressie is -print;\n" "de expressie mag bestaan uit: operatoren, opties, testen, en acties:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -300,7 +300,7 @@ msgstr "" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -314,7 +314,7 @@ msgstr "" " -depth --help -maxdepth NIVEAUS -mindepth NIVEAUS -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -328,9 +328,11 @@ msgstr "" "PATROON\n" " -links N -lname PATROON -mmin N -mtime N -name PATROON -newer BESTAND" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -338,7 +340,7 @@ msgstr "" " -wholename PATROON -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAAM -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -350,7 +352,7 @@ msgstr "" " -execdir COMMANDO ; -execdir COMMANDO {} + -okdir COMMANDO ; -ls\n" " -fls BESTAND -print -print0 -printf OPMAAK -delete -prune -quit\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -361,11 +363,11 @@ msgstr "" "een bericht naar .\n" "Meld gebreken in de vertaling aan ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "de zinnigheidscontrole van de fnmatch()-systeemfunctie is mislukt" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -380,47 +382,47 @@ msgstr "" "misschien '-samefile'. Of anders, als u GNU grep heeft, kunt u 'find ... -" "print0 | grep -FzZ %s' gebruiken." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "waarschuwing: de optie '-ipath' wordt afgeraden; gebruik liever '-iwholename'" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "ongeldige modus '%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "ongeldig leeg argument van -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "ongeldige aanduiding '%c' bij optie -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versie %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Aangezette mogelijkheden: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "waarschuwing: onbekende stuurcode '\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "waarschuwing: onbekende opmaakcode '%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -432,7 +434,7 @@ msgstr "" "combinatie met de actie %s van find. Verwijder de huidige map uit uw PATH-" "variabele (oftewel: verwijder \".\" of dubbele punten aan begin en eind)." -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -440,7 +442,7 @@ msgstr "" "Om veiligheidsredenen mag {} bij '-execdir' en '-okdir' niet gebruikt worden " "binnen de naam van het hulpprogramma." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Bij '-exec%s ... +' mag {} slechts één keer voorkomen." @@ -450,16 +452,16 @@ msgstr "Bij '-exec%s ... +' mag {} slechts één keer voorkomen." msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "kan geen nieuw proces starten" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "fout tijdens wachten op %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s afgebroken door signaal %d" diff --git a/po/pl.po b/po/pl.po index 7e13cb6b..e61327fc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.15\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-02-06 03:02+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -130,16 +130,16 @@ msgstr "^[yYtT]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ojej -- bdne domylne wstawienie and!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Skadnia: %s [-H] [-L] [-P] [cieka...] [wyraenie]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -147,44 +147,44 @@ msgstr "" "Zmienna rodowiskowa FIND_BLOCK_SIZE nie jest obsugiwana; jedyne, co wpywa " "na rozmiar bloku, to zmienna rodowiskowa POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "cieki musz poprzedza wyraenie" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "bdne wyraenie `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "brak argumentu dla `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "bdny argument `%s' dla `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "nie obsugiwane dodatkowe wyraenie" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "nie mona uzyska biecego katalogu" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Uwaga: system plikw %s zosta niedawno odmontowany." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Uwaga: system plikw %s zosta niedawno zamontowany." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -193,7 +193,7 @@ msgstr "" "%s%s zmieni si podczas wykonywania %s (stary numer urzdzenia %ld, nowy " "numer urzdzenia %ld, typ systemu plikw to %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -202,7 +202,7 @@ msgstr "" "%s%s zmieni si podczas wykonywania %s (stary numer i-wza %ld, nowy numer " "i-wza %ld, typ systemu plikw %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -211,7 +211,7 @@ msgstr "" "Dowizanie symboliczne `%s' jest czci ptli w hierarchii katalogw; " "katalog wskazywany przez to dowizanie by ju odwiedzony." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -220,20 +220,20 @@ msgstr "" "Wykryto ptl w systemie plikw; `%s' ma ten sam numer urzdzenia i i-wze " "jak katalog %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "poziom wyej w hierarchii systemu plikw" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "poziomw wyej w hierarchii systemu plikw" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -249,7 +249,7 @@ msgstr "" msgid "unknown" msgstr "nieznany" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -261,7 +261,7 @@ msgstr "" "pozycyjne (%s wpywa na testy podane przed ni jak i po niej). Prosz " "podawa opcje przed innymi argumentami.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -269,12 +269,12 @@ msgstr "" "uwaga: opcja -d jest przestarzaa; prosz zamiast niej uywa -depth, " "poniewa ta jest zgodna z POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Skadnia: %s [cieka...] [wyraenie]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -284,7 +284,7 @@ msgstr "" "domylna cieka to aktualny katalog; domylne wyraenie to -print\n" "wyraenie moe skada si z: operatorw, opcji, testw i akcji:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -295,7 +295,7 @@ msgstr "" " ( WYR ) ! WYR -not WYR WYR1 -a WYR2 WYR1 -and WYR2\n" " WYR1 -o WYR2 WYR1 -or WYR2 WYR1 , WYR2\n" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -309,7 +309,7 @@ msgstr "" " -depth --help -maxdepth POZIOMY -mindepth POZIOMY -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -324,9 +324,11 @@ msgstr "" "WZORZEC\n" " -links N -lname WZORZEC -mmin N -mtime N -name WZORZEC -newer PLIK" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -334,7 +336,7 @@ msgstr "" " -wholename WZORZEC -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAZWA -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -342,7 +344,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -353,12 +355,12 @@ msgstr "" "w przypadku braku dostpu do WWW, wysyajc poczt elektroniczn pod\n" "adres ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" "sprawdzenie poprawnoci funkcji bibliotecznej fnmatch() nie powiodo si." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -368,48 +370,48 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "uwaga: wyraenie -ipath jest przestarzae; prosz zamiast niego uywa -" "iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "niewaciwe uprawnienia `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "bdny zerowy argument dla -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "bdny typ -size `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find wersja %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Wczone waciwoci: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "uwaga: nierozpoznany znak sterujcy `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "uwaga: nierozpoznana dyrektywa formatujca `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -422,7 +424,7 @@ msgstr "" "katalog ze zmiennej $PATH (tzn. usun \".\" albo wiodce lub kocowe " "dwukropki)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -430,7 +432,7 @@ msgstr "" "Nie mona uywa {} wewntrz nazwy narzdzia dla opcji -execdir i -okdir, " "poniewa jest to potencjalny problem z bezpieczestwem." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Obsugiwane jest tylko jedno wystpienie {} przy -exec%s ... +" @@ -440,16 +442,16 @@ msgstr "Obs msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "nie mona wykona fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "bd podczas czekania na %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s zakoczony sygnaem %d" diff --git a/po/pt.po b/po/pt.po index 74702a5e..a53ecae1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-11-13 15:19+0000\n" "Last-Translator: Helder Correia \n" "Language-Team: Portuguese \n" @@ -130,16 +130,16 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "ops -- inserção por omissão de and inválida" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Utilização: %s [-H] [-L] [-P] [caminho...] [expressão]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -147,44 +147,44 @@ 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "os caminhos devem preceder a expressão" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predicado inválido '%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "argumento em falta para '%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento '%s' inválido para '%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "predicado extra inesperado" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "não é possível obter a pasta corrente" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Aviso: o sistema de ficheiros %s foi desmontado recentemente." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Aviso: o sistema de ficheiros %s foi montado recentemente." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -193,7 +193,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:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -202,7 +202,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:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -211,7 +211,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -220,20 +220,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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "nível mais alto na hierarquia do sistema de ficheiros" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "níveis mais alto na hierarquia do sistema de ficheiros" -#: find/find.c:1906 +#: find/find.c:1513 #, 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:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -250,7 +250,7 @@ msgstr "" msgid "unknown" msgstr "desconhecido" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -263,7 +263,7 @@ msgstr "" "especificados após). Por favor, especifique as opções antes dos outros " "argumentos.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -271,12 +271,12 @@ msgstr "" "aviso: a opção -d está obsoleta; por favor, use -depth em substituição, uma " "vez que esta é uma funcionalidade em conformidade POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Utilização: %s [caminho...] [expressão]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -286,7 +286,7 @@ msgstr "" "o caminho padrão é a pasta corrente; a expressão predefinida é '-print'\n" "a expressão deve consistir em: operadores, opções, testes e acções:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -298,7 +298,7 @@ msgstr "" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -313,7 +313,7 @@ msgstr "" " -depth --help -maxdepth NÍVEIS -mindepth NÍVEIS -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -327,9 +327,11 @@ msgstr "" "PADRÃO\n" " -links N -lname PADRÃO -mmin N -mtime N -name PADRÃO -newer FICH" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -337,7 +339,7 @@ msgstr "" " -wholename PADRÃO -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NOME -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -349,7 +351,7 @@ msgstr "" " -exec COMANDO ; -exec COMANDO {} + -ok COMANDO ;\n" " -execdir COMANDO ; -execdir COMANDO {} + -okdir COMANDO ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -359,11 +361,11 @@ msgstr "" "http://savannah.gnu.org/ ou, se não tiver acesso a páginas, enviando um\n" "correio electrónico para ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "a verificação de sanidade da função de biblioteca fnmatch() falhou." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -377,48 +379,48 @@ msgstr "" "'-wholename' mais útil, ou talvez '-samefile'. Alternativamente, se estiver " "a usar o GNU grep, pode usar 'find ... -print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "aviso: o predicate -ipath está obsoleto: por favor, use -iwholename em " "substituição" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "modo '%s0 inválido" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argumento vazio para -size inválido" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Tipo -size '%c' inválido" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versão %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Funcionalidades activadas: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "aviso: escape '\\%c' não reconhecido" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "aviso: directiva de formatação '%%%c' não reconhecida" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -430,7 +432,7 @@ msgstr "" "inseguro quando combinado com a acção %s do 'find'. Por favor, remova a " "pasta corrente do seu '$PATH' (isto é, remova \".\")" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -438,7 +440,7 @@ msgstr "" "Pode não usar {} no nome do utilitário para '-execdir' e '-okdir', uma vez " "que se trata de um potencial problema de segurança." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Apenas uma instância de {} é suportada com -exec%s ... +" @@ -448,16 +450,16 @@ msgstr "Apenas uma instância de {} é suportada com -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "não é possível bifurcar (fork)" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "erro ao aguardar por %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado pelo sinal %d" diff --git a/po/pt_BR.po b/po/pt_BR.po index fb103836..3a6c19e6 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.20\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-02-08 18:00-0200\n" "Last-Translator: Alexandre Folle de Menezes \n" "Language-Team: Brazilian Portuguese \n" @@ -134,100 +134,100 @@ msgstr "^[sS]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "oops -- insero padro de and! invlida" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uso: %s [caminho...] [expresso]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "os caminhos devem preceder a expresso" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predicado invlido `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "faltando argumento para `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argumento invlido `%s' para `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "no foi possvel obter o diretrio atual" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -240,7 +240,7 @@ msgstr "" msgid "unknown" msgstr "desconhecido" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -249,18 +249,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uso: %s [caminho...] [expresso]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -273,7 +273,7 @@ msgstr "" "explcitado):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -287,7 +287,7 @@ msgstr "" "explcitado):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -296,7 +296,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -310,10 +310,11 @@ msgstr "" " -ilname PADRO -iname PADRO -inum N -ipath PADRO -iregex PADRO\n" " -links N -lname PADRO -mmin N -mtime N -name PADRO -newer ARQUIVO\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -321,7 +322,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NOME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -329,18 +330,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -350,46 +351,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "modo invlido `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argumento nulo invlido para -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "tipo invlido `%c' para -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find verso %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "aviso: controle (escape) no reconhecido `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "aviso: diretiva de formatao desconhecida `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -398,13 +399,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -414,16 +415,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "no consigo duplicar o processo (fork())" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "erro esperando por %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminado pelo sinal %d" diff --git a/po/ro.po b/po/ro.po index e1b4ac34..d304420a 100644 --- a/po/ro.po +++ b/po/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-01 12:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -133,16 +133,16 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "hopa -- inserare implicit invalid de and!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Folosire : %s [-H] [-L] [-P] [cale...] [expresie]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -150,44 +150,44 @@ 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "cile trebuie specificate naintea expresiei" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "predicat invalid `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "argument lips pentru `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "argument invalid `%s' pentru `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "predicat adiional neateptat" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "nu pot obine directorul curent" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Avertisment: sistemul de fiiere %s de fost demontat de curnd." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Avertisment: sistemul de fiiere %s de fost montat de curnd." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -196,7 +196,7 @@ msgstr "" "%s%s s-a schimbat n timpul execuiei lui %s (vechiul nr. dispozitiv %ld, " "noul nr. dispozitiv %ld, tipul sistemului de fiiere este %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -205,7 +205,7 @@ msgstr "" "%s%s s-a schimbat n timpul execuiei lui %s (vechiul nr. inode %ld, noul " "nr. inode %ld, tipul sistemului de fiiere este %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -214,7 +214,7 @@ msgstr "" "Legtura simbolic `%s' este parte a unei bucle n ierarhia de directoare; " "am vizitat deja directorul ctre care intete." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -223,20 +223,20 @@ msgstr "" "Am detectat o bucl n sistemul de fiiere; `%s' are acelai numr de " "unitate i inode ca i un director care este %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "nivel mai nalt n ierarhia sistemului de fiiere" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "nivele mai nalte n ierarhia sistemului de fiiere" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "avertisment: nu urmez legtura simbolic %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -253,7 +253,7 @@ msgstr "" msgid "unknown" msgstr "necunoscut" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -266,7 +266,7 @@ msgstr "" "el ca i cele specificate dup el). V rugm specificai opiunile nainte " "de alte argumente.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -274,12 +274,12 @@ msgstr "" "avertisment: opiunea -d nu mai este valid; v rugm folosii -depth n " "locul lui, pentru c aceasta din urm respect standardul POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Folosire : %s [cale...] [expresie]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -289,7 +289,7 @@ msgstr "" "calea implicit este directorul curent; expresia implicit este -print\n" "expresia poate fi compus din: operatori opiuni, teste i aciuni:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -301,7 +301,7 @@ msgstr "" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -316,7 +316,7 @@ msgstr "" " -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -330,9 +330,11 @@ msgstr "" "PATTERN\n" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FIIER" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -340,7 +342,7 @@ msgstr "" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NUME -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -352,7 +354,7 @@ msgstr "" " -exec COMAND ; -exec COMAND {} + -ok COMAND ;\n" " -execdir COMAND ; -execdir COMAND {} + -okdir COMAND ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -362,11 +364,11 @@ msgstr "" "raportare a bug-urilor din findutils de la http://savannah.gnu.org/ sau,\n" "dac nu avei acces la internet, trimind email la ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "verificarea corectitudinii funcie de bibliotec fnmatch() a euat." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -381,48 +383,48 @@ msgstr "" "sau probabil '-samefile'. Alternativ, dac folosii GNU grep, putei folosi " "'find ... -print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "avertisment: predicatul -ipath nu mai este valid; v rug s folosii -" "iwholename n locul lui." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "mod invalid `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "argument null invalid pentru -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "tip -size invalid `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find versiunea %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Capabiliti activate: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "avertisment: escape nerecunoscut `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "avertisment: directiv format nerecunoscut `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -435,7 +437,7 @@ msgstr "" "ndeprtai directorul curent din $PATH (adic ndeprtai \".\" sau primul " "sau ultimul \":\")" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -443,7 +445,7 @@ msgstr "" "Nu putei folosi {} n cadrul numelui utilitarului pentru -execdir i -" "okdir, pentru c aceasta este o potenial problem de securitate." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Numai o singur instan de {} este suportat cu -exec%s ... +" @@ -453,16 +455,16 @@ msgstr "Numai o singur msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "nu pot executa fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "eroare ateptnd pentru %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s terminat de semnal %d" diff --git a/po/ru.po b/po/ru.po index 2fc74555..77edb650 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-01-07 18:43GMT+06\n" "Last-Translator: Denis Perchine \n" "Language-Team: Russian \n" @@ -130,100 +130,100 @@ msgstr "^[yY msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr " -- '' (and)" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr ": %s [...] []\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr " " -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr " `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr " `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr " `%s' `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr " " -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -236,7 +236,7 @@ msgstr "" msgid "unknown" msgstr "" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -245,18 +245,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr ": %s [...] []\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -269,7 +269,7 @@ msgstr "" "):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -283,7 +283,7 @@ msgstr "" "):\n" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -292,7 +292,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -305,10 +305,11 @@ msgstr "" " -ilname PATTERN -iname PATTERN -inum N -ipath PATTERN -iregex PATTERN\n" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -316,7 +317,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user NAME\n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -324,18 +325,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -345,46 +346,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr " '%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr " -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr " '%c' -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr ": '\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "y: '%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -393,13 +394,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -409,16 +410,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr " " -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr " %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s %d" diff --git a/po/rw.po b/po/rw.po index 85bae9dc..6d0fb4ae 100644 --- a/po/rw.po +++ b/po/rw.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -143,64 +143,64 @@ msgstr "" msgid "^[nN]" msgstr "" -#: find/util.c:108 +#: find/util.c:119 #, fuzzy msgid "oops -- invalid default insertion of and!" msgstr "Sibyo Mburabuzi Iyinjizamo Bya Na" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "H Inzira imvugo" -#: find/find.c:457 +#: find/find.c:195 #, 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:539 +#: find/find.c:277 #, fuzzy msgid "paths must precede expression" msgstr "Inzira imvugo" -#: find/find.c:545 +#: find/find.c:283 #, fuzzy, c-format msgid "invalid predicate `%s'" msgstr "Sibyo" -#: find/find.c:553 +#: find/find.c:291 #, fuzzy, c-format msgid "missing argument to `%s'" msgstr "Ibuze Kuri" -#: find/find.c:555 +#: find/find.c:293 #, fuzzy, c-format msgid "invalid argument `%s' to `%s'" msgstr "Sibyo Kuri" -#: find/find.c:611 +#: find/find.c:349 #, fuzzy msgid "unexpected extra predicate" msgstr "Birenga" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 #, fuzzy msgid "cannot get current directory" msgstr "Kubona KIGEZWEHO bushyinguro" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, fuzzy, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -209,7 +209,7 @@ msgstr "" "%s%sByahinduwe Bya ki/ bishaje APAREYE Umubare Gishya APAREYE Umubare Ubwoko " "ni indango" -#: find/find.c:980 +#: find/find.c:724 #, fuzzy, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -217,34 +217,34 @@ msgid "" msgstr "" "%s%sByahinduwe Bya ki/ bishaje Umubare Gishya Umubare Ubwoko ni indango" -#: find/find.c:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -257,7 +257,7 @@ msgstr "" msgid "unknown" msgstr "itazwi" -#: find/parser.c:374 +#: find/parser.c:414 #, fuzzy, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -268,19 +268,19 @@ msgstr "" "Iburira i Ihitamo Nyuma a Ihitamo Amahitamo OYA Mbere Nka Nka Nyuma " "Amahitamo Mbere Ikindi ingingo" -#: find/parser.c:613 +#: find/parser.c:653 #, fuzzy msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "Iburira i D Ihitamo ni Bitemewe. Gukoresha Ubujyakuzimu i ni a" -#: find/parser.c:783 +#: find/parser.c:823 #, fuzzy, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Inzira imvugo" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -290,7 +290,7 @@ msgstr "" "Mburabuzi Inzira ni i KIGEZWEHO bushyinguro Mburabuzi imvugo ni Gicurasi Bya " "Mukoresha Na ni Oya Ibindi OYA a Na" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -301,7 +301,7 @@ msgstr "" "Mburabuzi Inzira ni i KIGEZWEHO bushyinguro Mburabuzi imvugo ni Gicurasi Bya " "Mukoresha Na ni Oya Ibindi OYA a Na" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -313,7 +313,7 @@ msgstr "" "o Cyangwa Amahitamo Buri gihe NIBYO Amahitamo Buri gihe NIBYO Mbere Ikindi " "Ifashayobora Verisiyo Cyangwa Cyangwa" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -323,15 +323,16 @@ msgid "" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE" msgstr "-ubusa SIBYO Itsinda amahuza Izina:" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "-Inzira Ingano NIBYO Ubwoko UID Ukoresha:" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -339,7 +340,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 #, fuzzy msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" @@ -347,12 +348,12 @@ msgid "" "email to ." msgstr "org." -#: find/parser.c:843 +#: find/parser.c:884 #, fuzzy msgid "sanity check of the fnmatch() library function failed." msgstr "Kugenzura... Bya i Isomero Umumaro Byanze" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -362,48 +363,48 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 #, fuzzy msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "Iburira i ni Bitemewe. Gukoresha" -#: find/parser.c:1340 +#: find/parser.c:1381 #, fuzzy, c-format msgid "invalid mode `%s'" msgstr "Sibyo Ubwoko" -#: find/parser.c:1512 +#: find/parser.c:1553 #, fuzzy msgid "invalid null argument to -size" msgstr "Sibyo NTAGIHARI Kuri Ingano" -#: find/parser.c:1558 +#: find/parser.c:1599 #, fuzzy, c-format msgid "invalid -size type `%c'" msgstr "Sibyo Ingano Ubwoko" -#: find/parser.c:1676 +#: find/parser.c:1747 #, fuzzy, c-format msgid "GNU find version %s\n" msgstr "Gushaka Verisiyo" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, fuzzy, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "Iburira" -#: find/parser.c:1970 +#: find/parser.c:2048 #, fuzzy, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "Iburira Imiterere" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -412,13 +413,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -428,16 +429,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "<%s...%s>CYOSE" -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "" -#: find/pred.c:1591 +#: find/pred.c:1610 #, fuzzy, c-format msgid "error waiting for %s" msgstr "Ikosa Tegereza kugirango" -#: find/pred.c:1599 +#: find/pred.c:1618 #, fuzzy, c-format msgid "%s terminated by signal %d" msgstr "%sku" diff --git a/po/sk.po b/po/sk.po index e441865c..d8164001 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-02 05:56+0200\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" @@ -129,16 +129,16 @@ msgstr "^[yYaAáÁ]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "chyba -- neplatné implicitné vloženie logického súčinu (and)!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Použitie: %s [-H] [-L] [-P] [cesta...] [výraz]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -146,44 +146,44 @@ msgstr "" "Premenná prostredia FIND_BLOCK_SIZE je nepodporovaná, jediná vec, ktorá " "ovplyvňuje veľkosť bloku je premenná prostredia POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "cesty musia byť pred výrazom" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "neplatný predikát `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "chýbajúci parameter pre `%s'" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neplatný parameter `%s' pre `%s'" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "neočakávaný predikát navyše" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "nemôžem zistiť aktuálny adresár" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Upozornenie: súborový systém %s bol nedávno odpojený." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Upozornenie: súborový systém %s bol nedávno pripojený." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -192,7 +192,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:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -201,7 +201,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:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -210,7 +210,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -219,20 +219,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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "vyššia úroveň v hierarchii súborového systému" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "úrovne nad hierarchiou súborového systému" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "upozornenie: nenasledujem symbolický odkaz %s" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -249,7 +249,7 @@ msgstr "" msgid "unknown" msgstr "neznámy" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -261,7 +261,7 @@ msgstr "" "voľby nie sú pozičné (%s postihuje testy zadané predtým a tiež tie, ktoré sú " "zadané potom). Prosím, zadajte voľby pred ostatnými parametrami.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -269,12 +269,12 @@ msgstr "" "upozornenie: voľby -d je neodporúčaná; prosím použite namiesto nej -depth, " "pretože táto spĺňa požiadavky POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Použitie: %s [cesta...] [výraz]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -284,7 +284,7 @@ msgstr "" "implicitná cesta je aktuálny adresár; implicitný výraz je -print\n" "výraz môže pozostávať z: operátorov, volieb, testov a akcií:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -295,7 +295,7 @@ msgstr "" " ( VÝRAZ ) ! VÝRAZ -not VÝRAZ VÝRAZ1 -a VÝRAZ2 VÝRAZ1 -and VÝRAZ2\n" " VÝRAZ1 -o VÝRAZ2 VÝRAZ1 - or VÝRAZ2 VÝRAZ1 , VÝRAZ2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -309,7 +309,7 @@ msgstr "" " -depth --help -maxdepth ÚROVNE -mindepth ÚROVNE -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -323,9 +323,11 @@ msgstr "" " -ilname VZOR -iname VZOR -inum N -iwholename VZOR -iregex VZOR\n" " -links N -lname VZOR -mmin N -mtime N -name VZOR -newer SÚBOR" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -333,7 +335,7 @@ msgstr "" " -wholename VZOR -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user MENO -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -345,7 +347,7 @@ msgstr "" " -exec PRÍKAZ ; -exec PRÍKAZ {} + -ok PRÍKAZ ;\n" " -execdir PRÍKAZ ; - execdir PRÍKAZ {} + -okdir PRÍKAZ ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -359,11 +361,11 @@ msgstr "" "Komentáre k slovenskému prekladu zasielajte na adresu ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "kontrola správnosti knižničnej funkcie fnmatch() zlyhala." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -378,47 +380,47 @@ msgstr "" "alebo možno '-samefile'. Alebo, ak používate GNU grep, môžete použiť " "'find ... -print0 | grep -FzZ %s'." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "upozornenie: predikát -ipath neodporúčaný; použite namiesto neho -iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "neplatný mód `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "neplatný prázdny parameter pre -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "neplatný typ -size `%c'" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find verzia %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Povolené vlastnosti: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "upozornenie: nerozlíšený prepínací znak `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "upozornenie: nerozpoznaná formátovacia direktíva '%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -431,7 +433,7 @@ msgstr "" "vašej premennej $PATH (to znamená, že odstráňte \".\" alebo začiatočné alebo " "koncové dvojbodky)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -439,7 +441,7 @@ msgstr "" "Nemôžete použiť {} vo vnútri názvu nástroja pre -execdir a -okdir, pretože " "toto je potenciálny bezpečnostný problém." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Len jeden výskyt {} je podporovaný s -exec%s ... +" @@ -449,16 +451,16 @@ msgstr "Len jeden výskyt {} je podporovaný s -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "nemôžem vykonať fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "chyba pri čakaní na %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s ukončený signálom %d" diff --git a/po/sl.po b/po/sl.po index 11607011..6149805f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-24 11:05+0200\n" "Last-Translator: Primož Peterlin \n" "Language-Team: Slovenian \n" @@ -130,16 +130,16 @@ msgstr "^[DdJj]" msgid "^[nN]" msgstr "^[Nn]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "opla - neveljavno privzeto vstavljanje logičnega ALI!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Uporaba: %s [-H] [-L] [-P] [POT...] [IZRAZ]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -147,44 +147,44 @@ msgstr "" "Spremenljivka FIND_BLOCK_SIZE ni podprta; na velikost bloka vpliva " "spremenljivka POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "poti morajo biti navedene pred izrazom" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "neveljaven predikat »%s«" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "manjkajoč argument k »%s«" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "neveljaven argument »%s« za »%s«" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "nepričakovan dodatni predikat" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "trenutnega imenika ni mogoče ugotoviti" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Opozorilo: datotečni sistem %s je bil nedavno odklopljen." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Opozorilo: datotečni sistem %s je bil nedavno priklopljen." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -193,7 +193,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:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -202,7 +202,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:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -211,7 +211,7 @@ msgstr "" "Simbolna povezava »%s« je del zanke v drevesu imenikov; imenik, na katerega " "kaže, smo že obiskali." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -220,20 +220,20 @@ msgstr "" "Odkrita zanka v datotečnem sistemu: »%s« ima isto številko enote in inoda " "kot imenik %d %s." -#: find/find.c:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "raven višje v datotečni hierarhiji" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "ravni višje v datotečni hierarhiji" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "opozorilo: simbolni povezavi %s ne sledimo" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -250,7 +250,7 @@ msgstr "" msgid "unknown" msgstr "neznano" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -262,7 +262,7 @@ msgstr "" "niso pozicijske (%s vpliva na teste, navadene pred njo in za njo). Prosimo, " "navedite izbire pred drugimi argumenti.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -270,12 +270,12 @@ msgstr "" "opozorilo: raba izbire -d je odsvetovana; zaradi skladnosti s POSIX namesto " "nje priporočamo -depth." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Uporaba: %s [POT]... [IZRAZ]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -285,7 +285,7 @@ msgstr "" "privzeta pot je trenutni imenik; privzeti izraz je -print\n" "izraz lahko sestavljajo: operatorji, izbire, testi in dejanja:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -298,7 +298,7 @@ msgstr "" "IZRAZ2\n" " IZRAZ1 -o IZRAZ2 IZRAZ1 -or IZRAZ2 IZRAZ1 , IZRAZ2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -313,7 +313,7 @@ msgstr "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" "testi (N can be +N or -N or N): -amin N -anewer DATOTEKA -atime N -cmin N\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -327,9 +327,11 @@ msgstr "" "VZOREC\n" " -links N -lname VZOREC -mmin N -mtime N -name VZOREC -newer DATOTEKA" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -337,7 +339,7 @@ msgstr "" " -wholename VZOREC -size N[bckw] -true -type [bcdpfls] -uid N \n" " -used N -user IME -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -349,7 +351,7 @@ msgstr "" " -exec UKAZ ; -exec UKAZ {} + -ok UKAZ ;\n" " -execdir UKAZ ; -execdir UKAZ {} + -okdir UKAZ ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -360,11 +362,11 @@ msgstr "" "za prijavljanje napak findutils, http://savannah.gnu.org/, ali, če nimate\n" "dostopa do spleta, po elektronski pošti na naslov ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "preizkus koherentnosti knjižnične funkcije fnmatch() ni uspel." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -379,47 +381,47 @@ msgstr "" "uporabnejša. Če uporabljate GNU grep, lahko uporabite tudi »find ... -print0 " "| grep -FzZ %s«." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "opozorilo: predikat -ipath odsvetujemo; priporočamo zamenjavo z -iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "neveljave način »%s«" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "neveljaven prazni argument pri -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "neveljaven tip -size: »%c«" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find, različica %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Omogočene možnosti: " -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "opozorilo: neprepoznano ubežno zaporedje »\\%c«" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "opozorilo: neprepoznano formatno določilo »%%%c»" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -431,7 +433,7 @@ msgstr "" "kombinaciji z dejanjem %s programa find. Prosim, odstranite trenutni imenik " "iz spremenljivke $PATH - odstranite ».« ter uvodna ali zaključna dvopičja." -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -439,7 +441,7 @@ msgstr "" "Raba {} znotraj imena pomožnega programa za -execdir in -okdir zaradi " "mogočih varnostnih problemov ni dovoljena." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Podprta je le enkratna navedba {} v kombinaciji z -exec%s ... +" @@ -449,16 +451,16 @@ msgstr "Podprta je le enkratna navedba {} v kombinaciji z -exec%s ... +" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "vejitev ni mogoča" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "napaka pri čakanju na %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s zaključen s signalom %d" diff --git a/po/sr.po b/po/sr.po index 02655608..6a2adee8 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-11-24 14:16+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -129,16 +129,16 @@ msgstr "^[yYдДdD]" msgid "^[nN]" msgstr "^[nNнН]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "упс — неисправно подразумевано уметање „и“!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Употреба: %s [-H] [-L] [-P] [путања...] [израз]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -146,44 +146,44 @@ msgstr "" "Променљива окружења FIND_BLOCK_SIZE није подржана, једина ствар која утиче " "на величину блока је променљива окружења POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "путање морају претходити изразу" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "неисправан предикат „%s“" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "недостаје аргумент за „%s“" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "неисправан аргумент „%s“ за „%s“" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "неочекивани допунски предикат" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "не могу да сазнам текући директоријум" -#: find/find.c:838 +#: find/find.c:582 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Систем датотека %s је недавно искључен." -#: find/find.c:848 +#: find/find.c:592 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Систем датотека %s је недавно прикључен." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -192,7 +192,7 @@ msgstr "" "%s%s је измењен при извршавању %s (стари број уређаја %ld, нови број %ld, " "врста система датотека је %s) [реф %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -201,34 +201,34 @@ msgstr "" "%s%s је измењен при извршавању %s (стари број чвора %ld, нови број %ld, " "врста система датотека је %s) [реф %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -241,7 +241,7 @@ msgstr "" msgid "unknown" msgstr "непознато" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -253,7 +253,7 @@ msgstr "" "опције не зависе од положаја (%s утиче на провере наведене пре њега као и " "после њега). Наведите опције пре осталих аргумената.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -261,12 +261,12 @@ msgstr "" "упозорење: опција -d је застарела; уместо ње користите -depth, пошто је ова " "друга у сагласности са POSIX-ом." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Употреба: %s [путања...] [израз]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -279,7 +279,7 @@ msgstr "" "други):\n" " ( ИЗРАЗ ) ! ИЗРАЗ -not ИЗРАЗ ИЗРАЗ1 -a ИЗРАЗ2 ИЗРАЗ1 -and ИЗРАЗ2" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -293,7 +293,7 @@ msgstr "" "други):\n" " ( ИЗРАЗ ) ! ИЗРАЗ -not ИЗРАЗ ИЗРАЗ1 -a ИЗРАЗ2 ИЗРАЗ1 -and ИЗРАЗ2" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -307,7 +307,7 @@ msgstr "" " -maxdepth НИВОА -mindepth НИВОА -mount -noleaf --version -xdev\n" "провере (N може бити +N, -N или N): -amin N -anewer ДАТОТЕКА -atime N -cmin N" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -322,10 +322,11 @@ msgstr "" "ШАБЛОН\n" " -links N -lname ШАБЛОН -mmin N -mtime N -name ШАБЛОН -newer ДАТОТЕКА" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -333,7 +334,7 @@ msgstr "" " -wholename ШАБЛОН -size N[bckwMG] -true -type [bcdpfls] -uid N\n" " -used N -user ИМЕ -xtype [bcdpfls]" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -341,7 +342,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -351,11 +352,11 @@ msgstr "" "findutils грешака на http://savannah.gnu.org/ или, ако немате приступ вебу,\n" "слањем е-писма на ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "провера разумности функције fnmatch() библиотеке неуспешна." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -365,47 +366,47 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "упозорење: предикат -ipath је застарео; уместо њега користите -iwholename." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "неисправан режим „%s“" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "неисправан нула-аргумент за -size" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "неисправна врста „%c“ за -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "ГНУ find издање %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "упозорење: непознато истицање „\\%c“" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "упозорење: непозната директива форматирања „%%%c“" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -414,13 +415,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -430,16 +431,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "не могу да расцепим" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "грешка при чекању %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s окончан сигналом %d" diff --git a/po/sv.po b/po/sv.po index 01267a28..aacb8daa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.6\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2004-12-21 00:10+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -130,16 +130,16 @@ msgstr "^[jJyY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "hoppsan -- ogiltig standardinsttning av \"and\"!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Anvndning: %s [-H] [-L] [-P] [skvg...] [uttryck]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -147,44 +147,44 @@ msgstr "" "Miljvariabeln FIND_BLOCK_SIZE stds inte, det enda som pverkar " "blockstorleken r miljvariabeln POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "skvgar mste komma fre uttryck" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "ogiltigt predikat \"%s\"" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "argument till \"%s\" saknas" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "ogiltigt argument \"%s\" till \"%s\"" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "ovntat extra predikat" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "kan inte f tag i aktuell katalog" -#: find/find.c:838 +#: find/find.c:582 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Filsystemet %s har nyligen avmonterats." -#: find/find.c:848 +#: find/find.c:592 #, fuzzy, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Filsystemet %s har nyligen monterats." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -193,7 +193,7 @@ msgstr "" "%s%s ndrades under exekvering av %s (gammalt enhetsnummer %ld, nytt " "enhetsnummer %ld, filsystemstypen r %s) [ref %ld]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -202,34 +202,34 @@ msgstr "" "%s%s ndrades under exekvering av %s (gammalt inodsnummer %ld, nytt " "inodsnummer %ld, filsystemstypen r %s) [ref %ld]" -#: find/find.c:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -242,7 +242,7 @@ msgstr "" msgid "unknown" msgstr "oknd" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -255,7 +255,7 @@ msgstr "" "fre den, liksom de som r angivna efter den). Ange flaggor fre andra " "argument.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -263,12 +263,12 @@ msgstr "" "varning: flaggan -d r frldrad; anvnd -depth istllet, eftersom den " "senare stds enligt POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Anvndning: %s [skvg...] [uttryck]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -281,7 +281,7 @@ msgstr "" "anges):\n" " ( UTTR ) ! UTTR -not UTTR UTTR1 -a UTTR2 UTTR1 -and UTTR2" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -295,7 +295,7 @@ msgstr "" "anges):\n" " ( UTTR ) ! UTTR -not UTTR UTTR1 -a UTTR2 UTTR1 -and UTTR2\n" -#: find/parser.c:792 +#: find/parser.c:832 #, fuzzy msgid "" "positional options (always true): -daystart -follow -regextype\n" @@ -311,7 +311,7 @@ msgstr "" "xdev\n" "tester (N kan vara +N, -N eller N): -amin N -anewer FIL -atime N -cmin N" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -325,10 +325,11 @@ msgstr "" "MNSTER\n" " -links N -lname MNSTER -mmin N -mtime N -name MNSTER -newer FIL" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -336,7 +337,7 @@ msgstr "" " -wholename MNSTER -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAMN -xtype [bcdpfls]" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -345,7 +346,7 @@ msgid "" msgstr "" # Lade till att man br skriva felrapporten p engelska. -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -358,11 +359,11 @@ msgstr "" "Skicka synpunkter p versttningen till sv@li.org." # Osker... hur verstta "sanity check"? -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "funktionskontroll av biblioteksfunktionen fnmatch() misslyckades." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -372,46 +373,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "varning: predikatet -ipath r frldrat; anvnd -iwholename istllet." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "ogiltig rttighet \"%s\"" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "tomt argument till -size ogiltigt" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "ogiltig typ \"%c\" fr -size" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find version %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "varning: oknd kontrollsekvens \"\\%c\"" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "varning: oknt formatdirektiv \"%%%c\"" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -420,13 +421,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -436,16 +437,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "kan inte grena" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "fel vid vntande p %s" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s avslutades av signal %d" diff --git a/po/tr.po b/po/tr.po index a4f4526b..e7423eea 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-02 13:24+0300\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -131,16 +131,16 @@ msgstr "^[eE]" msgid "^[nN]" msgstr "^[hH]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "Hoop -- öntanımlı `and' yerleştirme geçersiz!" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Kullanımı: %s [-H] [-L] [-P] [dosyaYolu...] [ifade]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -148,44 +148,44 @@ msgstr "" "FIND_BLOCK_SIZE ortam değişkeni destekenmiyor, blok boyunu etkileyen tek şey " "POSIXLY_CORRECT ortam değişkenidir" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "dosya yolları ifadeyi öncelemelidir" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "geçersiz dayanak `%s'" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "`%s'de argüman eksik" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "`%s' argümanı `%s'de geçersiz" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "umulmayan ek dayanak" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "çalışılan dizin alınamadı" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "Uyarı: %s dosya sistemi zaten ayrılmıştı." -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "Uyarı: %s dosya sistemi zaten bağlanmıştı." -#: find/find.c:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -194,7 +194,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:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -203,7 +203,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:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -212,7 +212,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:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -221,20 +221,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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "seviye, dosya sistemi hiyerarşisinde daha yüksek" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "seviyeler, dosya sistemi hiyerarşisinde daha yüksek" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "uyarı: %s sembolik bağı izlenemiyor" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -251,7 +251,7 @@ msgstr "" msgid "unknown" msgstr "bilinmeyen" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -264,7 +264,7 @@ msgstr "" "da belirtilse sınamaları etkiler). Lütfen seçenekleri diğer argümanlardan " "önce belirtin.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -272,12 +272,12 @@ msgstr "" "uyarı: -d seçeneği artık önerilmiyor; lütfen yerine POSIX uyumlu olan -depth " "seçeneğini kullanın." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Kullanımı: %s [dosyaYolu...] [ifade]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -288,7 +288,7 @@ msgstr "" "ifade şundan ibaret olabilir:\n" "operatörler, seçenekler, sınamalar ve eylemler:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -301,7 +301,7 @@ msgstr "" " İFADE1 -and İFADE2 İFADE1 -o İFADE2 İFADE1 -or İFADE2\n" " İFADE1 , İFADE2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -314,7 +314,7 @@ msgstr "" " -depth --help -maxdepth DÜZEYLER -mindepth DÜZEYLER -mount -noleaf\n" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -329,9 +329,11 @@ msgstr "" "N\n" " -mtime N -name KALIP -newer DOSYA" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -339,7 +341,7 @@ msgstr "" " -wholename KALIP -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user İSİM -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -351,7 +353,7 @@ msgstr "" " -exec KOMUT ; -exec KOMUT {} + -ok KOMUT ;\n" " -execdir KOMUT ; -execdir KOMUT {} + -okdir KOMUT ;\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -362,11 +364,11 @@ msgstr "" "adresine raporlayınız.\n" "Çeviri hatalarını ise adresine bildiriniz." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "fnmatch() kütüphane işlevinin tutarlılık sınaması başarısız oldu." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -381,48 +383,48 @@ msgstr "" "bulabilirsiniz. Ayrıca, eğer GNU grep kullanıyorsanız, 'find ... -print0 | " "grep -FzZ %s' kullanabilirdiniz." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "uyarı: -ipath dayanağının kullanımı önerilmiyor; yerine lütfen -iwholename " "kullanın." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "geçersiz kip `%s'" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size için boş (null) argüman geçersiz" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "-size türü `%c' geçersiz" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find sürüm %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Etkin özellikler:" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "uyarı: tanınmayan öncelem `\\%c'" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "uyarı: tanınmayan biçem yönergesi `%%%c'" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -435,7 +437,7 @@ msgstr "" "kaldırın (yani, \".\" ile bunun önündeki ve ardındaki iki nokta üstüste " "işaretlerini kaldırın)" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -443,7 +445,7 @@ msgstr "" "-execdir ve -okdir seçeneklerinde uygulama ismi içinde {} kullanmamalısınız, " "çünkü bu potensiyel bir güvenlik açığıdır." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "-exec%s ... + ile sadece bir {} desteklenmektedir" @@ -453,16 +455,16 @@ msgstr "-exec%s ... + ile sadece bir {} desteklenmektedir" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "ayrılamaz" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "%s beklenirken hata oluştu" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s, %d sinyali ile sonlandırıldı" diff --git a/po/vi.po b/po/vi.po index d5b79e34..551aab6a 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-02 17:14+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -132,16 +132,16 @@ msgstr "^[cC]" msgid "^[nN]" msgstr "^[kK]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "rỗ tiếc — chèn mặc định điều «and» một cách không hợp lệ." -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "Cách sử dụng: %s [-H] [-L] [-P] [đường_dẫn...] [biểu_thức]\n" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -150,44 +150,44 @@ msgstr "" "điều làm ảnh hướng đến cỡ khối: biến môi trường «POSIXLY_CORRECT» (cách " "Posix đúng)" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "đương dẫn phải đi trước biểu thức" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "vị ngữ không hợp lệ « %s »" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "thiếu đối số đối với « %s »" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "đối số « %s » không hợp lệ đối với « %s »" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "không ngờ vị ngữ thêm" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "không gọi được thư mục hiện có" -#: find/find.c:838 +#: find/find.c:582 #, 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:848 +#: find/find.c:592 #, 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:943 +#: find/find.c:687 #, c-format msgid "" "%s%s changed during execution of %s (old device number %ld, new device " @@ -196,7 +196,7 @@ msgstr "" "«%s%s» đã thay đổi trong khi thì hành « %s » (số thiết bị cũ «%ld», số thiết " "bị mới «%ld», loại hệ thống tập tin là « %s ») [nhắc «%ld»]" -#: find/find.c:980 +#: find/find.c:724 #, c-format msgid "" "%s%s changed during execution of %s (old inode number %ld, new inode number %" @@ -205,7 +205,7 @@ msgstr "" "«%s%s» đã thay đổi trong khi thì hành « %s » (số inode cũ «%ld», số inode " "mới «%ld», loại hệ thống tập tin là « %s ») [nhắc «%ld»]" -#: find/find.c:1517 +#: find/find.c:1261 #, c-format msgid "" "Symbolic link `%s' is part of a loop in the directory hierarchy; we have " @@ -214,7 +214,7 @@ msgstr "" "Liên kết tương trưng « %s » là phần vòng lặp trong tôn ti thư mục ấy; đã " "thăm thư mục về mà nó hướng rồi." -#: find/find.c:1532 +#: find/find.c:1276 #, c-format msgid "" "Filesystem loop detected; `%s' has the same device number and inode as a " @@ -223,20 +223,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ố thiết bị và " "inode với thư mục «%d %s»." -#: find/find.c:1536 +#: find/find.c:1280 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:1537 +#: find/find.c:1281 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:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "cảnh báo: không đang theo liên kết tương trưng %s." -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -253,7 +253,7 @@ msgstr "" msgid "unknown" msgstr "chưa biết" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -266,7 +266,7 @@ msgstr "" "điều thử được ghi rõ cả hai trước lẫn sau nó ). Hãy ghi rõ tùy chọn trước " "đối số khác.\n" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." @@ -274,12 +274,12 @@ msgstr "" "cảnh báo: tùy chọn «-d» bị phản đối nên hãy sử dụng tùy chọn «-depth» (độ " "sâu) thay thế, vì nó là tính năng tuân theo POSIX." -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "Cách sử dụng: %s [đường_dẫn...] [biểu_thức]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" @@ -289,7 +289,7 @@ msgstr "" "đường dẫn mặc định là thư mục hiện có; biểu thức mặc định là «-print» (in)\n" "biểu thức có thể bao gồm: toán tử, tùy chọn, điều thử, và hành động:\n" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -302,7 +302,7 @@ msgstr "" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" "[EXPR - biểu thức; not - không phải; and - và; or - hay]\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -326,7 +326,7 @@ msgstr "" "\t-ignore_readdir_race \t\t(bỏ qua thư mục đọc [race])\n" "\t-noignore_readdir_race \t(không bỏ qua thư mục đọc [race])\n" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -358,9 +358,11 @@ msgstr "" "\t-name MẤÚ \t(tên)\n" "\t-newer TẬP_TIN \t(mới hơn)" -#: find/parser.c:802 +#: find/parser.c:842 +#, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -378,7 +380,7 @@ msgstr "" "-user TÊN \t\t(người dùng)\n" "-xtype [bcdpfls] \t(loại)\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -405,7 +407,7 @@ msgstr "" "\t-execdir COMMAND\n" "\t-execdir COMMAND {} + -okdir COMMAND\n" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -416,11 +418,11 @@ msgstr "" "được,\n" "bằng cách gởi thư cho ." -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "không kiểm tra sự đúng mực chức năng thư viện «fnmatch()» được." -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -435,48 +437,48 @@ msgstr "" "bạn, hoặc có lẽ « -samefile ». Hoặc, nếu bạn có sử dụng công cụ « grep » của " "GNU, bạn có thể sử dụng « find ... -print0 | grep -FzZ %s »." -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" "cảnh báo: vị ngữ « -ipath » (đường dẫn) bị phản đối thì hãy sử dụng tùy chọn " "« -iwholename » (tên đầy đủ) thay thế." -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "chế độ không hợp lệ « %s »" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "đối số trống không hợp lệ đối với tùy chọn «-size» (cỡ)" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "loại «-size» (cỡ) không hợp lệ «%c»" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "Trình find (tìm) phiên bản « %s » của GNU\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "Tính năng hoặt động:" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "cảnh báo: không chấp nhận ký tự thoát «\\%c»" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "cảnh báo: không chấp nhận chỉ thị định dạng «%%%c»" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -489,7 +491,7 @@ msgstr "" "hiện ra «$PATH» của bạn (có nghĩa là hãy bỏ dấu chấm «.» hay ký tự hai chấm " "đi trước hay đi theo)." -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -497,7 +499,7 @@ msgstr "" "Không cho phép sử dụng ký tự «{}» trong tên trình tiện ích cho hai đối số «-" "execdir» và «-okdir», vì không an toàn." -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "Hỗ trợ chỉ một thể hiện «{}» với đối số «-exec%s ... +»" @@ -507,16 +509,16 @@ msgstr "Hỗ trợ chỉ một thể hiện «{}» với đối số «-exec%s . msgid "< %s ... %s > ? " msgstr "< %s ... %s > không? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "không tạo tiến trình con được" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "gặp lỗi khi đời « %s »" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "« %s » bị chấm dứt do tín hiệu «%d»" diff --git a/po/zh_CN.po b/po/zh_CN.po index d03bd8fe..8f0c99ac 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.1.7\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2002-09-03 14:29+0800\n" "Last-Translator: Wang Li \n" "Language-Team: Chinese (simplified) \n" @@ -129,100 +129,100 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" -#: find/util.c:198 +#: find/util.c:209 #, fuzzy, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "÷%s [·...] [ʽ]\n" -#: find/find.c:457 +#: find/find.c:195 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:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "·ڱʽ֮ǰ" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "Чԡ%s" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "©%sIJ" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "%2$sЧ%1$s" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "޷ȡǰĿ¼" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -235,7 +235,7 @@ msgstr "" msgid "unknown" msgstr "δ֪" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -244,18 +244,18 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "÷%s [·...] [ʽ]\n" -#: find/parser.c:785 +#: find/parser.c:825 #, fuzzy msgid "" "\n" @@ -268,7 +268,7 @@ msgstr "" " ( ʽ ) ! ʽ -not ʽ ʽ1 -a ʽ2 ʽ1 -and ʽ" "2\n" -#: find/parser.c:788 +#: find/parser.c:828 #, fuzzy msgid "" "operators (decreasing precedence; -and is implicit where no others are " @@ -282,7 +282,7 @@ msgstr "" " ( ʽ ) ! ʽ -not ʽ ʽ1 -a ʽ2 ʽ1 -and ʽ" "2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -291,7 +291,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 #, fuzzy msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" @@ -305,10 +305,11 @@ msgstr "" "ʽ\n" " -links N -lname ƥģʽ -mmin N -mtime N -name ƥģʽ -newer ļ\n" -#: find/parser.c:802 +#: find/parser.c:842 #, fuzzy msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" @@ -316,7 +317,7 @@ msgstr "" " -size N[bckw] -true -type [bcdpfls] -uid N -used N -user \n" " -xtype [bcdpfls]\n" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -324,18 +325,18 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" "email to ." msgstr "" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -345,46 +346,46 @@ msgid "" "use 'find ... -print0 | grep -FzZ %s'." msgstr "" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "Ƿģʽ%s" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size null Ч" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "Ч -size ͡%c" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find 汾 %s\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "棺޷ʶתַ\\%c" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "棺ʶĸʽָ%%%c" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -393,13 +394,13 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." msgstr "" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "" @@ -409,16 +410,16 @@ msgstr "" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "޷ fork" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "ȴ %s ʱ" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s ź %d ֹ" diff --git a/po/zh_TW.po b/po/zh_TW.po index 4a3cc5f6..02ae2118 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: findutils 4.2.24\n" "Report-Msgid-Bugs-To: bug-findutils@gnu.org\n" -"POT-Creation-Date: 2005-11-19 00:36-0800\n" +"POT-Creation-Date: 2005-11-21 23:55-0800\n" "PO-Revision-Date: 2005-08-10 16:38+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -129,16 +129,16 @@ msgstr "^[yY]" msgid "^[nN]" msgstr "^[nN]" -#: find/util.c:108 +#: find/util.c:119 msgid "oops -- invalid default insertion of and!" msgstr "" -#: find/util.c:198 +#: find/util.c:209 #, c-format msgid "Usage: %s [-H] [-L] [-P] [path...] [expression]\n" msgstr "" -#: find/find.c:457 +#: find/find.c:195 msgid "" "The environment variable FIND_BLOCK_SIZE is not supported, the only thing " "that affects the block size is the POSIXLY_CORRECT environment variable" @@ -146,85 +146,85 @@ msgstr "" "環境變數 FIND_BLOCK_SIZE 已經不再支援,唯一一個能夠影響檔案區段大小的環境變數" "是 POSIXLY_CORRECT" -#: find/find.c:539 +#: find/find.c:277 msgid "paths must precede expression" msgstr "" -#: find/find.c:545 +#: find/find.c:283 #, c-format msgid "invalid predicate `%s'" msgstr "" -#: find/find.c:553 +#: find/find.c:291 #, c-format msgid "missing argument to `%s'" msgstr "‘%s’ 後缺少了參數" -#: find/find.c:555 +#: find/find.c:293 #, c-format msgid "invalid argument `%s' to `%s'" msgstr "" -#: find/find.c:611 +#: find/find.c:349 msgid "unexpected extra predicate" msgstr "" -#: find/find.c:663 find/find.c:666 +#: find/find.c:401 find/find.c:404 msgid "cannot get current directory" msgstr "無法決定當前目錄位置" -#: find/find.c:838 +#: find/find.c:582 #, c-format msgid "Warning: filesystem %s has recently been unmounted." msgstr "警告︰檔案系統 %s 剛剛被卸載。" -#: find/find.c:848 +#: find/find.c:592 #, c-format msgid "Warning: filesystem %s has recently been mounted." msgstr "警告︰檔案系統 %s 剛剛被掛載。" -#: find/find.c:943 +#: find/find.c:687 #, 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:980 +#: find/find.c:724 #, 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:1517 +#: find/find.c:1261 #, 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:1532 +#: find/find.c:1276 #, 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:1536 +#: find/find.c:1280 msgid "level higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1537 +#: find/find.c:1281 msgid "levels higher in the filesystem hierarchy" msgstr "" -#: find/find.c:1906 +#: find/find.c:1513 #, c-format msgid "warning: not following the symbolic link %s" msgstr "" -#: find/find.c:1950 +#: find/find.c:1557 #, c-format msgid "" "WARNING: Hard link count is wrong for %s: this may be a bug in your " @@ -237,7 +237,7 @@ msgstr "" msgid "unknown" msgstr "" -#: find/parser.c:374 +#: find/parser.c:414 #, c-format msgid "" "warning: you have specified the %s option after a non-option argument %s, " @@ -246,26 +246,26 @@ msgid "" "arguments.\n" msgstr "" -#: find/parser.c:613 +#: find/parser.c:653 msgid "" "warning: the -d option is deprecated; please use -depth instead, because the " "latter is a POSIX-compliant feature." msgstr "" "警告:-d 選項已經過時,請改用 -depth,因為後者才是符合 POSIX 標準的選項。" -#: find/parser.c:783 +#: find/parser.c:823 #, c-format msgid "Usage: %s [path...] [expression]\n" msgstr "用法:%s [路徑...] [表達式]\n" -#: find/parser.c:785 +#: find/parser.c:825 msgid "" "\n" "default path is the current directory; default expression is -print\n" "expression may consist of: operators, options, tests, and actions:\n" msgstr "" -#: find/parser.c:788 +#: find/parser.c:828 msgid "" "operators (decreasing precedence; -and is implicit where no others are " "given):\n" @@ -276,7 +276,7 @@ msgstr "" " ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n" " EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n" -#: find/parser.c:792 +#: find/parser.c:832 msgid "" "positional options (always true): -daystart -follow -regextype\n" "\n" @@ -285,7 +285,7 @@ msgid "" " --version -xdev -ignore_readdir_race -noignore_readdir_race\n" msgstr "" -#: find/parser.c:797 +#: find/parser.c:837 msgid "" "tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n" " -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n" @@ -294,14 +294,15 @@ msgid "" " -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE" msgstr "" -#: find/parser.c:802 +#: find/parser.c:842 msgid "" " -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n" +" -readable -writable -executable\n" " -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n" " -used N -user NAME -xtype [bcdpfls]\n" msgstr "" -#: find/parser.c:806 +#: find/parser.c:847 msgid "" "actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n" " -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n" @@ -309,7 +310,7 @@ msgid "" " -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n" msgstr "" -#: find/parser.c:812 +#: find/parser.c:853 msgid "" "Report (and track progress on fixing) bugs via the findutils bug-reporting\n" "page at http://savannah.gnu.org/ or, if you have no web access, by sending\n" @@ -319,11 +320,11 @@ msgstr "" "問題修正的進度)。又或者如果您無法瀏覽網頁,可以選擇用電子郵件寄至\n" "。" -#: find/parser.c:843 +#: find/parser.c:884 msgid "sanity check of the fnmatch() library function failed." msgstr "測試 fnmatch() 是否可用時出錯。" -#: find/parser.c:858 +#: find/parser.c:899 #, c-format msgid "" "warning: Unix filenames usually don't contain slashes (though pathnames " @@ -337,46 +338,46 @@ msgstr "" "有用。又或者,如果您使用 GNU grep,可以嘗試使用 'find ... -print0 | grep -" "FzZ %s'。" -#: find/parser.c:900 +#: find/parser.c:941 msgid "" "warning: the predicate -ipath is deprecated; please use -iwholename instead." msgstr "警告:-ipath 選項已過時,請改用 -iwholename。" -#: find/parser.c:1340 +#: find/parser.c:1381 #, c-format msgid "invalid mode `%s'" msgstr "模式 ‘%s’ 無效" -#: find/parser.c:1512 +#: find/parser.c:1553 msgid "invalid null argument to -size" msgstr "-size 後是無效的空白參數" -#: find/parser.c:1558 +#: find/parser.c:1599 #, c-format msgid "invalid -size type `%c'" msgstr "-size 指定的檔案大小單位 ‘%c’ 無效" -#: find/parser.c:1676 +#: find/parser.c:1747 #, c-format msgid "GNU find version %s\n" msgstr "GNU find %s 版本\n" -#: find/parser.c:1677 +#: find/parser.c:1748 #, c-format msgid "Features enabled: " msgstr "啟用了的功能:" -#: find/parser.c:1924 +#: find/parser.c:2002 #, c-format msgid "warning: unrecognized escape `\\%c'" msgstr "" -#: find/parser.c:1970 +#: find/parser.c:2048 #, c-format msgid "warning: unrecognized format directive `%%%c'" msgstr "" -#: find/parser.c:2076 +#: find/parser.c:2154 #, c-format msgid "" "The current directory is included in the PATH environment variable, which is " @@ -385,7 +386,7 @@ msgid "" "trailing colons)" msgstr "" -#: find/parser.c:2173 +#: find/parser.c:2251 msgid "" "You may not use {} within the utility name for -execdir and -okdir, because " "this is a potential security problem." @@ -393,7 +394,7 @@ msgstr "" "您不應該在 -execdir 和 -okdir 中使用 {} 作為程式名稱,因為這樣做可能會造成安" "全漏洞。" -#: find/parser.c:2196 +#: find/parser.c:2274 #, c-format msgid "Only one instance of {} is supported with -exec%s ... +" msgstr "在 -exec%s ... + 裡面只可以使用一次 {}" @@ -403,16 +404,16 @@ msgstr "在 -exec%s ... + 裡面只可以使用一次 {}" msgid "< %s ... %s > ? " msgstr "< %s ... %s > ? " -#: find/pred.c:1551 xargs/xargs.c:1029 +#: find/pred.c:1570 xargs/xargs.c:1029 msgid "cannot fork" msgstr "fork 失敗" -#: find/pred.c:1591 +#: find/pred.c:1610 #, c-format msgid "error waiting for %s" msgstr "" -#: find/pred.c:1599 +#: find/pred.c:1618 #, c-format msgid "%s terminated by signal %d" msgstr "%s 因訊號 %d 而終止"