From 10a4e4150a80cea016284e7fd9e7f6ee493cbb8a Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Wed, 7 Dec 2011 09:29:27 -0500 Subject: [PATCH] commit bash-20080925 snapshot --- CWRU/CWRU.chlog | 23 +- MANIFEST | 1 + builtins/bind.def | 8 +- builtins/common.c | 47 +- builtins/common.h | 1 + doc/bash.1 | 2 + doc/bashref.texi | 2 + examples/INDEX.html | 8 + examples/INDEX.txt | 2 + examples/scripts/timeout3 | 91 ++ po/af.gmo | Bin 1231 -> 1231 bytes po/af.po | 275 ++-- po/bash.pot | 275 ++-- po/bg.gmo | Bin 36341 -> 36341 bytes po/bg.po | 275 ++-- po/ca.gmo | Bin 10101 -> 10101 bytes po/ca.po | 275 ++-- po/cs.gmo | Bin 26073 -> 156273 bytes po/cs.po | 1240 ++++++++++------- po/de.gmo | Bin 9705 -> 35019 bytes po/de.po | 1948 ++++++++++++++++++--------- po/en@boldquot.gmo | Bin 153923 -> 154135 bytes po/en@boldquot.po | 282 ++-- po/en@quot.gmo | Bin 152435 -> 152647 bytes po/en@quot.po | 282 ++-- po/eo.gmo | Bin 25421 -> 25421 bytes po/eo.po | 275 ++-- po/es.gmo | Bin 31030 -> 31030 bytes po/es.po | 275 ++-- po/et.gmo | Bin 12257 -> 12257 bytes po/et.po | 275 ++-- po/fr.gmo | Bin 27590 -> 27590 bytes po/fr.po | 275 ++-- po/hu.gmo | Bin 9591 -> 9591 bytes po/hu.po | 275 ++-- po/id.gmo | Bin 120317 -> 154986 bytes po/id.po | 1857 +++++++++++++++++--------- po/ja.gmo | Bin 8183 -> 8183 bytes po/ja.po | 275 ++-- po/lt.gmo | Bin 24059 -> 24059 bytes po/lt.po | 275 ++-- po/nl.gmo | Bin 26025 -> 156402 bytes po/nl.po | 2659 +++++++++++++++++++------------------ po/pl.gmo | Bin 26025 -> 26025 bytes po/pl.po | 275 ++-- po/pt_BR.gmo | Bin 9926 -> 9926 bytes po/pt_BR.po | 275 ++-- po/ro.gmo | Bin 9699 -> 9699 bytes po/ro.po | 275 ++-- po/ru.gmo | Bin 9142 -> 9142 bytes po/ru.po | 275 ++-- po/sk.gmo | Bin 26299 -> 47375 bytes po/sk.po | 866 ++++++------ po/sv.gmo | Bin 6708 -> 151712 bytes po/sv.po | 896 ++++++++----- po/tr.gmo | Bin 25573 -> 25573 bytes po/tr.po | 275 ++-- po/vi.gmo | Bin 31001 -> 167197 bytes po/vi.po | 716 ++++++---- po/zh_TW.gmo | Bin 5993 -> 5993 bytes po/zh_TW.po | 275 ++-- redir.c | 3 +- 62 files changed, 8960 insertions(+), 6649 deletions(-) create mode 100644 examples/scripts/timeout3 diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index d852bd2d..5d1095e5 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -6928,9 +6928,28 @@ jobs.c interrupt occurred. The behavior is dependent on the shell compatibility level being > 32 (bash-4.0 and above) - 9/24 + 9/23 ---- +redir.c + - don't bother reporting an error with a file descriptor, even if + the errno is EBADF, if the redirection error (e.g., NOCLOBBER) + can't have anything to do with the fd. Fixes bug reported by + "David A. Harding" , debian bug #499633. + + 9/24 + ---- builtins/declare.def - make `declare [option] var' (and the `typeset' equivalent) create invisible variables, instead of assigning the null string to a - visible variable. + visible variable. Fixes bug reported by Bernd Eggink + + 9/25 + ---- +builtins/common.[ch] + - new function, builtin_warning(), like builtin_error but for warning + messages + +builtins/bind.def + - experimental: print a warning, but go on, if line editing not active + when bind is invoked. Suggested by Rocky Bernstein + diff --git a/MANIFEST b/MANIFEST index cb7e3148..a08cc822 100644 --- a/MANIFEST +++ b/MANIFEST @@ -697,6 +697,7 @@ examples/scripts/shprompt f examples/scripts/spin.bash f examples/scripts/timeout f examples/scripts/timeout2 f +examples/scripts/timeout3 f examples/scripts/vtree2 f examples/scripts/vtree3 f examples/scripts/vtree3a f diff --git a/builtins/bind.def b/builtins/bind.def index 8909b440..d04748aa 100644 --- a/builtins/bind.def +++ b/builtins/bind.def @@ -116,8 +116,12 @@ bind_builtin (list) if (no_line_editing) { - builtin_error ("line editing not enabled"); +#if 0 + builtin_error (_("line editing not enabled")); return (EXECUTION_FAILURE); +#else + builtin_warning (_("line editing not enabled")); +#endif } kmap = saved_keymap = (Keymap) NULL; @@ -125,7 +129,7 @@ bind_builtin (list) initfile = map_name = fun_name = unbind_name = remove_seq = (char *)NULL; return_code = EXECUTION_SUCCESS; - if (!bash_readline_initialized) + if (bash_readline_initialized == 0) initialize_readline (); begin_unwind_frame ("bind_builtin"); diff --git a/builtins/common.c b/builtins/common.c index 436ce011..b31cec37 100644 --- a/builtins/common.c +++ b/builtins/common.c @@ -88,16 +88,10 @@ sh_builtin_func_t *this_shell_builtin = (sh_builtin_func_t *)NULL; /* This is a lot like report_error (), but it is for shell builtins instead of shell control structures, and it won't ever exit the shell. */ -void -#if defined (PREFER_STDARG) -builtin_error (const char *format, ...) -#else -builtin_error (format, va_alist) - const char *format; - va_dcl -#endif + +static void +builtin_error_prolog () { - va_list args; char *name; name = get_name_for_error (); @@ -108,6 +102,41 @@ builtin_error (format, va_alist) if (this_command_name && *this_command_name) fprintf (stderr, "%s: ", this_command_name); +} + +void +#if defined (PREFER_STDARG) +builtin_error (const char *format, ...) +#else +builtin_error (format, va_alist) + const char *format; + va_dcl +#endif +{ + va_list args; + + builtin_error_prolog (); + + SH_VA_START (args, format); + + vfprintf (stderr, format, args); + va_end (args); + fprintf (stderr, "\n"); +} + +void +#if defined (PREFER_STDARG) +builtin_warning (const char *format, ...) +#else +builtin_warning (format, va_alist) + const char *format; + va_dcl +#endif +{ + va_list args; + + builtin_error_prolog (); + fprintf (stderr, _("warning: ")); SH_VA_START (args, format); diff --git a/builtins/common.h b/builtins/common.h index bbae9132..a3835ca2 100644 --- a/builtins/common.h +++ b/builtins/common.h @@ -59,6 +59,7 @@ /* Functions from common.c */ extern void builtin_error __P((const char *, ...)) __attribute__((__format__ (printf, 1, 2))); +extern void builtin_warning __P((const char *, ...)) __attribute__((__format__ (printf, 1, 2))); extern void builtin_usage __P((void)); extern void no_args __P((WORD_LIST *)); extern int no_options __P((WORD_LIST *)); diff --git a/doc/bash.1 b/doc/bash.1 index 001443ae..ee4733b6 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -8063,6 +8063,7 @@ by default when the shell is interactive, unless the shell is started with the .B \-\-noediting option. +This also affects the editing interface used for \fBread \-e\fP. .TP 8 .B errtrace Same as @@ -8159,6 +8160,7 @@ Same as .TP 8 .B vi Use a vi-style command line editing interface. +This also affects the editing interface used for \fBread \-e\fP. .TP 8 .B xtrace Same as diff --git a/doc/bashref.texi b/doc/bashref.texi index ea874d25..28d5ac33 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -4005,6 +4005,7 @@ Same as @code{-B}. @item emacs Use an @code{emacs}-style line editing interface (@pxref{Command Line Editing}). +This also affects the editing interface used for @code{read -e}. @item errexit Same as @code{-e}. @@ -4079,6 +4080,7 @@ Same as @code{-v}. @item vi Use a @code{vi}-style line editing interface. +This also affects the editing interface used for @code{read -e}. @item xtrace Same as @code{-x}. diff --git a/examples/INDEX.html b/examples/INDEX.html index 150701ca..5e8cdc69 100644 --- a/examples/INDEX.html +++ b/examples/INDEX.html @@ -722,6 +722,14 @@ ./scripts/timeout Give rsh(1) a shorter timeout. + + ./scripts/timeout2 + Execute a given command with a timeout. + + + ./scripts/timeout3 + Execute a given command with a timeout. + ./scripts/vtree2 Display a tree printout of dir in 1k blocks. diff --git a/examples/INDEX.txt b/examples/INDEX.txt index ab69e6cb..db2858fd 100644 --- a/examples/INDEX.txt +++ b/examples/INDEX.txt @@ -171,6 +171,8 @@ Path Description X-Ref ./scripts/shprompt Display a prompt and get an answer satisfying certain criteria. ask ./scripts/spin.bash Display a 'spinning wheel' to show progress. ./scripts/timeout Give rsh(1) a shorter timeout. +./scripts/timeout2 Execute a given command with a timeout. +./scripts/timeout3 Execute a given command with a timeout. ./scripts/vtree2 Display a tree printout of dir in 1k blocks. tree ./scripts/vtree3 Display a graphical tree printout of dir. tree ./scripts/vtree3a Display a graphical tree printout of dir. tree diff --git a/examples/scripts/timeout3 b/examples/scripts/timeout3 new file mode 100644 index 00000000..5c19d2ec --- /dev/null +++ b/examples/scripts/timeout3 @@ -0,0 +1,91 @@ +#!/bin/bash +# +# The Bash shell script executes a command with a time-out. +# Upon time-out expiration SIGTERM (15) is sent to the process. If the signal +# is blocked, then the subsequent SIGKILL (9) terminates it. +# +# Based on the Bash documentation example. + +# Hello Chet, +# please find attached a "little easier" :-) to comprehend +# time-out example. If you find it suitable, feel free to include +# anywhere: the very same logic as in the original examples/scripts, a +# little more transparent implementation to my taste. +# +# Dmitry V Golovashkin + +scriptName="${0##*/}" + +declare -i DEFAULT_TIMEOUT=9 +declare -i DEFAULT_INTERVAL=1 +declare -i DEFAULT_DELAY=1 + +# Timeout. +declare -i timeout=DEFAULT_TIMEOUT +# Interval between checks if the process is still alive. +declare -i interval=DEFAULT_INTERVAL +# Delay between posting the SIGTERM signal and destroying the process by SIGKILL. +declare -i delay=DEFAULT_DELAY + +function printUsage() { + cat < 0)); do + sleep $interval + kill -0 $$ || exit 0 + ((t -= interval)) + done + + # Be nice, post SIGTERM first. + # The 'exit 0' below will be executed if any preceeding command fails. + kill -s SIGTERM $$ && kill -0 $$ || exit 0 + sleep $delay + kill -s SIGKILL $$ +) 2> /dev/null & + +exec "$@" diff --git a/po/af.gmo b/po/af.gmo index b4b58fe600b22b534b382cd251bc62d478d1c887..721f17726e961a98aee836ee41fda3cd699bce2e 100644 GIT binary patch delta 23 ecmX@ld7g8_K_)IsT_Y0(LqjVQ%gv{mSeO7?pa!V` delta 23 ecmX@ld7g8_K_)H>T_aNkLqjV=\n" "Language-Team: Afrikaans \n" @@ -14,27 +14,27 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 #, fuzzy msgid "bad array subscript" msgstr "Os/2 Biskaart Skikking" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: illegal option -- %c\n" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -63,32 +63,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: kan nie %s skep nie" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: bevel nie gevind nie" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s: leesalleen-funksie" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -244,12 +244,12 @@ msgstr "" msgid "write error: %s" msgstr "pypfout: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: dubbelsinnige herroetering" @@ -285,7 +285,7 @@ msgstr "" msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: leesalleen-funksie" @@ -324,7 +324,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: kan nie %s skep nie" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -340,7 +340,7 @@ msgstr "%s: kan nie 'n bin msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kan nie 'n binre ler uitvoer nie" @@ -454,7 +454,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s: heelgetal-uitdrukking is verwag\n" @@ -483,12 +483,12 @@ msgstr "Onbekende fout %d" msgid "expression expected" msgstr "Bools uitdrukking verwag" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -625,17 +625,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "pypfout: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -814,37 +814,37 @@ msgstr "Veranderlike boom" msgid "\atimed out waiting for input: auto-logout\n" msgstr "" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "pypfout: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: bevel nie gevind nie" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: is 'n gids" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" @@ -928,7 +928,7 @@ msgstr "%s: heelgetal-uitdrukking is verwag\n" msgid "getcwd: cannot access parent directories" msgstr "Kan nie die program uitvoer nie:" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" @@ -943,148 +943,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "E108: Geen veranderlike: \"%s\"" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Sein kwaliteit:" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Klaar" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 #, fuzzy msgid "Stopped" msgstr "Op gehou" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Op gehou" -#: jobs.c:1435 +#: jobs.c:1438 #, fuzzy msgid "Running" msgstr "aktief" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Klaar(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Verlaat %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Onbekende status" -#: jobs.c:1541 +#: jobs.c:1544 #, fuzzy, c-format msgid "(core dumped) " msgstr "Kern Ontwikkelaar" -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "Aktiveer nou dadelik" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "Fout in die skryf van %s" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, fuzzy, c-format msgid "%s: job has terminated" msgstr "Die bediener beindig Die verbinding." -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "3d modus" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, fuzzy, c-format msgid " (core dumped)" msgstr "Kern Ontwikkelaar" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, fuzzy, c-format msgid "(wd now: %s)\n" msgstr "Aktiveer nou dadelik" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "Inisialisering van OpenGL het misluk." -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "Inisialisering van OpenGL het misluk." -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "geen taakbeheer in hierdie dop nie" @@ -1344,31 +1344,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: dubbelsinnige herroetering" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "Jy het gespesifiseer 'n bestaande ler" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "Pypfout.\n" @@ -1438,7 +1438,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1644,81 +1644,81 @@ msgstr "Sein kwaliteit:" msgid "Unknown Signal #%d" msgstr "Sein kwaliteit:" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "--Geen rels in buffer--" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "Woord Substitusie" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "Woord Substitusie" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "Woord Substitusie" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "Woord Substitusie" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "" -#: subst.c:5600 +#: subst.c:5603 #, fuzzy, c-format msgid "%s: substring expression < 0" msgstr "ongeldige uitdrukking" -#: subst.c:6646 +#: subst.c:6655 #, fuzzy, c-format msgid "%s: bad substitution" msgstr "Woord Substitusie" -#: subst.c:6722 +#: subst.c:6735 #, fuzzy, c-format msgid "$%s: cannot assign in this way" msgstr "Kan nie soek 'n handtekening in hierdie boodskap!" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "--Geen rels in buffer--" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1758,23 +1758,23 @@ msgstr "%s: bin msgid "missing `]'" msgstr "Ontbrekende '>'" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "Die sein nommer wat was gevang het" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "" @@ -1789,33 +1789,33 @@ msgstr "" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2968,8 +2968,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2978,7 +2979,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2990,7 +2991,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3072,7 +3073,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3092,7 +3093,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3111,7 +3112,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3131,7 +3132,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3142,7 +3143,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3156,7 +3157,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3170,7 +3171,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3247,7 +3248,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3255,7 +3256,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3267,7 +3268,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3303,7 +3304,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3333,7 +3334,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3377,7 +3378,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3395,7 +3396,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3412,7 +3413,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3426,7 +3427,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3439,7 +3440,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3456,7 +3457,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3476,7 +3477,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3492,7 +3493,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3503,7 +3504,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3524,7 +3525,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3535,7 +3536,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3546,7 +3547,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3560,7 +3561,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3571,7 +3572,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3585,7 +3586,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3596,7 +3597,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3624,7 +3625,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3678,7 +3679,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3709,7 +3710,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3736,7 +3737,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3765,7 +3766,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3786,7 +3787,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3816,7 +3817,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3838,7 +3839,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3851,7 +3852,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3880,7 +3881,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/bash.pot b/po/bash.pot index 0d4a4704..e1a5b49e 100644 --- a/po/bash.pot +++ b/po/bash.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,26 +17,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -65,32 +65,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -236,12 +236,12 @@ msgstr "" msgid "write error: %s" msgstr "" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -332,7 +332,7 @@ msgstr "" msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "" @@ -445,7 +445,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "" @@ -472,12 +472,12 @@ msgstr "" msgid "expression expected" msgstr "" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -610,17 +610,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -791,36 +791,36 @@ msgstr "" msgid "\atimed out waiting for input: auto-logout\n" msgstr "" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "getcwd: cannot access parent directories" msgstr "" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -910,144 +910,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "" @@ -1298,31 +1298,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "" @@ -1387,7 +1387,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1561,77 +1561,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1668,22 +1668,22 @@ msgstr "" msgid "missing `]'" msgstr "" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "" @@ -1698,33 +1698,33 @@ msgstr "" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2828,8 +2828,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2838,7 +2839,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2850,7 +2851,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -2932,7 +2933,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -2952,7 +2953,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -2971,7 +2972,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -2991,7 +2992,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3002,7 +3003,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3016,7 +3017,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3030,7 +3031,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3107,7 +3108,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3115,7 +3116,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3127,7 +3128,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3163,7 +3164,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3193,7 +3194,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3237,7 +3238,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3255,7 +3256,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3272,7 +3273,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3286,7 +3287,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3299,7 +3300,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3316,7 +3317,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3336,7 +3337,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3352,7 +3353,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3363,7 +3364,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3384,7 +3385,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3395,7 +3396,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3406,7 +3407,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3420,7 +3421,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3431,7 +3432,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3445,7 +3446,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3456,7 +3457,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3484,7 +3485,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3538,7 +3539,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3569,7 +3570,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3596,7 +3597,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3625,7 +3626,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3646,7 +3647,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3676,7 +3677,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3698,7 +3699,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3711,7 +3712,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3740,7 +3741,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/bg.gmo b/po/bg.gmo index 44d09ec38157f96a8fe7b92b88427b7ad7573467..151624112553eba667ee698f9db84dd9966744aa 100644 GIT binary patch delta 25 hcmex5o9XLprVXntxh!>!OcV?atxPO8Z?$v?0RVzl2<-p> delta 25 hcmex5o9XLprVXntxh!;zOce|btqhGfZ?$v?0RVy;2;=|& diff --git a/po/bg.po b/po/bg.po index 3123c30b..0da9dfc6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2007-07-26 07:18+0300\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -16,26 +16,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "неправилен индекс на масив" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: грешно име на действие" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: не може да се присвоява на нецифров индекс" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -66,32 +66,32 @@ msgstr "в %2$s липсва затварящ знак „%1$c“" msgid "%s: missing colon separator" msgstr "%s: разделителят двоеточие липсва" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "„%s“: грешно име на подредбата на функциите на клавишите" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: не може да се прочете: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "„%s“: не може да се премахне присвояване" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "„%s“: непознато име на функция" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s не може да се зададе на никой клавиш.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s може да се извика чрез " @@ -240,12 +240,12 @@ msgstr "%s: не е команда вградена в обвивката" msgid "write error: %s" msgstr "грешка при запис: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: грешка при получаването на текущата директория: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: нееднозначно указана задача" @@ -281,7 +281,7 @@ msgstr "може да се използва само във функция" msgid "cannot use `-f' to make functions" msgstr "„-f“ не може да се използва за създаването на функции" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: функция с права само за четене" @@ -320,7 +320,7 @@ msgstr "%s: не е зареден динамично" msgid "%s: cannot delete: %s" msgstr "%s: не може да се изтрие: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -336,7 +336,7 @@ msgstr "%s: не е обикновен файл" msgid "%s: file is too large" msgstr "%s: файлът е прекалено голям" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: двоичният файл не може да бъде изпълнен" @@ -460,7 +460,7 @@ msgstr "не може да се ползва едновременно повеч msgid "history position" msgstr "позиция в историята" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: неуспешно заместване чрез историята" @@ -487,12 +487,12 @@ msgstr "Неизвестна грешка" msgid "expression expected" msgstr "очаква се израз" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: грешно указване на файловия дескриптор" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: грешен файлов дескриптор: %s" @@ -688,17 +688,17 @@ msgstr "" "\n" " Стекът с директориите се визуализира с командата „dirs“." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: грешно указване на изтичането на времето" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "грешка при четене: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "„return“ е възможен само от функция или изпълнен в текущата обвивка скрипт" @@ -874,38 +874,38 @@ msgstr "" "^Gвремето за изчакване на вход изтече: следва автоматично излизане от " "системата\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "стандартният вход от /dev/null не може да бъде пренасочен: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "в променливата $TIMEFORMAT: „%c“: грешен форматиращ знак" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "грешка при запис: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" "%s: ограничение: в имената на командите не може да присъства знакът „/“" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: командата не е открита" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: лош интерпретатор" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "файловият дескриптор %d не може да се дублира като дескриптор %d" @@ -981,7 +981,7 @@ msgstr "%s: очаква се целочислен израз" msgid "getcwd: cannot access parent directories" msgstr "getcwd: родителските директории не могат да бъдат достъпени" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "не може да се изчисти режимът без забавяне на файловия дескриптор %d" @@ -999,145 +999,145 @@ msgstr "" "запазване на входа на bash: вече съществува буфер за новия файлов дескриптор " "%d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "изтриване на спряната задача %d в групата процеси %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" "описателен идентификатор на процес: %ld: няма такъв идентификатор на процес" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "изчакване: процесът с идентификатор %ld не е дъщерен на тази обвивка" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "изчакване: липсват данни за процес с идентификатор %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "изчакване на задача: задачата %d е спряна" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: задачата е приключила" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: задача %d вече е във фонов режим" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: предупреждение: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "в тази обвивка няма управление на задачите" @@ -1402,31 +1402,31 @@ msgstr "отпечатване: „%c“: неправилен форматир msgid "file descriptor out of range" msgstr "файловият дескриптор е извън допустимия диапазон" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: двусмислено пренасочване" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: не може да се презапише съществуващ файл" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: поради ограничение изходът не може да се пренасочи" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "не може да се създаде временен файл за вътрешен документ с „<<“: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port не се поддържа, ако няма поддръжка на мрежа" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "грешка при пренасочване: файловият дескриптор не може да бъде дублиран" @@ -1497,7 +1497,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "За да докладвате грешки използвайте командата „bashbug“.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "маска за обработката на сигнали: %d: невалидна операция" @@ -1673,79 +1673,79 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "лошо заместване: липсва затварящ знак „%s“ в %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: на член от масив не може да се присвои списък" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "не може да се създаде програмен канал за заместване на процеси" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "не може да се създаде дъщерен процес за заместване на процеси" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "именуваният програмен канал %s не може да се отвори за четене" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "именуваният програмен канал %s не може да се отвори за запис" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "именуваният програмен канал %s не може да се\n" "дублира като файловия дескриптор %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "не може да се създаде програмен канал за заместване на команди" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "не може да се създаде дъщерен процес за заместване на команди" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "заместване на команди: каналът не може да се дублира като fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: аргументът е null или не е зададен" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: изразът от подниза е < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: лошо заместване" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: не може да се задава по този начин" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "лошо заместване: липсва затварящ знак „%s“ в %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "няма съвпадение: %s" @@ -1782,17 +1782,17 @@ msgstr "%s: очаква се бинарен оператор" msgid "missing `]'" msgstr "липсва „]“" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "неправилен номер на сигнал" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" "стартиране на предстоящите капани: неправилна стойност в trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" @@ -1800,7 +1800,7 @@ msgstr "" "стартиране на предстоящите капани: обработката на сигнали е SIG_DFL.\n" "%d (%s) е преизпратено на текущата обвивка" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "обработка на капани: неправилен сигнал %d" @@ -1815,43 +1815,43 @@ msgstr "грешка при внасянето на дефиницията на msgid "shell level (%d) too high, resetting to 1" msgstr "нивото на обвивката (%d) е прекалено голямо. Задава се да е 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" "създаване на локална променлива: липсва контекст на функция в текущата " "област\n" "на видимост" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" "всички локални променливи: липсва контекст на функция в текущата област на\n" "видимост" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "неправилен знак на позиция %d в низа за изнасяне за %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "липсва „=“ в низа за изнасяне за %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "изваждане на контекст на променливи: в началото на структурата за променливи " "на\n" "обвивката (shell_variables) е нещо, което не е контекст на функция" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" "изваждане на контекст на променливи: липсва контекст за глобални променливи\n" "(global_variables)" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "изваждане на област: последният елемент структурата за променливи на " @@ -3292,8 +3292,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3337,7 +3338,7 @@ msgstr "" " ИНТЕРВАЛът за въвеждане или е зададен неправилен файлов дескриптор като\n" " аргумент на „-u“." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3349,7 +3350,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3518,7 +3519,7 @@ msgstr "" " съответно на $1, $2,… $n. Ако не са зададени АРГументи, се извеждат\n" " всички променливи на средата." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3538,7 +3539,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3557,7 +3558,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3577,7 +3578,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3588,7 +3589,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3609,7 +3610,7 @@ msgstr "" " са зададени АРГУМЕНТИ, те се превръщат в позиционни аргументи при\n" " изпълнението на ФАЙЛа." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3623,7 +3624,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3774,7 +3775,7 @@ msgstr "" " „-eq“ (=), „-ne“ (!=), „-lt“ (<),\n" " „-le“ (<=), „-gt“ (>) , „-ge“ (>=)." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3786,7 +3787,7 @@ msgstr "" " задължително да е знакът „]“, който да съответства на отварящата скоба " "„[“." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3798,7 +3799,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3854,7 +3855,7 @@ msgstr "" "на\n" " обвивката с командата „kill -signal $$“." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3884,7 +3885,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3963,7 +3964,7 @@ msgstr "" " - опцията „-t“, при която стойността е в секунди;\n" " - опцията „-u“, при която стойността е точният брой процеси." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3981,7 +3982,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3998,7 +3999,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -4020,7 +4021,7 @@ msgstr "" "се\n" " всички процеси в програмния канал на задачата." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -4040,7 +4041,7 @@ msgstr "" " всеки елемент в ДУМИте, ИМЕто се задава да е елементът и се изпълняват\n" " КОМАНДИте." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -4067,7 +4068,7 @@ msgstr "" "се\n" " изчислява да е 1." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -4105,7 +4106,7 @@ msgstr "" " изпълняват след всеки избор до изпълняването на команда за прекъсване\n" " (break)." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -4129,7 +4130,7 @@ msgstr "" "според\n" " стойността на променливата на средата $TIMEFORMAT." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -4143,7 +4144,7 @@ msgstr "" " Избирателно се изпълняват КОМАНДИ на база ДУМА, която напасва на ШАБЛОН.\n" " Шаблоните се разделят със знака „|“." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4180,7 +4181,7 @@ msgstr "" "ако\n" " никое тестово условие, не се е оценило като истина." -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4195,7 +4196,7 @@ msgstr "" "„while“\n" " е с изходен код, който е 0." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4210,7 +4211,7 @@ msgstr "" "„until“\n" " е с изходен код, който не е 0." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4224,7 +4225,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4239,7 +4240,7 @@ msgstr "" "се\n" " цял набор от команди." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4259,7 +4260,7 @@ msgstr "" " се изпълнява във фонов режим, все едно е била подадена като аргумент\n" " на командата „bg“." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4273,7 +4274,7 @@ msgstr "" " ИЗРАЗът се изчислява според правилата на аритметичното оценяване.\n" " Еквивалентно на „let ИЗРАЗ“." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4323,7 +4324,7 @@ msgstr "" " „&&“ и „||“ не оценят ИЗРАЗ2, ако ИЗРАЗ1 е достатъчен за определяне на\n" " стойността на израза." -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4452,7 +4453,7 @@ msgstr "" "кои\n" " команди да не се запазват в историята.\n" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4503,7 +4504,7 @@ msgstr "" " \n" " Можете да изведете стека на директорията с командата „dirs“." -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4548,7 +4549,7 @@ msgstr "" "\n" " Стекът с директориите се визуализира с командата „dirs“." -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4600,7 +4601,7 @@ msgstr "" " -N показва N-тия елемент отдясно в списъка показван от\n" " командата „dirs“, когато е стартирана без опции. Брои се от 0." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4621,7 +4622,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4668,7 +4669,7 @@ msgstr "" " вход за обвивката. Ако е включена опцията „-v“, изходът се поставя в\n" " променливата на обвивката VAR, вместо да се извежда на стандартния изход." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4690,7 +4691,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4711,7 +4712,7 @@ msgstr "" "с\n" " него." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4740,7 +4741,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/ca.gmo b/po/ca.gmo index 79e48d39e0d9f49311096f227318a26bcb56121f..7f7e16760424e3016b211485b14dc157290beb2d 100644 GIT binary patch delta 23 ecmezB_tkI1D={uhT_Y0(LqjVQ%gtZJ8U+Azm\n" "Language-Team: Catalan \n" @@ -15,26 +15,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "la matriu est? mal composta" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: opci? inv?lida" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: no es pot assignar a un ?ndex que no ?s num?ric" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -63,32 +63,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: no es pot crear: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: no s'ha trobat l'ordre" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s: funci? nom?s de lectura" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -241,12 +241,12 @@ msgstr "" msgid "write error: %s" msgstr "error del conducte: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: Redirecci? ambigua" @@ -284,7 +284,7 @@ msgstr "" msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funci? nom?s de lectura" @@ -323,7 +323,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: no es pot crear: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -339,7 +339,7 @@ msgstr "%s: no es pot executar el fitxer binari" msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: no es pot executar el fitxer binari" @@ -453,7 +453,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s: s'esperava una expressi? de nombre enter" @@ -481,12 +481,12 @@ msgstr "Error desconegut %d" msgid "expression expected" msgstr "s'esperava una expressi?" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -623,17 +623,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "error del conducte: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -815,37 +815,37 @@ msgid "\atimed out waiting for input: auto-logout\n" msgstr "" "%c ha excedit el temps d'espera per una entrada: fi autom?tica de sessi?\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "error del conducte: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restringit: no es pot especificar '/' en noms d'ordres" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: no s'ha trobat l'ordre" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: ?s un directori" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -925,7 +925,7 @@ msgstr "%s: s'esperava una expressi? de nombre enter" msgid "getcwd: cannot access parent directories" msgstr "getwd: no s'ha pogut accedir als directoris pares" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -946,148 +946,148 @@ msgstr "" "check_bash_input: ja hi existeix mem?ria interm?dia per a la nova\n" "descripci? de fitxer %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: L'identificador de proc?s (pid) no existeix (%d)!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Senyal desconeguda #%d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Fet" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Aturat" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Aturat" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "S'est? executant" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Fet (%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Fi d'execuci? amb l'estat %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Estat desconegut" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(la imatge del nucli ha estat bolcada) " -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(wd ara: %s)\n" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "error en l'execuci? de setpgid (%d a %d) en el proc?s fill %d: %s\n" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" "wait: l'identificador del proc?s (pid) %d no ?s un fill d'aquest int?rpret" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: s'ha finalitzat la tasca" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "encaix %3d:" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (bolcat de la imatge del nucli)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd ara: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp ha fallat: %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: disciplina de l?nia: %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp ha fallat: %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "no hi ha cap tasca de control dins d'aquest int?rpret" @@ -1352,32 +1352,32 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: Redirecci? ambigua" # No acabe d'entendre el significat de l'original "clobber" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: No s'ha pogut sobreescriure el fitxer existent" -#: redir.c:155 +#: redir.c:156 #, fuzzy, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restringit: no es pot especificar '/' en noms d'ordres" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "no es pot establir un conducte per a la substituci? del proc?s: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "error de redirecci?" @@ -1450,7 +1450,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1630,86 +1630,86 @@ msgstr "Senyal desconeguda #" msgid "Unknown Signal #%d" msgstr "Senyal desconeguda #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substituci? inv?lida: no existeix '%s' en %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: no es pot assignar la llista a un element de la matriu" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "no es pot establir un conducte per a la substituci? del proc?s: %s" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "no es pot establir un proc?s fill per a la substituci? del proc?s: %s" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "no es pot obrir el conducte anomenat %s per a %s: %s" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "no es pot obrir el conducte anomenat %s per a %s: %s" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "no es pot duplicar el conducte anomenat %s\n" "com a descripci? de fitxer %d: %s" -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "no es poden establir conductes per a la substituci? de l'ordre: %s" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "no es pot crear un proc?s fill per a la substituci? del proc?s: %s" -#: subst.c:4808 +#: subst.c:4811 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute(): el coducte no es pot duplicar\n" "com a descripci? de fitxer 1: %s" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: par?metre nul o no ajustat" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: la sub-cadena de l'expressi? ?s < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: substituci? inv?lida" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: no es pot assignar d'aquesta manera" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substituci? inv?lida: no existeix '%s' en %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1746,23 +1746,23 @@ msgstr "%s: s'esperava un operador binari" msgid "missing `]'" msgstr "s'ha perdut algun ']'" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "n?mero inv?lid de senyal" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, fuzzy, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Senyal inv?lida %d" @@ -1777,33 +1777,33 @@ msgstr "'%s': error en importar la definici? de la funci?" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2981,8 +2981,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2991,7 +2992,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3003,7 +3004,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3085,7 +3086,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3105,7 +3106,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3124,7 +3125,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3144,7 +3145,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3155,7 +3156,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3169,7 +3170,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3183,7 +3184,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3260,7 +3261,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3271,7 +3272,7 @@ msgstr "" "par?metre ha de ser el signe \"]\" perqu? es puga tancar l'expressi? que\n" "comen?a pel signe \"[\"." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3283,7 +3284,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3319,7 +3320,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3349,7 +3350,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3393,7 +3394,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3411,7 +3412,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3428,7 +3429,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3442,7 +3443,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3455,7 +3456,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3472,7 +3473,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3492,7 +3493,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3508,7 +3509,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -3520,7 +3521,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Executa selectivament les ordres especificades en ORDRES seguint una " -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3541,7 +3542,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -3555,7 +3556,7 @@ msgstr "" "Expandeix i executa les ordres especificades en ORDRES i els executa\n" "de tal manera que la darrera ordre" -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -3569,7 +3570,7 @@ msgstr "" "Expandeix i executa les ordres especificades en ORDRES i els executa\n" "de tal manera que la darrera ordre" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3583,7 +3584,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -3595,7 +3596,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Executa un conjunt d'ordres en un grup. A?? ?s una manera de" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3609,7 +3610,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3620,7 +3621,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3648,7 +3649,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3702,7 +3703,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3733,7 +3734,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3760,7 +3761,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3789,7 +3790,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3810,7 +3811,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3840,7 +3841,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3862,7 +3863,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3875,7 +3876,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3904,7 +3905,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/cs.gmo b/po/cs.gmo index 0cfa60b5859fc17f1eb821491ff47ed306d8899f..3589e823e3a7535d00bc42317803d794061ab688 100644 GIT binary patch literal 156273 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 delta 6924 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 iUDH}~Srl4*Y|GLDx+5SIWkMj2b diff --git a/po/cs.po b/po/cs.po index 1f19cba2..5e17c898 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-09-07 13:09+0200\n" "Last-Translator: Petr Pisar \n" "Language-Team: Czech \n" @@ -16,28 +16,28 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "chybný podskript pole" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: číslované pole nezle převést na pole asociativní" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: neplatný klíč asociativního pole" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: přes nečíselný indexu nelze dosadit" # FIXME: subscript je klicove slovo bashe 4 nebo skutecne podprogram? # přiřazuje se do pole nebo pole někam? -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, fuzzy, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: při přiřazovaní asociativního pole se musí použít podprogram" @@ -66,32 +66,32 @@ msgstr "ne zavírající „%c“ v %s" msgid "%s: missing colon separator" msgstr "%s: chybí dvojtečkový oddělovač" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "„%s“: chybný název klávesové mapy" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: nelze číst: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "„%s“: nelze zrušit vazbu" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "„%s“: neznámé jméno funkce" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s není svázán s žádnou klávesou.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s lze vyvolat přes " @@ -104,6 +104,14 @@ msgstr "počet smyček" msgid "only meaningful in a `for', `while', or `until' loop" msgstr "má smysl jen ve smyčkách „for“, „while“ nebo „until“" +#: builtins/caller.def:133 +#, fuzzy +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns " +msgstr "Vrací kontext aktuálního volání podrutiny." + #: builtins/cd.def:215 msgid "HOME not set" msgstr "není nestavena HOME" @@ -230,12 +238,12 @@ msgstr "%s: není vestavěným příkazem shellu" msgid "write error: %s" msgstr "chyba zápisu: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: chyba při zjišťování současného adresáře: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: nejednoznačné určení úlohy" @@ -271,7 +279,7 @@ msgstr "může být použito jen ve funkci" msgid "cannot use `-f' to make functions" msgstr "„-f“ nezle použít na výrobu funkce" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funkce jen pro čtení" @@ -310,7 +318,7 @@ msgstr "%s: není dynamicky nahráno" msgid "%s: cannot delete: %s" msgstr "%s: nelze smazat: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -326,7 +334,7 @@ msgstr "%s: není obyčejný soubor" msgid "%s: file is too large" msgstr "%s: soubor je příliš velký" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: binární soubor nelze spustit" @@ -413,8 +421,11 @@ msgstr[2] "Příkazy shellu shodující se s klíčovými slovy „" #: builtins/help.def:168 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "žádné téma nápovědy se nehodí pro „%s“. Zkuste „help help“ nebo „man -k %s“ nebo „info %s“." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "" +"žádné téma nápovědy se nehodí pro „%s“. Zkuste „help help“ nebo „man -k %s“ " +"nebo „info %s“." #: builtins/help.def:185 #, c-format @@ -432,7 +443,8 @@ msgid "" "A star (*) next to a name means that the command is disabled.\n" "\n" msgstr "" -"Tyto příkazy shellu jsou vnitřně definovány. Napište „help“, aby ste získali\n" +"Tyto příkazy shellu jsou vnitřně definovány. Napište „help“, aby ste " +"získali\n" "tento seznam. Podrobnosti o funkci „název“ získáte příkazem „help název“.\n" "Příkazem „info bash“ získáte obecné informace o tomto shellu.\n" "Použijte „man -k“ nebo „info“, chcete-li zjistit více o příkazech, které\n" @@ -449,7 +461,7 @@ msgstr "nelze použít více jak jeden z -anrw" msgid "history position" msgstr "místo v historii" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: expanze historie selhala" @@ -476,12 +488,12 @@ msgstr "Neznámá chyba" msgid "expression expected" msgstr "očekáván výraz" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: chybné určení deskriptoru souboru" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: neplatný deskriptor souboru: %s" @@ -559,10 +571,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" "\tdirs when invoked without options, starting with zero." msgstr "" "Zobrazí seznam právě zapamatovaných adresářů. Adresáře si najdou svoji\n" @@ -661,23 +675,24 @@ msgstr "" " \t„dirs“, počínaje nulou. Na příklad: „popd +0“ odstraní první\n" " \tadresář, „popd -1“ druhý.\n" " \n" -" -N\tOdstraní N. položku počítáno zprava na seznamu zobrazovaném pomocí\n" +" -N\tOdstraní N. položku počítáno zprava na seznamu zobrazovaném " +"pomocí\n" " \t„dirs“, počínaje nulou. Na příklad: „popd -0“ odstraní poslední\n" " \tadresář, „popd -1“ další vedle posledního.\n" " \n" " Zásobník adresářů si můžete prohlédnout příkazem „dirs“." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: chybné určení časového limitu" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "chyba čtení: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "„return“ lze provést jen z funkce nebo skriptu načteného přes „source“" @@ -848,36 +863,36 @@ msgstr "%s: nevázaná proměnná" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\ačasový limit pro čekání na vstup vypršel: automatické odhlášení\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "standardní vstup nelze přesměrovat z /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: chybný formátovací znak" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "chyba v rouře" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: omezeno: v názvu příkazu nesmí být „/“" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: příkaz nenalezen" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: chybný interpretr" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d" @@ -952,7 +967,7 @@ msgstr "%s: chyba výrazu\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: rodičovské adresáře nejsou přístupné" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "na deskriptoru %d nelze resetovat režim nodelay" @@ -967,147 +982,147 @@ msgstr "nový deskriptor souboru pro vstup bashe z deskr. %d nelze alokovat" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffer již pro nový deskriptor %d existuje" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp roury" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forknutý PID %d se objevil v běžící úloze %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "mažu pozastavenou úlohu %d se skupinou procesů %ld" # FIXME: in the_pipeline znamená do nebo v? -#: jobs.c:1102 +#: jobs.c:1105 #, fuzzy, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) do the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: PID %5ld (%s) označen za stále živého" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: žádný takový PID" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "Signál %d" # FIXME: rod a zkontrolovat následující -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Dokonán" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Pozastaven" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Pozastaven (%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Běží" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Dokonán (%d)" # FIXME: Jedná se o způsob ukončení zavoláním funkce exit(%d)? -#: jobs.c:1451 +#: jobs.c:1454 #, fuzzy, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Stav neznámý" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(core dumped [obraz paměti uložen]) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (cwd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid na potomku (z %ld na %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: PID %ld není potomkem tohoto shellu" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Žádný záznam o procesu %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: úloha %d je pozastavena" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: úloha skončila" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: úloha %d je již na pozadí" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: řádek %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (core dumped [obraz paměti uložen])" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(cwd nyní: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp selhalo" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: disciplína linky" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "nelze nastavit skupinu procesů terminálu (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "žádná správa úloh v tomto shellu" @@ -1364,31 +1379,31 @@ msgstr "cprintf: „%c“: chybný formátovací znak" msgid "file descriptor out of range" msgstr "deskriptor souboru mimo rozsah" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: nejednoznačné přesměrování" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: existující soubor nelze přepsat" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: omezeno: výstup nelze přesměrovat" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "pro „here“ dokument nelze vytvořit dočasný soubor: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port není bez síťování podporováno" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "chyba přesměrování: deskriptor souboru nelze duplikovat" @@ -1443,7 +1458,9 @@ msgstr "\t-%s nebo -o přepínač\n" #: shell.c:1806 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "Podrobnosti o přepínačích shellu získáte tím, že napíšete „%s -c \"help set\"“.\n" +msgstr "" +"Podrobnosti o přepínačích shellu získáte tím, že napíšete „%s -c \"help set" +"\"“.\n" #: shell.c:1807 #, c-format @@ -1457,7 +1474,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Chyby nahlásíte příkazem „bashbug“.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: neplatná operace" @@ -1639,77 +1656,77 @@ msgstr "Neznámé číslo signálu" msgid "Unknown Signal #%d" msgstr "Neznámý signál č. %d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "chybná substituce: v %2$s chybí uzavírací „%1$s“" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: seznam nelze přiřadit do prvku pole" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "nelze vyrobit rouru za účelem substituce procesu" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "nelze vytvořit potomka za účelem substituce procesu" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "pojmenovanou rouru %s nelze otevřít pro čtení" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "pojmenovanou rouru %s nelze otevřít pro zápis" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "pojmenovanou rouru %s nelze zdvojit jako deskriptor %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "nelze vytvořit rouru pro substituci příkazu" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "nelze vytvořit potomka pro substituci příkazu" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: rouru nelze zdvojit jako deskriptor 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametr null nebo nenastaven" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: výraz podřetězce < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: chybná substituce" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: takto nelze přiřazovat" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "chybná substituce: v %s chybí uzavírací „`“" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "žádná shoda: %s" @@ -1746,21 +1763,22 @@ msgstr "%s: očekáván binární operátor" msgid "missing `]'" msgstr "postrádám „]“" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "neplatné číslo signálu" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: chybná hodnota v trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "run_pending_traps: obsluha signálu je SIG_DFL, přeposílám %d (%s) sobě" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: chybný signál %d" @@ -1775,33 +1793,33 @@ msgstr "chyba při importu definice „%s“" msgid "shell level (%d) too high, resetting to 1" msgstr "úroveň shellu (%d) příliš vysoká, resetuji na 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: žádný kontext funkce v aktuálním rozsahu" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: žádný kontext funkce v aktuálním rozsahu" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "neplatný znak %d v exportstr pro %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "v exportstr pro %s chybí „=“" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: hlava shell_variables není kontextem funkce" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: chybí kontext global_variables" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: hlava shell_variables není dočasným rozsahem prostředí" @@ -1810,8 +1828,12 @@ msgid "Copyright (C) 2008 Free Software Foundation, Inc." msgstr "Copyright © 2008 Free Software Foundation, Inc." #: version.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Licence GPLv3+: GNU GPL verze 3 nebo novější \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Licence GPLv3+: GNU GPL verze 3 nebo novější \n" #: version.c:86 #, c-format @@ -1877,8 +1899,13 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] název [název…]" #: builtins.c:51 -msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m klávmapa] [-f soubor] [-q název] [-u název] [-r klávposl] [-x klávposl:příkaz-shellu] [klávposl:readline-funkce nebo readline-příkaz]" +msgid "" +"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpvsPVS] [-m klávmapa] [-f soubor] [-q název] [-u název] [-r " +"klávposl] [-x klávposl:příkaz-shellu] [klávposl:readline-funkce nebo " +"readline-příkaz]" #: builtins.c:54 msgid "break [n]" @@ -1966,7 +1993,8 @@ msgstr "logout [n]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e enázev] [-lnr] [první] [poslední] nebo fc -s [vzor=náhrada] [příkaz]" +msgstr "" +"fc [-e enázev] [-lnr] [první] [poslední] nebo fc -s [vzor=náhrada] [příkaz]" #: builtins.c:107 msgid "fg [job_spec]" @@ -1985,8 +2013,12 @@ msgid "help [-ds] [pattern ...]" msgstr "help [-ds] [vzorek…]" #: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [-d pozice] [n] nebo history -anrw [jméno_souboru] nebo history -ps argument [argument…]" +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"history [-c] [-d pozice] [n] nebo history -anrw [jméno_souboru] nebo history " +"-ps argument [argument…]" #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" @@ -1997,16 +2029,23 @@ msgid "disown [-h] [-ar] [jobspec ...]" msgstr "disown [-h] [-ar] [úloha…]" #: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s sigspec | -n číssig | -sigspec] pid | úloha … nebo kill -l [sigspec]" +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s sigspec | -n číssig | -sigspec] pid | úloha … nebo kill -l [sigspec]" #: builtins.c:134 msgid "let arg [arg ...]" msgstr "let argument [argument…]" #: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a pole] [-d oddělovač] [-i text] [-n p_znaků] [-p výzva] [-t limit] [-u fd] [jméno…]" +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a pole] [-d oddělovač] [-i text] [-n p_znaků] [-p výzva] [-t " +"limit] [-u fd] [jméno…]" #: builtins.c:138 msgid "return [n]" @@ -2101,8 +2140,12 @@ msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case SLOVO in [VZOR [| VZOR]…) PŘÍKAZY ;;]… esac" #: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if PŘÍKAZY; then PŘÍKAZY; [ elif PŘÍKAZY; then PŘÍKAZY; ]… [ else PŘÍKAZY; ] fi" +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if PŘÍKAZY; then PŘÍKAZY; [ elif PŘÍKAZY; then PŘÍKAZY; ]… [ else PŘÍKAZY; ] " +"fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" @@ -2158,20 +2201,35 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v proměnná] formát [argumenty]" #: builtins.c:227 -msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-o přepínač] [-A akce] [-G globvzor] [-W seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S přípona] [název…]" +msgid "" +"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W " +"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o přepínač] [-A akce] [-G globvzor] [-W " +"seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S " +"přípona] [název…]" #: builtins.c:231 -msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-abcdefgjksuv] [-o přepínač] [-A akce] [-G globvzor] [-W seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S přípona] [slovo]" +msgid "" +"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "" +"compgen [-abcdefgjksuv] [-o přepínač] [-A akce] [-G globvzor] [-W " +"seznam_slov] [-F funkce] [-C příkaz] [-X filtrvzor] [-P předpona] [-S " +"přípona] [slovo]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" msgstr "compopt [-o|+o přepínač] [název…]" #: builtins.c:238 -msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-n počet] [-O počátek] [-s počet] [-t] [-u fd] [-C volání] [-c množství] [pole]" +msgid "" +"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"mapfile [-n počet] [-O počátek] [-s počet] [-t] [-u fd] [-C volání] [-c " +"množství] [pole]" #: builtins.c:250 msgid "" @@ -2188,16 +2246,19 @@ msgid "" " -p\tPrint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has been\n" +" alias returns true unless a NAME is supplied for which no alias has " +"been\n" " defined." msgstr "" "Definuje nebo zobrazí aliasy.\n" " \n" -" „alias“ bez argumentů vypíše na standardní výstup seznam aliasů ve znovu\n" +" „alias“ bez argumentů vypíše na standardní výstup seznam aliasů ve " +"znovu\n" " použitelném formátu NÁZEV=HODNOTA.\n" " \n" " Jinak bude definován alias pro každý NÁZEV, který má zadanou HODNOTU.\n" -" Závěrečná mezera v HODNOTĚ způsobí, že při expanzi bude následující slovo\n" +" Závěrečná mezera v HODNOTĚ způsobí, že při expanzi bude následující " +"slovo\n" " zkontrolováno na substituci aliasů.\n" " \n" " Přepínače:\n" @@ -2234,20 +2295,24 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their values\n" -" -s List key sequences that invoke macros and their values\n" +" -S List key sequences that invoke macros and their " +"values\n" +" -s List key sequences that invoke macros and their " +"values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named function.\n" +" -u function-name Unbind all keys which are bound to the named " +"function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" @@ -2266,21 +2331,27 @@ msgstr "" " Přepínače:\n" " -m klávmapa Použije KLÁVMAPU jako klávesovou mapu pro trvání\n" " tohoto příkazu. Možné klávesové mapy jsou emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command a vi-insert.\n" " -l Vypíše seznam názvů funkcí.\n" " -P Vypíše seznam názvů funkcí a klávesových vazeb.\n" -" -p Vypíše seznam funkcí a klávesových vazeb ve formátu,\n" +" -p Vypíše seznam funkcí a klávesových vazeb ve " +"formátu,\n" " který lze použít jako vstup.\n" " -S Vypíše seznam posloupností kláves,\n" " které vyvolávají makra, a jejich hodnoty.\n" " -s Vypíše seznam posloupností kláves,\n" -" která vyvolávají makra, a jejich hodnoty ve formátu,\n" -" který lze použít jako vstup. -V Vypíše seznam názvů proměnných a hodnot.\n" -" -v Vypíše seznam názvů proměnných a hodnot ve formátu,\n" +" která vyvolávají makra, a jejich hodnoty ve " +"formátu,\n" +" který lze použít jako vstup. -" +"V Vypíše seznam názvů proměnných a hodnot.\n" +" -v Vypíše seznam názvů proměnných a hodnot ve " +"formátu,\n" " který lze použít jako vstup.\n" " -q název-funkce Dotáže se, které klávesy vyvolají zadanou funkci.\n" -" -u název-funkce Zruší všechny vazby na klávesy, které jsou napojeny\n" +" -u název-funkce Zruší všechny vazby na klávesy, které jsou " +"napojeny\n" " na zadanou funkci.\n" " -r klávposl Odstraní vazbu na KLÁVPOSL.\n" " -f soubor Načte vazby kláves ze SOUBORU.\n" @@ -2289,7 +2360,8 @@ msgstr "" " zadána KLÁVPOSL.\n" " \n" " Návratový kód:\n" -" bind vrací 0, pokud není zadán nerozpoznaný přepínač nebo nedojde k chybě." +" bind vrací 0, pokud není zadán nerozpoznaný přepínač nebo nedojde " +"k chybě." #: builtins.c:322 msgid "" @@ -2332,7 +2404,8 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the function.\n" +" as a shell function, but need to execute the builtin within the " +"function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2340,7 +2413,8 @@ msgid "" msgstr "" "Provede vestavěný příkaz shellu.\n" " \n" -" Provede VESTAVĚNÝ-PŘÍKAZ-SHELLU s argumenty ARGUMENTY, aniž by se uplatnilo\n" +" Provede VESTAVĚNÝ-PŘÍKAZ-SHELLU s argumenty ARGUMENTY, aniž by se " +"uplatnilo\n" " vyhledávání příkazu. Toto se hodí, když si přejete reimplementovat\n" " vestavěný příkaz shellu jako funkci shellu, avšak potřebujete spustit\n" " vestavěný příkaz uvnitř této funkce.\n" @@ -2380,16 +2454,22 @@ msgstr "" msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of the\n" +" Change the current directory to DIR. The default DIR is the value of " +"the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" -" A null directory name is the same as the current directory. If DIR begins\n" +" The variable CDPATH defines the search path for the directory " +"containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon " +"(:).\n" +" A null directory name is the same as the current directory. If DIR " +"begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is set,\n" -" the word is assumed to be a variable name. If that variable has a value,\n" +" If the directory is not found, and the shell option `cdable_vars' is " +"set,\n" +" the word is assumed to be a variable name. If that variable has a " +"value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2404,15 +2484,18 @@ msgid "" msgstr "" "Změní pracovní adresář shellu.\n" " \n" -" Změní aktuální adresář na ADR. Implicitní ADR je hodnota proměnné shellu\n" +" Změní aktuální adresář na ADR. Implicitní ADR je hodnota proměnné " +"shellu\n" " HOME.\n" " \n" " Proměnná CDPATH definuje vyhledávací cestu pro adresář obsahující ADR.\n" " Názvy náhradních adresářů v CDPATH se oddělují dvojtečkou (:). Prázdný\n" -" název adresáře je stejný jako aktuální adresář. Začíná-li ADR na lomítko\n" +" název adresáře je stejný jako aktuální adresář. Začíná-li ADR na " +"lomítko\n" " (/), nebude CDPATH použita.\n" " \n" -" Nebude-li adresář nalezen a přepínač shellu „cdable_vars“ bude nastaven,\n" +" Nebude-li adresář nalezen a přepínač shellu „cdable_vars“ bude " +"nastaven,\n" " pak se dané slovo zkusí jakožto název proměnné. Má-li taková proměnná\n" " hodnotu, pak její hodnota se použije jako ADR.\n" " \n" @@ -2499,7 +2582,8 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke commands\n" +" information about the specified COMMANDs. Can be used to invoke " +"commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2513,8 +2597,10 @@ msgid "" msgstr "" "Provede jednoduchý příkaz nebo zobrazí podrobnosti o příkazech.\n" " \n" -" Spustí PŘÍKAZ s ARGUMENTY ignoruje funkce shellu, nebo zobrazí informace\n" -" o zadaných PŘÍKAZECH. Lze využít, když je třeba vyvolat příkazy z disku,\n" +" Spustí PŘÍKAZ s ARGUMENTY ignoruje funkce shellu, nebo zobrazí " +"informace\n" +" o zadaných PŘÍKAZECH. Lze využít, když je třeba vyvolat příkazy " +"z disku,\n" " přičemž existuje funkce stejného jména.\n" " \n" " Přepínače:\n" @@ -2554,7 +2640,8 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the `local'\n" +" When used in a function, `declare' makes NAMEs local, as with the " +"`local'\n" " command.\n" " \n" " Exit Status:\n" @@ -2586,7 +2673,8 @@ msgstr "" " Proměnné s atributem integer jsou aritmeticky vyhodnoceny (vizte příkaz\n" " „let“), jakmile je do proměnné přiřazeno.\n" " \n" -" Je-li použito uvnitř funkce, učiní „declare“ NÁZVY lokálními stejně jako\n" +" Je-li použito uvnitř funkce, učiní „declare“ NÁZVY lokálními stejně " +"jako\n" " příkaz „local“.\n" " \n" " Návratový kód:\n" @@ -2618,10 +2706,12 @@ msgid "" msgstr "" "Definuje lokální proměnné.\n" " \n" -" Vytvoří lokální proměnnou pojmenovanou NÁZEV a přiřadí jí HODNOTU. PŘEPÍNAČ\n" +" Vytvoří lokální proměnnou pojmenovanou NÁZEV a přiřadí jí HODNOTU. " +"PŘEPÍNAČ\n" " smí může být jakýkoliv přepínač přípustný u „declare“\n" " \n" -" Lokální proměnné lze použít jen uvnitř funkcí, budou viditelné jen v dané\n" +" Lokální proměnné lze použít jen uvnitř funkcí, budou viditelné jen " +"v dané\n" " funkci a jejich potomcích.\n" " \n" " Návratový kód:\n" @@ -2660,12 +2750,15 @@ msgid "" msgstr "" "Vypíše své argumenty na standardní výstup.\n" " \n" -" Zobrazí své ARGUMENTY na standardním výstupu a ukončí je z novým řádkem.\n" +" Zobrazí své ARGUMENTY na standardním výstupu a ukončí je z novým " +"řádkem.\n" " \n" " Přepínače:\n" " -n\tnepřipojuje nový řádek\n" -" -e\tzapne interpretování následujících znaků uvozených zpětným lomítkem\n" -" -E\texplicitně potlačí interpretování znaků uvozených zpětným lomítkem\n" +" -e\tzapne interpretování následujících znaků uvozených zpětným " +"lomítkem\n" +" -E\texplicitně potlačí interpretování znaků uvozených zpětným " +"lomítkem\n" " \n" " „echo“ interpretuje následující znaky uvozené zpětným lomítkem:\n" " \\a\tpoplach (zvonek)\n" @@ -2740,7 +2833,8 @@ msgstr "" " shellu, aniž byste museli zadávat celou cestu.\n" " \n" " Přepínače:\n" -" -a\tvypíše seznam vestavěných příkazů a vyznačí, který je a který není\n" +" -a\tvypíše seznam vestavěných příkazů a vyznačí, který je a který " +"není\n" " \tpovolen\n" " -n\tzakáže každý NÁZEV nebo zobrazí seznam zakázaných vestavěných\n" " \tpříkazů\n" @@ -2764,7 +2858,8 @@ msgstr "" msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the shell,\n" +" Combine ARGs into a single string, use the result as input to the " +"shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2833,13 +2928,17 @@ msgstr "" " skript. Pokud přepínač vyžaduje argument, getopts umístí tento argument\n" " do proměnné shellu OPTARG.\n" " \n" -" getopts hlásí chyby jedním ze dvou způsobů. Pokud prvním znakem OPTSTRING\n" +" getopts hlásí chyby jedním ze dvou způsobů. Pokud prvním znakem " +"OPTSTRING\n" " je dvojtečka, getopts hlásí chyby tichým způsobem. V tomto režimu žádné\n" " chybové zprávy nejsou vypisovány. Když se narazí na neplatný přepínač,\n" -" getopts umístí tento znak do OPTARG. Pokud není nalezen povinný argument,\n" -" getopts umístí „:“ do NAME a OPTARG nastaví na znak nalezeného přepínače.\n" +" getopts umístí tento znak do OPTARG. Pokud není nalezen povinný " +"argument,\n" +" getopts umístí „:“ do NAME a OPTARG nastaví na znak nalezeného " +"přepínače.\n" " Pokud getopts nepracuje v tomto tichém režimu a je nalezen neplatný\n" -" přepínač, getopts umístí „?“ do NAME a zruší OPTARG. Když nenajde povinný\n" +" přepínač, getopts umístí „?“ do NAME a zruší OPTARG. Když nenajde " +"povinný\n" " argument, je do NAME zapsán „?“, OPTARG zrušen a vytištěna diagnostická\n" " zpráva.\n" " \n" @@ -2847,11 +2946,13 @@ msgstr "" " chybových zpráv, dokonce i když první znak OPTSTRING není dvojtečka.\n" " Implicitní hodnota OPTERR je 1.\n" " \n" -" Normálně getopts zpracovává poziční parametry ($0–$9), avšak následuje-li\n" +" Normálně getopts zpracovává poziční parametry ($0–$9), avšak následuje-" +"li\n" " getopts více argumentů, budou rozebrány tyto namísto pozičních.\n" " \n" " Návratový kód:\n" -" Vrátí úspěch, byl-li nalezen nějaký přepínač. Neúspěch vrátí, když dojde\n" +" Vrátí úspěch, byl-li nalezen nějaký přepínač. Neúspěch vrátí, když " +"dojde\n" " na konec přepínačů nebo nastane-li chyba." #: builtins.c:664 @@ -2859,7 +2960,8 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " +"specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2867,16 +2969,20 @@ msgid "" " -c\t\texecute COMMAND with an empty environment\n" " -l\t\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, unless\n" +" If the command cannot be executed, a non-interactive shell exits, " +"unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error occurs." +" Returns success unless COMMAND is not found or a redirection error " +"occurs." msgstr "" "Nahradí shell zadaným příkazem.\n" " \n" -" Vykoná PŘÍKAZ, přičemž nahradí tento shell zadaným programem. ARGUMENTY\n" -" se stanou argumenty PŘÍKAZU. Není-li PŘÍKAZ zadán, přesměrování zapůsobí\n" +" Vykoná PŘÍKAZ, přičemž nahradí tento shell zadaným programem. " +"ARGUMENTY\n" +" se stanou argumenty PŘÍKAZU. Není-li PŘÍKAZ zadán, přesměrování " +"zapůsobí\n" " v tomto shellu.\n" " \n" " Přepínače:\n" @@ -2906,7 +3012,8 @@ msgstr "" msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not executed\n" +" Exits a login shell with exit status N. Returns an error if not " +"executed\n" " in a login shell." msgstr "" "Ukončí přihlašovací shell.\n" @@ -2918,13 +3025,15 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history list.\n" +" fc is used to list or edit and re-execute commands from the history " +"list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then " +"EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -2938,12 +3047,14 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error occurs." +" Returns success or status of executed command; non-zero if an error " +"occurs." msgstr "" "Zobrazí nebo vykoná příkazy ze seznamu historie.\n" " \n" " fc se používá na vypsání, úpravu a znovu provedení příkazů ze seznamu\n" -" historie. PRVNÍ a POSLEDNÍ mohou být čísla určující rozsah nebo PRVNÍ může být\n" +" historie. PRVNÍ a POSLEDNÍ mohou být čísla určující rozsah nebo PRVNÍ " +"může být\n" " řetězec, což určuje nejnovější příkaz začínající na zadaný řetězec.\n" " \n" " Přepínače:\n" @@ -2955,7 +3066,8 @@ msgstr "" " Forma příkazu „fc -s [vzor=náhrada… [příkaz]“ znamená, že PŘÍKAZ bude\n" " po nahrazení STARÝ=NOVÝ znovu vykonán.\n" " \n" -" Užitečný alias je r='fc -s', takže napsání „r cc“ spustí poslední příkaz\n" +" Užitečný alias je r='fc -s', takže napsání „r cc“ spustí poslední " +"příkaz\n" " začínající na „cc“ a zadání „r“ znovu spustí poslední příkaz.\n" " \n" " Návratový kód:\n" @@ -2975,7 +3087,8 @@ msgid "" msgstr "" "Přepne úlohu na popředí.\n" " \n" -" Přesune úlohu určenou pomocí ÚLOHA na popředí a učiní ji aktuální úlohou.\n" +" Přesune úlohu určenou pomocí ÚLOHA na popředí a učiní ji aktuální " +"úlohou.\n" " Není-li ÚLOHA zadána, použije se úloha, o které si shell myslí, že je\n" " aktuální.\n" " \n" @@ -2986,8 +3099,10 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if " +"they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's " +"notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -3007,7 +3122,8 @@ msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is displayed.\n" +" no arguments are given, information about remembered commands is " +"displayed.\n" " \n" " Options:\n" " -d\t\tforget the remembered location of each NAME\n" @@ -3026,8 +3142,10 @@ msgid "" msgstr "" "Zapamatuje si nebo zobrazí umístění programu.\n" " \n" -" Pro každý NÁZEV je určena plná cesta k příkazu a je zapamatována. Nejsou-li\n" -" zadány žádné argumenty, budou vypsány informace o zapamatovaných příkazech.\n" +" Pro každý NÁZEV je určena plná cesta k příkazu a je zapamatována. Nejsou-" +"li\n" +" zadány žádné argumenty, budou vypsány informace o zapamatovaných " +"příkazech.\n" " \n" " Přepínače:\n" " -d\t\tzapomene zapamatovaná umístění každého NÁZVU\n" @@ -3061,12 +3179,14 @@ msgid "" " PATTERN\tPattern specifiying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is given." +" Returns success unless PATTERN is not found or an invalid option is " +"given." msgstr "" "Zobrazí podrobnosti o vestavěných příkazech.\n" " \n" " Zobrazí stručný souhrn vestavěných příkazů. Je-li zadán VZOREK,\n" -" vrátí podrobnou nápovědu ke všem příkazům odpovídajícím VZORKU, jinak je\n" +" vrátí podrobnou nápovědu ke všem příkazům odpovídajícím VZORKU, jinak " +"je\n" " vytištěn seznam syntaxe vestavěných příkazů.\n" " \n" " Přepínače:\n" @@ -3109,7 +3229,8 @@ msgid "" " \n" " If the $HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed otherwise.\n" +" with each displayed history entry. No time stamps are printed " +"otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -3133,12 +3254,15 @@ msgstr "" " \taniž by cokoliv uložil do seznamu historie\n" " -s\tpřipojí ARGUMENTY do seznamu historie jako jednu položku\n" " \n" -" Je-li zadán JMÉNO_SOUBORU, tak ten je použit jako soubor historie. Jinak\n" +" Je-li zadán JMÉNO_SOUBORU, tak ten je použit jako soubor historie. " +"Jinak\n" " pokud $HISTFILE má hodnotu, tato je použita, jinak ~/.bash_history.\n" " \n" -" Je-li proměnná $HISTTIMEFORMAT nastavena a není-li prázdná, její hodnota\n" +" Je-li proměnná $HISTTIMEFORMAT nastavena a není-li prázdná, její " +"hodnota\n" " se použije jako formátovací řetězec pro strftime(3) při výpisu časových\n" -" razítek spojených s každou položkou historie. Jinak žádná časová razítka\n" +" razítek spojených s každou položkou historie. Jinak žádná časová " +"razítka\n" " nebudou vypisována. \n" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě." @@ -3178,11 +3302,14 @@ msgstr "" " -r\tzúží výstup jen na běžící úlohy\n" " -s\tzúží výstup jen na pozastavené úlohy\n" " \n" -" Je-li použito -x, bude spuštěn příkaz, jakmile všechny úlohy uvedené mezi\n" -" ARGUMENTY budou nahrazeny ID procesu, který je vedoucím skupiny dané úlohy.\n" +" Je-li použito -x, bude spuštěn příkaz, jakmile všechny úlohy uvedené " +"mezi\n" +" ARGUMENTY budou nahrazeny ID procesu, který je vedoucím skupiny dané " +"úlohy.\n" " \n" " Návratový kód:\n" -" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba.\n" +" Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se " +"chyba.\n" " Byl-ly použit přepínač -x, vrátí návratový kód PŘÍKAZU." #: builtins.c:875 @@ -3239,7 +3366,8 @@ msgstr "" "Zašle signál úloze.\n" " \n" " Zašle procesu určeném PID (nebo ÚLOHOU) signál zadaný pomocí SIGSPEC\n" -" nebo ČÍSSIG. Není-li SIGSPEC ani ČÍSSIG zadán, pak se předpokládá SIGTERM.\n" +" nebo ČÍSSIG. Není-li SIGSPEC ani ČÍSSIG zadán, pak se předpokládá " +"SIGTERM.\n" " \n" " Přepínače:\n" " -s sig\tSIG je název signálu\n" @@ -3262,7 +3390,8 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are listed\n" +" grouped into levels of equal-precedence operators. The levels are " +"listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -3328,8 +3457,10 @@ msgstr "" " \t&=, ^=, |=\tpřiřazení\n" " \n" " Proměnné shellu jsou povolené operandy. Název proměnné je uvnitř výrazu\n" -" nahrazen její hodnotou (s automatickým převodem na celé číslo pevné šířky).\n" -" Proměnná nemusí mít atribut integer (číslo) zapnutý, aby byla použitelná\n" +" nahrazen její hodnotou (s automatickým převodem na celé číslo pevné " +"šířky).\n" +" Proměnná nemusí mít atribut integer (číslo) zapnutý, aby byla " +"použitelná\n" " ve výrazu.\n" " \n" " Operátory se vyhodnocují v pořadí přednosti. Podvýrazy v závorkách jsou\n" @@ -3340,17 +3471,21 @@ msgstr "" " navrácena 0." #: builtins.c:962 +#, fuzzy msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with word\n" +" if the -u option is supplied. The line is split into fields as with " +"word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as word\n" +" the last NAME. Only the characters found in $IFS are recognized as " +"word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY " +"variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3365,27 +3500,32 @@ msgid "" " \t\tattempting to read\n" " -r\t\tdo not allow backslashes to escape any characters\n" " -s\t\tdo not echo input coming from a terminal\n" -" -t timeout\ttime out and return failure if a complete line of input is\n" +" -t timeout\ttime out and return failure if a complete line of input " +"is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times out,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" "Načte ze standardního vstupu jeden řádek a rozdělí jej na pole.\n" " \n" " Ze standardního vstupu, nebo deskriptoru souboru FD, je-li zadán\n" " přepínač -u, je načten jeden řádek. Řádek se rozdělí ba pole jako při\n" -" dělení na slova a první slovo je přiřazeno do prvního JMÉNA, druhé slovo\n" +" dělení na slova a první slovo je přiřazeno do prvního JMÉNA, druhé " +"slovo\n" " do druhého JMÉNA a tak dále, přičemž přebývající slova se přiřadí do\n" " posledního JMÉNA. Pouze znaky uvedené v $IFS jsou považovány za\n" " oddělovače slov.\n" " \n" -" Nejsou-li uvedeny žádná JMÉNA, načtený řádek bude uložen do proměnné REPLY.\n" +" Nejsou-li uvedeny žádná JMÉNA, načtený řádek bude uložen do proměnné " +"REPLY.\n" " \n" " Přepínače:\n" " -a pole\tnačtená slova budou přiřazena do postupných prvků POLE\n" @@ -3412,7 +3552,7 @@ msgstr "" " pro čtení nevyprší nebo není poskytnut neplatný deskriptor souboru jako\n" " argument -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3425,14 +3565,16 @@ msgid "" msgstr "" "Návrat z shellové funkce.\n" " \n" -" Způsobí ukončení funkce nebo skriptu načteného přes „source“ s návratovou\n" -" hodnotou určenou N. Je-li N vynecháno, návratový kód bude roven poslednímu\n" +" Způsobí ukončení funkce nebo skriptu načteného přes „source“ " +"s návratovou\n" +" hodnotou určenou N. Je-li N vynecháno, návratový kód bude roven " +"poslednímu\n" " příkazu vykonanému uvnitř dotyčné funkce nebo skriptu.\n" " \n" " Návratová hodnota:\n" " Vrátí N, nebo selže, pokud shell neprovádí funkci nebo skript." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3475,7 +3617,8 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero status\n" +" or zero if no command exited with a non-zero " +"status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3514,7 +3657,8 @@ msgid "" msgstr "" "Nastaví nebo zruší hodnoty přepínačů shellu a pozičních parametrů.\n" " \n" -" Změní hodnoty atributům shellu a pozičním parametrům, nebo zobrazí názvy\n" +" Změní hodnoty atributům shellu a pozičním parametrům, nebo zobrazí " +"názvy\n" " a hodnoty proměnných shellu.\n" " \n" " Přepínače:\n" @@ -3585,8 +3729,10 @@ msgstr "" " - Přiřadí jakékoliv zbývající argumenty do pozičních parametrů.\n" " Přepínače -x a -v budou vypnuty.\n" " \n" -" Použití + místo - způsobí, že tyto příznaky budou vypnuty. Příznaky lze též\n" -" použít při volání shellu. Aktuální množinu příznaků je možno nalézt v $-.\n" +" Použití + místo - způsobí, že tyto příznaky budou vypnuty. Příznaky lze " +"též\n" +" použít při volání shellu. Aktuální množinu příznaků je možno nalézt " +"v $-.\n" " Přebývajících n ARGUMENTŮ jsou poziční parametry a budou přiřazeny,\n" " v pořadí, do $1, $2, … $n. Nejsou-li zadány žádné ARGUMENTY, budou\n" " vytištěny všechny proměnné shellu.\n" @@ -3594,7 +3740,7 @@ msgstr "" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný argument." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3604,7 +3750,8 @@ msgid "" " -f\ttreat each NAME as a shell function\n" " -v\ttreat each NAME as a shell variable\n" " \n" -" Without options, unset first tries to unset a variable, and if that fails,\n" +" Without options, unset first tries to unset a variable, and if that " +"fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3620,7 +3767,8 @@ msgstr "" " -f\tpovažuje každé JMÉNO za funkci shellu\n" " -v\tpovažuje každé JMÉNO za proměnnou shellu\n" " \n" -" Bez těchto dvou příznaků unset nejprve zkusí zrušit proměnnou a pokud toto\n" +" Bez těchto dvou příznaků unset nejprve zkusí zrušit proměnnou a pokud " +"toto\n" " selže, tak zkusí zrušit funkci.\n" " \n" " Některé proměnné nelze odstranit. Vizte příkaz „readonly“.\n" @@ -3629,12 +3777,13 @@ msgstr "" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a JMÉNO není jen pro\n" " čtení." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before " +"exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3648,8 +3797,10 @@ msgid "" msgstr "" "Nastaví atribut exportovat proměnné shellu.\n" " \n" -" Každý NÁZEV je označen pro automatické exportování do prostředí následně\n" -" prováděných příkazů. Je-li zadána HODNOTA, před exportem přiřadí HODNOTU.\n" +" Každý NÁZEV je označen pro automatické exportování do prostředí " +"následně\n" +" prováděných příkazů. Je-li zadána HODNOTA, před exportem přiřadí " +"HODNOTU.\n" " \n" " Přepínače:\n" " -f\tvztahuje se na funkce shellu\n" @@ -3661,7 +3812,7 @@ msgstr "" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač nebo NÁZEV." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3682,8 +3833,10 @@ msgid "" msgstr "" "Označí proměnné shellu za nezměnitelné.\n" " \n" -" Označí každý NÁZEV jako jen pro čtení, hodnoty těchto NÁZVŮ nebude možné\n" -" změnit následným přiřazením. Je-li zadána HODNOTA, před označením za jen\n" +" Označí každý NÁZEV jako jen pro čtení, hodnoty těchto NÁZVŮ nebude " +"možné\n" +" změnit následným přiřazením. Je-li zadána HODNOTA, před označením za " +"jen\n" " pro čtení přiřadí HODNOTU.\n" " \n" " Přepínače:\n" @@ -3697,7 +3850,7 @@ msgstr "" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač nebo NÁZEV." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3715,7 +3868,7 @@ msgstr "" " Návratový kód:\n" " Vrátí úspěch, pokud N není záporný a není větší než $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3739,7 +3892,7 @@ msgstr "" " Vrací návratový kód posledního provedeného příkazu z NÁZVU_SOUBORU.\n" " Selže, pokud NÁZEV_SOUBORU nelze načíst." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3763,7 +3916,7 @@ msgstr "" " Návratový kód:\n" " Vrací úspěch, pokud je správa úloh zapnuta a nevyskytla se chyba." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3794,7 +3947,8 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last read.\n" +" -N FILE True if the file has been modified since it was last " +"read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3815,7 +3969,8 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 lexicographically.\n" +" True if STRING1 sorts before STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3871,7 +4026,8 @@ msgstr "" " -N SOUBOR Pravda, pokud soubor byl změněn po posledním čtení.\n" " \n" " SOUBOR1 -nt SOUBOR2\n" -" Pravda, pokud je SOUBOR1 novější než SOUBOR2 (podle času\n" +" Pravda, pokud je SOUBOR1 novější než SOUBOR2 (podle " +"času\n" " změny obsahu).\n" " \n" " SOUBOR1 -ot SOUBOR2\n" @@ -3918,7 +4074,7 @@ msgstr "" " Vrací úspěch, je-li VÝRAZ vyhodnocen jako pravdivý. Selže, je-li VÝRAZ\n" " vyhodnocen jako nepravdivý nebo je-li zadán neplatný argument." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3930,11 +4086,12 @@ msgstr "" " Toto je synonymum pro vestavěný příkaz „test“, až na to, že poslední\n" " argument musí být doslovně „]“, aby se shodoval s otevírající „[“." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of its\n" +" Prints the accumulated user and system times for the shell and all of " +"its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -3942,17 +4099,19 @@ msgid "" msgstr "" "Zobrazí časy procesu.\n" " \n" -" Vypíše celkovou dobu procesu shellu a všech jeho potomků, kterou strávili\n" +" Vypíše celkovou dobu procesu shellu a všech jeho potomků, kterou " +"strávili\n" " v uživatelském a jaderném (system) prostoru.\n" " \n" " Návratový kód:\n" " Vždy uspěje." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives signals\n" +" Defines and activates handlers to be run when the shell receives " +"signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -3961,22 +4120,26 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " +"If\n" " a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\n" " \n" -" If no arguments are supplied, trap prints the list of commands associated\n" +" If no arguments are supplied, trap prints the list of commands " +"associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal " +"number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is given." +" Returns success unless a SIGSPEC is invalid or an invalid option is " +"given." msgstr "" "Zachytávání signálů a jiných událostí.\n" " \n" @@ -3984,30 +4147,37 @@ msgstr "" " signály nebo nastanou určité podmínky.\n" " \n" " Příkaz ARGUMENT bude načten a proveden, až shell obdrží signál(y)\n" -" SIGNAL_SPEC. Pokud ARGUMENT chybí (a je zadán jeden SIGNAL_SPEC) nebo je\n" -" „-“, každý určený signál bude přenastaven zpět na svoji původní hodnotu.\n" -" Je-li ARGUMENT prázdný řetězec, každý SIGNAL_SPEC bude shellem a příkazy\n" +" SIGNAL_SPEC. Pokud ARGUMENT chybí (a je zadán jeden SIGNAL_SPEC) nebo " +"je\n" +" „-“, každý určený signál bude přenastaven zpět na svoji původní " +"hodnotu.\n" +" Je-li ARGUMENT prázdný řetězec, každý SIGNAL_SPEC bude shellem a " +"příkazy\n" " z něj spuštěnými ignorován.\n" " \n" -" Je-li SIGNAL_SPEC „EXIT (0)“, bude ARGUMENT proveden při ukončování tohoto\n" +" Je-li SIGNAL_SPEC „EXIT (0)“, bude ARGUMENT proveden při ukončování " +"tohoto\n" " shellu. Je-li SIGNAL_SPEC „DEBUG“, bude ARGUMENT proveden před každým\n" " jednoduchým příkazem.\n" " \n" -" Nejsou-li poskytnuty žádné argumenty, trap vypíše seznam příkazů navázaných\n" +" Nejsou-li poskytnuty žádné argumenty, trap vypíše seznam příkazů " +"navázaných\n" " na všechny signály.\n" " \n" " Přepínače:\n" " -l\tvypíše seznam jmen signálů a jim odpovídajících čísel\n" " -p\tzobrazí příkazy navázané na každý SIGNAL_SPEC\n" " \n" -" Každý SIGNAL_SPEC je buďto jméno signálu ze , nebo číslo signálu.\n" -" U jmen signálů nezáleží na velikosti písmen a předpona SIG je nepovinná.\n" +" Každý SIGNAL_SPEC je buďto jméno signálu ze , nebo číslo " +"signálu.\n" +" U jmen signálů nezáleží na velikosti písmen a předpona SIG je " +"nepovinná.\n" " Aktuálnímu shellu lze zaslat signál pomocí „kill -signal $$“.\n" " \n" " Návratový kód:\n" " Vrátí úspěch, pokud SIGSPEC a zadané přepínače jsou platné." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -4033,7 +4203,8 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not found." +" Returns success if all of the NAMEs are found; fails if any are not " +"found." msgstr "" "Zobrazí informace o typu příkazu.\n" " \n" @@ -4062,11 +4233,12 @@ msgstr "" " Vrátí úspěch, pokud všechny NÁZVY byly nalezeny. Selže, pokud některé\n" " nalezeny nebyly." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and processes\n" +" Provides control over the resources available to the shell and " +"processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -4114,7 +4286,8 @@ msgstr "" " -H\tpoužije se „tvrdé“ (hard) omezení zdroje\n" " -a\tnahlásí všechna současná omezení (limity)\n" " -b\tvelikost vyrovnávací paměti socketů\n" -" -c\tmaximální velikost vytvářených core souborů (výpis paměti programu)\n" +" -c\tmaximální velikost vytvářených core souborů (výpis paměti " +"programu)\n" " -d\tmaximální velikost datového segmentu procesu\n" " -e\tmaximální plánovací priorita („nice“)\n" " -f\tmaximální velikost souborů zapsaných shellem a jeho potomky\n" @@ -4138,12 +4311,13 @@ msgstr "" " přepínač, pak se předpokládá -f.\n" " \n" " Hodnoty jsou v násobcích 1024 bajtů, kromě -t, která je v sekundách,\n" -" -p, která je v násobcích 512 bajtů, a -u, což je absolutní počet procesů.\n" +" -p, která je v násobcích 512 bajtů, a -u, což je absolutní počet " +"procesů.\n" " \n" " Návratová hodnota:\n" " Vrací úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4176,31 +4350,35 @@ msgstr "" " Návratový kód\n" " Vrátí úspěch, pokud nebyl zadán neplatný MÓD nebo přepínač." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" " Waits for the process identified by ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" -" status is zero. If ID is a a job specification, waits for all processes\n" +" status is zero. If ID is a a job specification, waits for all " +"processes\n" " in the job's pipeline.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Počká na dokončení úlohy a vrátí její návratový kód.\n" " \n" " Počká na proces určený ID, což může být ID procesu nebo identifikace\n" -" úlohy, a nahlásí jeho návratový kód. Není-li ID zadáno, počká na všechny\n" +" úlohy, a nahlásí jeho návratový kód. Není-li ID zadáno, počká na " +"všechny\n" " právě aktivní dětské procesy a návratovým kódem bude nula. Je-li ID\n" " identifikátorem úlohy, počká na všechny procesy z kolony úlohy.\n" " \n" " Návratový kód:\n" -" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný přepínač." +" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný " +"přepínač." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4209,19 +4387,22 @@ msgid "" " and the return code is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Počká na dokončení procesu a vrátí jeho návratový kód.\n" " \n" " Počká na zadaný proces a nahlásí jeho návratový kód. Není-li PID zadán,\n" -" bude se čekat na všechny právě aktivní procesy potomků a návratová hodnota\n" +" bude se čekat na všechny právě aktivní procesy potomků a návratová " +"hodnota\n" " bude nula. PID musí být ID procesu.\n" " \n" " Návratový kód:\n" -" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný přepínač." +" Vrátí kód ID, selže, pokud ID není platný nebo byl zadán neplatný " +"přepínač." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4235,14 +4416,17 @@ msgid "" msgstr "" "Pro každý prvek seznamu vykoná příkazy.\n" " \n" -" Smyčka „for“ provede posloupnost příkazů pro každý prvek v seznamu položek.\n" -" Pokud „in SLOVECH…;“ není přítomno, pak se předpokládá „in \"$@\"“. NÁZEV\n" -" bude postupně nastaven na každý prvek ve SLOVECH a PŘÍKAZY budou provedeny.\n" +" Smyčka „for“ provede posloupnost příkazů pro každý prvek v seznamu " +"položek.\n" +" Pokud „in SLOVECH…;“ není přítomno, pak se předpokládá „in \"$@\"“. " +"NÁZEV\n" +" bude postupně nastaven na každý prvek ve SLOVECH a PŘÍKAZY budou " +"provedeny.\n" " \n" " Návratový kód:\n" " Vrátí kód naposledy provedeného příkazu." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4271,7 +4455,7 @@ msgstr "" " Návratový kód:\n" " Vrátí kód naposledy vykonaného příkazu." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4292,13 +4476,20 @@ msgid "" msgstr "" "Vybere slova ze seznamu a vykoná příkazy.\n" " \n" -" SLOVA jsou expandována a vytvoří seznam slov. Množina expandovaných slov\n" -" je vytištěna na standardní chybový výstup, každé předchází číslo. Není-li\n" -" „in SLOVA“ přítomno, předpokládá se „in \"$@\"“. Pak je zobrazena výzva PS3\n" -" a jeden řádek načten ze standardního vstupu. Pokud je řádek tvořen číslem\n" -" odpovídajícím jednomu ze zobrazených slov, pak NÁZEV bude nastaven na toto\n" -" slovo. Pokud je řádek prázdný, SLOVA a výzva budou znovu zobrazeny. Je-li\n" -" načten EOF (konec souboru), příkaz končí. Načtení jakékoliv jiné hodnoty\n" +" SLOVA jsou expandována a vytvoří seznam slov. Množina expandovaných " +"slov\n" +" je vytištěna na standardní chybový výstup, každé předchází číslo. Není-" +"li\n" +" „in SLOVA“ přítomno, předpokládá se „in \"$@\"“. Pak je zobrazena výzva " +"PS3\n" +" a jeden řádek načten ze standardního vstupu. Pokud je řádek tvořen " +"číslem\n" +" odpovídajícím jednomu ze zobrazených slov, pak NÁZEV bude nastaven na " +"toto\n" +" slovo. Pokud je řádek prázdný, SLOVA a výzva budou znovu zobrazeny. Je-" +"li\n" +" načten EOF (konec souboru), příkaz končí. Načtení jakékoliv jiné " +"hodnoty\n" " nastaví NÁZEV na prázdný řetězec. Načtený řádek bude uložen do proměnné\n" " REPLY. Po každém výběru budou provedeny PŘÍKAZY, dokud nebude vykonán\n" " příkaz „break“.\n" @@ -4306,7 +4497,7 @@ msgstr "" " Návratový kód:\n" " Vrátí kód naposledy prováděného příkazu." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4324,18 +4515,20 @@ msgstr "" "Nahlásí čas spotřebovaný prováděním kolony.\n" " \n" " Vykoná KOLONU a zobrazí přehled reálného času, uživatelského\n" -" procesorového času a systémového procesorového času stráveného prováděním\n" +" procesorového času a systémového procesorového času stráveného " +"prováděním\n" " KOLONY poté, co skončí.\n" " \n" " Přepínače:\n" " -p\tzobrazí přehled časů v přenositelném posixovém formátu\n" " \n" -" Hodnota proměnné TIMEFORMAT se použije jako specifikace výstupního formátu.\n" +" Hodnota proměnné TIMEFORMAT se použije jako specifikace výstupního " +"formátu.\n" " \n" " Návratový kód:\n" " Návratová hodnota je návratová hodnota KOLONY." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4353,16 +4546,21 @@ msgstr "" " Návratový kód:\n" " Vrátí kód naposledy provedeného příkazu." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then " +"the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " +"is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of the\n" -" entire construct is the exit status of the last command executed, or zero\n" +" `then COMMANDS' list is executed and the if command completes. " +"Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of " +"the\n" +" entire construct is the exit status of the last command executed, or " +"zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -4371,17 +4569,19 @@ msgstr "" "Vykoná příkazy na základě splnění podmínky.\n" " \n" " Provede seznam „if PŘÍKAZŮ“. Bude-li jeho návratový kód nula, pak bude\n" -" proveden seznam „then PŘÍKAZŮ“. Jinak bude proveden popořadě každý seznam\n" +" proveden seznam „then PŘÍKAZŮ“. Jinak bude proveden popořadě každý " +"seznam\n" " „elif PŘÍKAZŮ“ a bude-li jeho návratový kód nula, odpovídající seznam\n" " „then PŘÍKAZŮ“ bude proveden a příkaz if skončí. V opačném případě bude\n" " proveden seznam „else PŘÍKAZŮ“, pokud existuje. Návratová hodnota celé\n" -" konstrukce je návratovou hodnotou posledního provedeného příkazu nebo nula,\n" +" konstrukce je návratovou hodnotou posledního provedeného příkazu nebo " +"nula,\n" " pokud žádná z testovaných podmínek není pravdivá.\n" " \n" " Návratový kód:\n" " Vrátí kód naposledy provedeného příkazu." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4393,13 +4593,14 @@ msgid "" msgstr "" "Vykonává příkazy, dokud test úspěšně prochází.\n" " \n" -" Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „while“\n" +" Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve " +"„while“\n" " PŘÍKAZECH má nulový návratový kód.\n" " \n" " Návratový kód:\n" " Vrátí kód naposledy provedeného příkazu." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4411,17 +4612,19 @@ msgid "" msgstr "" "Vykonává příkazy, dokud test končí neúspěšně.\n" " \n" -" Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „until“\n" +" Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve " +"„until“\n" " PŘÍKAZECH má nenulový návratový kód. \n" " Návratový kód:\n" " Vrátí kód naposledy provedeného příkazu." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is " +"invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4431,14 +4634,16 @@ msgstr "" "Definuje funkci shellu.\n" " \n" " Vytvoří shellovou funkci pojmenovanou NÁZEV. Volána jakožto jednoduchý\n" -" příkaz spustí PŘÍKAZY v kontextu volajícího shellu. Je-li vyvolán NÁZEV,\n" -" budou funkci předány argumenty jako $1…$n a název funkce bude umístěn do\n" +" příkaz spustí PŘÍKAZY v kontextu volajícího shellu. Je-li vyvolán " +"NÁZEV,\n" +" budou funkci předány argumenty jako $1…$n a název funkce bude umístěn " +"do\n" " $FUNCNAME.\n" " \n" " Návratový kód:\n" " Vrátí úspěch, pokud NÁZEV není jen pro čtení." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4455,7 +4660,7 @@ msgstr "" " Návratový kód:\n" " Vrátí kód naposledy spuštěného příkazu." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4471,14 +4676,16 @@ msgstr "" "Obnoví úlohu do popředí.\n" " \n" " Ekvivalent k argumentu ÚLOHA příkazu „fg“. Obnoví pozastavenou úlohu\n" -" nebo úlohu na pozadí. ÚLOHA může určovat buď název úlohy, nebo číslo úlohy.\n" -" Přidání „&“ za ÚLOHU přesune úlohu na pozadí, jako by identifikátor úlohy\n" +" nebo úlohu na pozadí. ÚLOHA může určovat buď název úlohy, nebo číslo " +"úlohy.\n" +" Přidání „&“ za ÚLOHU přesune úlohu na pozadí, jako by identifikátor " +"úlohy\n" " byl argumentem příkazu „bg“.\n" " \n" " Návratový kód:\n" " Vrátí kód obnovené úlohy." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4500,13 +4707,16 @@ msgstr "" # příkaz, který by byl vykonán na základě splnění jiné podmínky. Tj. překlad # „podmíněný příkaz“ je chybný. # Toto je nápověda k vestavěnému příkazu „[“. -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries used\n" -" by the `test' builtin, and may be combined using the following operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the " +"conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries " +"used\n" +" by the `test' builtin, and may be combined using the following " +"operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -4534,20 +4744,22 @@ msgstr "" " ! VÝRAZ\t\tPravda, pokud VÝRAZ je nepravdivý; jinak nepravda\n" " VÝR1 && VÝR2\tPravda, pokud oba VÝR1 i VÝR2 jsou pravdivé;\n" " \t\tjinak nepravda\n" -" VÝR1 || VÝR2\tPravda, pokud VÝR1 nebo VÝR2 je pravdivý; jinak nepravda\n" +" VÝR1 || VÝR2\tPravda, pokud VÝR1 nebo VÝR2 je pravdivý; jinak " +"nepravda\n" " \n" " Jsou-li použity operátory „==“ a „!=“, řetězec napravo od operátoru je\n" " použit jako vzor a bude uplatněno porovnávání proti vzoru. Je-li použit\n" " operátor „=~, řetězec napravo do operátoru je uvažován jako regulární\n" " výraz.\n" " \n" -" Operátory && a || nevyhodnocují VÝR2, pokud VÝR1 je dostatečný na určení\n" +" Operátory && a || nevyhodnocují VÝR2, pokud VÝR1 je dostatečný na " +"určení\n" " hodnoty výrazu.\n" " \n" " Návratový kód:\n" " 0 nebo 1 podle hodnoty VÝRAZU." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4605,7 +4817,8 @@ msgstr "" " BASH_VERSION\tInformace o verzi tohoto Bashe.\n" " CDPATH\tDvojtečkou oddělený seznam adresářů, který se prohledává\n" " \t\tna adresáře zadané jako argumenty u „cd“.\n" -" GLOBIGNORE\tDvojtečkou oddělený seznam vzorů popisujících jména souborů,\n" +" GLOBIGNORE\tDvojtečkou oddělený seznam vzorů popisujících jména " +"souborů,\n" " \t\tkterá budou ignorována při expanzi cest.\n" " HISTFILE\tJméno souboru, kde je uložena historie vašich příkazů.\n" " HISTFILESIZE\tMaximální počet řádků, které tento soubor smí obsahovat.\n" @@ -4651,7 +4864,7 @@ msgstr "" " \t\trozlišení, které příkazy by měly být uloženy do seznamu\n" " \t\thistorie.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4708,7 +4921,7 @@ msgstr "" " Vrátí úspěch, pokud nebyl zadán neplatný argument a změna adresáře\n" " neselhala." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4758,7 +4971,7 @@ msgstr "" " Vrátí úspěch, pokud nebyl zadán neplatný argument nebo neselhala změna\n" " adresáře." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4775,10 +4988,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" " Exit Status:\n" @@ -4787,7 +5002,8 @@ msgstr "" "Zobrazí zásobník adresářů.\n" " \n" " Zobrazí seznam právě pamatovaných adresářů. Adresáře si najdou cestu\n" -" na seznam příkazem „pushd“ a procházet seznamem zpět lze příkazem „popd“.\n" +" na seznam příkazem „pushd“ a procházet seznamem zpět lze příkazem " +"„popd“.\n" " \n" " Přepínače:\n" " -c\tvyprázdní zásobník adresářů tím, že smaže všechny jeho prvky\n" @@ -4806,12 +5022,13 @@ msgstr "" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" " Change the setting of each shell option OPTNAME. Without any option\n" -" arguments, list all shell options with an indication of whether or not each\n" +" arguments, list all shell options with an indication of whether or not " +"each\n" " is set.\n" " \n" " Options:\n" @@ -4828,7 +5045,8 @@ msgstr "" "Zapne nebo vypne volby (přepínače) shellu.\n" " \n" " Změní nastavení každého přepínače shellu NÁZEV_VOLBY. Bez přepínačových\n" -" argumentů vypíše seznam všech přepínačů shellu s příznakem, zda je, nebo\n" +" argumentů vypíše seznam všech přepínačů shellu s příznakem, zda je, " +"nebo\n" " není nastaven.\n" " Přepínače:\n" " -o\tomezí NÁZVY_VOLEB na ty, které jsou definovány pro použití\n" @@ -4842,7 +5060,7 @@ msgstr "" " Vrátí úspěch, je-li NÁZEV_VOLBY zapnut. Selže, byl-li zadán neplatný\n" " přepínač nebo je-li NÁZEV_VOLBY vypnut." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4850,20 +5068,25 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: plain\n" -" characters, which are simply copied to standard output; character escape\n" +" FORMAT is a character string which contains three types of objects: " +"plain\n" +" characters, which are simply copied to standard output; character " +"escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next successive\n" +" format specifications, each of which causes printing of the next " +"successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in printf(1)\n" +" In addition to the standard format specifications described in printf" +"(1)\n" " and printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or assignment\n" +" Returns success unless an invalid option is given or a write or " +"assignment\n" " error occurs." msgstr "" "Naformátuje a vypíše ARGUMENTY podle definice FORMÁTU.\n" @@ -4872,10 +5095,13 @@ msgstr "" " -v proměnná\tvýstup umístí do proměnné shellu PROMĚNNÁ namísto\n" " \t\todeslání na standardní výstup.\n" " \n" -" FORMÁT je řetězec znaků, který obsahuje tři druhy objektů: obyčejné znaky,\n" -" které jsou prostě zkopírovány na standardní výstup, posloupnosti escapových\n" +" FORMÁT je řetězec znaků, který obsahuje tři druhy objektů: obyčejné " +"znaky,\n" +" které jsou prostě zkopírovány na standardní výstup, posloupnosti " +"escapových\n" " znaků, které jsou zkonvertovány a zkopírovány na standardní výstup a\n" -" formátovací definice, z nichž každá způsobí vytištění dalšího argumentu.\n" +" formátovací definice, z nichž každá způsobí vytištění dalšího " +"argumentu.\n" " \n" " Tento printf interpretuje vedle standardních formátovacích definic\n" " popsaných v printf(1) a printf(3) též:\n" @@ -4889,12 +5115,14 @@ msgstr "" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nedošlo k chybě\n" " zápisu nebo přiřazení." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no options\n" -" are supplied, existing completion specifications are printed in a way that\n" +" For each NAME, specify how arguments are to be completed. If no " +"options\n" +" are supplied, existing completion specifications are printed in a way " +"that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -4919,18 +5147,20 @@ msgstr "" " -r\todstraní pro každý NÁZEV doplňovací pravidlo, nebo není-li zadán\n" " \tžádný NÁZEV, zruší všechna pravidla\n" " \n" -" Při doplňování se akce uplatňují v pořadí, v jakém by byla tímto příkazem\n" +" Při doplňování se akce uplatňují v pořadí, v jakém by byla tímto " +"příkazem\n" " vypsána pravidla psaná velkými písmeny.\n" " \n" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a nevyskytla se chyba." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches against\n" +" completions. If the optional WORD argument is supplied, matches " +"against\n" " WORD are generated.\n" " \n" " Exit Status:\n" @@ -4952,14 +5182,17 @@ msgstr "" # opravit. # TODO: Tento překlad je vemli kostrbatý a místy nedává smysl. Je třeba # ujednotit pravidlo–pravidla doplnění–doplňování (completion specification). -#: builtins.c:1911 +#: builtins.c:1912 #, fuzzy msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" -" the completion currently begin executed. If no OPTIONs are givenm, print\n" -" the completion options for each NAME or the current completion specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are " +"supplied,\n" +" the completion currently begin executed. If no OPTIONs are givenm, " +"print\n" +" the completion options for each NAME or the current completion " +"specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -4991,37 +5224,46 @@ msgstr "" " \n" " Argumenty:\n" " Každý NÁZEV ukazuje na příkaz, pro který pravidlo doplnění musí být\n" -" předem definováno pomocí vestavěného příkazu „complete“. Nejsou-li zadány\n" -" žádné NÁZVY, musí být compopt volán funkcí, která právě generuje doplnění,\n" +" předem definováno pomocí vestavěného příkazu „complete“. Nejsou-li " +"zadány\n" +" žádné NÁZVY, musí být compopt volán funkcí, která právě generuje " +"doplnění,\n" " a změněny budou volby tohoto právě běžícího generátoru doplnění.\n" " \n" " Návratový kód:\n" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a NÁZEV již měl\n" " definováno pravidlo pro doplnění." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" -" Read lines from the standard input into the array variable ARRAY, or from\n" -" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n" +" Read lines from the standard input into the array variable ARRAY, or " +"from\n" +" file descriptor FD if the -u option is supplied. The variable MAPFILE " +"is\n" " the default ARRAY.\n" " \n" " Options:\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied.\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0.\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " +"copied.\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " +"index is 0.\n" " -s count \tDiscard the first COUNT lines read.\n" " -t\t\tRemove a trailing newline from each line read.\n" -" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n" +" -u fd\t\tRead lines from file descriptor FD instead of the standard " +"input.\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read.\n" -" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n" +" -c quantum\tSpecify the number of lines read between each call to " +"CALLBACK.\n" " \n" " Arguments:\n" " ARRAY\t\tArray variable name to use for file data.\n" " \n" " If -C is supplied without -c, the default quantum is 5000.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY " +"before\n" " assigning to it.\n" " \n" " Exit Status:\n" @@ -5029,8 +5271,10 @@ msgid "" msgstr "" "Načte řádky ze souboru do proměnné typu pole.\n" " \n" -" Načte řádky ze standardního vstupu nebo z deskriptoru souboru FD, byl-li\n" -" zadán přepínač -u, do proměnné POLE, která je typu pole. Implicitním POLEM\n" +" Načte řádky ze standardního vstupu nebo z deskriptoru souboru FD, byl-" +"li\n" +" zadán přepínač -u, do proměnné POLE, která je typu pole. Implicitním " +"POLEM\n" " je proměnná MAPFILE.\n" " \n" " Přepínače:\n" @@ -5060,9 +5304,6 @@ msgstr "" " Vrátí úspěch, pokud nebyl zadán neplatný přepínač a POLE nebylo jen pro\n" " čtení." -#~ msgid "Returns the context of the current subroutine call." -#~ msgstr "Vrací kontext aktuálního volání podrutiny." - #~ msgid " " #~ msgstr " " @@ -5075,7 +5316,8 @@ msgstr "" #~ msgid "can be used used to provide a stack trace." #~ msgstr "lze využít při výpisu zásobníku volání." -#~ msgid "The value of EXPR indicates how many call frames to go back before the" +#~ msgid "" +#~ "The value of EXPR indicates how many call frames to go back before the" #~ msgstr "Hodnota VÝRAZ značí, kolik rámců volání se má jít zpět před" #~ msgid "current one; the top frame is frame 0." @@ -5096,38 +5338,46 @@ msgstr "" #~ msgid "back up through the list with the `popd' command." #~ msgstr "vrátit příkazem „popd“." -#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions" +#~ msgid "" +#~ "The -l flag specifies that `dirs' should not print shorthand versions" #~ msgstr "Příznak -l značí, že „dirs“ nemá vypisovat zkrácené verze adresářů," -#~ msgid "of directories which are relative to your home directory. This means" +#~ msgid "" +#~ "of directories which are relative to your home directory. This means" #~ msgstr "které leží pod vaším domovským adresářem. To znamená, že „~/bin“" #~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" #~ msgstr "smí být zobrazen jako „/homes/bfox/bin“. Příznak -v způsobí, že" #~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "„dirs“ vypíše zásobník adresářů záznam po záznamu na samostatné řádky" +#~ msgstr "" +#~ "„dirs“ vypíše zásobník adresářů záznam po záznamu na samostatné řádky" -#~ msgid "prepending the directory name with its position in the stack. The -p" +#~ msgid "" +#~ "prepending the directory name with its position in the stack. The -p" #~ msgstr "a před název adresáře uvede jeho pořadí v zásobníku. Příznak -p" #~ msgid "flag does the same thing, but the stack position is not prepended." #~ msgstr "dělá to samé, ale bez informace o umístění na zásobníku." -#~ msgid "The -c flag clears the directory stack by deleting all of the elements." +#~ msgid "" +#~ "The -c flag clears the directory stack by deleting all of the elements." #~ msgstr "Příznak -c vyprázdní zásobník smazáním všem prvků." -#~ msgid "+N displays the Nth entry counting from the left of the list shown by" +#~ msgid "" +#~ "+N displays the Nth entry counting from the left of the list shown by" #~ msgstr "+N zobrazí N. položku počítáno zleva na seznamu, který by ukázal" #~ msgid " dirs when invoked without options, starting with zero." #~ msgstr " příkaz dirs bez jakýchkoliv přepínačů, počítáno od nuly." -#~ msgid "-N displays the Nth entry counting from the right of the list shown by" +#~ msgid "" +#~ "-N displays the Nth entry counting from the right of the list shown by" #~ msgstr "-N zobrazí N. položku počítáno zprava na seznamu, který by ukázal" #~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "Přidá adresář na vrchol zásobníku adresářů, nebo rotuje zásobník tak," +#~ msgstr "" +#~ "Přidá adresář na vrchol zásobníku adresářů, nebo rotuje zásobník tak," #~ msgid "the stack, making the new top of the stack the current working" #~ msgstr "že nový vrchol zásobníku se stane pracovním adresářem." @@ -5151,7 +5401,8 @@ msgstr "" #~ msgstr " zprava seznamu, který by ukázal „dirs“, počínaje od" #~ msgid "-n suppress the normal change of directory when adding directories" -#~ msgstr "-n potlačí obvyklou změnu pracovního adresáře při přidávání adresářů" +#~ msgstr "" +#~ "-n potlačí obvyklou změnu pracovního adresáře při přidávání adresářů" #~ msgid " to the stack, so only the stack is manipulated." #~ msgstr " na zásobník, takže se změní jen obsah zásobníku." @@ -5192,8 +5443,10 @@ msgstr "" #~ msgid " removes the last directory, `popd -1' the next to last." #~ msgstr " odstraní poslední adresář, “popd -1“ předposlední." -#~ msgid "-n suppress the normal change of directory when removing directories" -#~ msgstr "-n potlačí obvyklou změnu pracovního adresáře při odebírání adresářů" +#~ msgid "" +#~ "-n suppress the normal change of directory when removing directories" +#~ msgstr "" +#~ "-n potlačí obvyklou změnu pracovního adresáře při odebírání adresářů" #~ msgid " from the stack, so only the stack is manipulated." #~ msgstr " ze zásobníku, takže pouze zásobník dozná změny." @@ -5219,7 +5472,8 @@ msgstr "" #~ msgid "" #~ "Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" #~ " break N levels." -#~ msgstr "Ukončí smyčku FOR, WHILE nebo UNTIL. Je-li zadáno N, ukončí N úrovní." +#~ msgstr "" +#~ "Ukončí smyčku FOR, WHILE nebo UNTIL. Je-li zadáno N, ukončí N úrovní." #~ msgid "" #~ "Run a shell builtin. This is useful when you wish to rename a\n" @@ -5245,16 +5499,22 @@ msgstr "" #~ msgid "" #~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell\n" #~ " function called `ls', and you wish to call the command `ls', you can\n" -#~ " say \"command ls\". If the -p option is given, a default value is used\n" -#~ " for PATH that is guaranteed to find all of the standard utilities. If\n" -#~ " the -V or -v option is given, a string is printed describing COMMAND.\n" +#~ " say \"command ls\". If the -p option is given, a default value is " +#~ "used\n" +#~ " for PATH that is guaranteed to find all of the standard utilities. " +#~ "If\n" +#~ " the -V or -v option is given, a string is printed describing " +#~ "COMMAND.\n" #~ " The -V option produces a more verbose description." #~ msgstr "" #~ "Spustí PŘÍKAZ s ARGUMENTY ignoruje funkce shellu. Máte-li shellovou\n" #~ " funkci pojmenovanou „ls“, a chcete-li zavolat příkaz „ls“, použijte\n" -#~ " „command ls“. Je-li zadán přepínač -p, bude pro PATH použita implicitní\n" -#~ " hodnota, která zaručuje, že budou nalezeny všechny standardní nástroje.\n" -#~ " Je-li zadán přepínač -V nebo -v, bude vytištěn řetězec popisující PŘÍKAZ.\n" +#~ " „command ls“. Je-li zadán přepínač -p, bude pro PATH použita " +#~ "implicitní\n" +#~ " hodnota, která zaručuje, že budou nalezeny všechny standardní " +#~ "nástroje.\n" +#~ " Je-li zadán přepínač -V nebo -v, bude vytištěn řetězec popisující " +#~ "PŘÍKAZ.\n" #~ " Přepínač -V produkuje podrobnější popis." #~ msgid "" @@ -5266,7 +5526,8 @@ msgstr "" #~ " \n" #~ " -a\tto make NAMEs arrays (if supported)\n" #~ " -f\tto select from among function names only\n" -#~ " -F\tto display function names (and line number and source file name if\n" +#~ " -F\tto display function names (and line number and source file name " +#~ "if\n" #~ " \tdebugging) without definitions\n" #~ " -i\tto make NAMEs have the `integer' attribute\n" #~ " -r\tto make NAMEs readonly\n" @@ -5280,28 +5541,33 @@ msgstr "" #~ " and definition. The -F option restricts the display to function\n" #~ " name only.\n" #~ " \n" -#~ " Using `+' instead of `-' turns off the given attribute instead. When\n" +#~ " Using `+' instead of `-' turns off the given attribute instead. " +#~ "When\n" #~ " used in a function, makes NAMEs local, as with the `local' command." #~ msgstr "" #~ "Deklaruje proměnné a/nebo jim nastaví atributy. Nejsou-li zadány NÁZVY,\n" -#~ " tak místo toho zobrazí hodnoty proměnných. Přepínač -p zobrazí atributy\n" +#~ " tak místo toho zobrazí hodnoty proměnných. Přepínač -p zobrazí " +#~ "atributy\n" #~ " a hodnoty pro každý NÁZEV.\n" #~ " \n" #~ " Příznaky jsou:\n" #~ " \n" #~ " -a\tučiní NÁZVY poli (je-li podporováno)\n" #~ " -f\tvybírá pouze mezi názvy funkcí\n" -#~ " -F\tzobrazí názvy funkcí (a číslo řádku a název zdrojového souboru,\n" +#~ " -F\tzobrazí názvy funkcí (a číslo řádku a název zdrojového " +#~ "souboru,\n" #~ " \tje-li zapnuto ladění) bez definic\n" #~ " -i\tpřiřadí NÁZVŮM atribut „integer“ (číslo)\n" #~ " -r\tučiní NÁZVY jen pro čtení\n" #~ " -t\tpřiřadí NÁZVŮM atribut „trace“ (sledování)\n" #~ " -x\tvyexportuje NÁZVY\n" #~ " \n" -#~ " Proměnné s atributem integer jsou aritmeticky vyhodnoceny (vizte „let“),\n" +#~ " Proměnné s atributem integer jsou aritmeticky vyhodnoceny (vizte " +#~ "„let“),\n" #~ " když je do proměnné přiřazováno.\n" #~ " \n" -#~ " Při zobrazování hodnot proměnných -f zobrazí názvy a definice funkcí.\n" +#~ " Při zobrazování hodnot proměnných -f zobrazí názvy a definice " +#~ "funkcí.\n" #~ " Přepínač -F omezí výpis jen na názvy funkcí.\n" #~ " \n" #~ " Pomocí „+“ namísto „-“ daný atribut odeberete. Je-li použito uvnitř\n" @@ -5316,11 +5582,14 @@ msgstr "" #~ " have a visible scope restricted to that function and its children." #~ msgstr "" #~ "Vytvoří lokální proměnnou pojmenovanou NÁZEV a přiřadí jí HODNOTU.\n" -#~ " LOCAL smí být použito jen uvnitř funkcí. Učiní proměnnou NÁZEV viditelnou\n" +#~ " LOCAL smí být použito jen uvnitř funkcí. Učiní proměnnou NÁZEV " +#~ "viditelnou\n" #~ " jen v dané funkci a jejích potomcích." -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "Vypíše ARGUMENTY. Je-li zadáni -n, závěrečný konec řádku bude potlačen." +#~ msgid "" +#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." +#~ msgstr "" +#~ "Vypíše ARGUMENTY. Je-li zadáni -n, závěrečný konec řádku bude potlačen." #~ msgid "" #~ "Enable and disable builtin shell commands. This allows\n" @@ -5334,24 +5603,36 @@ msgstr "" #~ " previously loaded with -f. If no non-option names are given, or\n" #~ " the -p option is supplied, a list of builtins is printed. The\n" #~ " -a option means to print every builtin with an indication of whether\n" -#~ " or not it is enabled. The -s option restricts the output to the POSIX.2\n" -#~ " `special' builtins. The -n option displays a list of all disabled builtins." +#~ " or not it is enabled. The -s option restricts the output to the " +#~ "POSIX.2\n" +#~ " `special' builtins. The -n option displays a list of all disabled " +#~ "builtins." #~ msgstr "" #~ "Povolí nebo zakáže vestavěný příkaz shellu. To vám umožňuje použít\n" -#~ " příkaz z disku, který má stejné jméno jako vestavěný příkaz shellu, aniž\n" +#~ " příkaz z disku, který má stejné jméno jako vestavěný příkaz shellu, " +#~ "aniž\n" #~ " byste museli zadávat celou cestu. Je-li použito -n, NÁZVY se stanou\n" -#~ " zakázanými, jinak budou povoleny. Například „test“ z PATH namísto verze\n" -#~ " vestavěné do shellu lze používat tak, že napíšete „enable -n test“. Na\n" -#~ " systémech podporujících dynamické zavádění přepínač -f může být použit\n" -#~ " pro zavedení nových vestavěných příkazů ze sdíleného objektu NÁZEV_SOUBORU.\n" -#~ " Přepínač -d odstraní vestavěný příkaz zavedený přes -f. Není-li zadán\n" -#~ " žádný přepínač nebo je-li zadán přepínač -p, bude vypsán seznam vestavěných\n" -#~ " příkazů. Přepínač -a znamená, že budou vypsány všechny vestavěné příkazy a\n" -#~ " u každého bude vyznačeno, zda je povolen nebo zakázán. Přepínač -s omezí\n" +#~ " zakázanými, jinak budou povoleny. Například „test“ z PATH namísto " +#~ "verze\n" +#~ " vestavěné do shellu lze používat tak, že napíšete „enable -n test“. " +#~ "Na\n" +#~ " systémech podporujících dynamické zavádění přepínač -f může být " +#~ "použit\n" +#~ " pro zavedení nových vestavěných příkazů ze sdíleného objektu " +#~ "NÁZEV_SOUBORU.\n" +#~ " Přepínač -d odstraní vestavěný příkaz zavedený přes -f. Není-li " +#~ "zadán\n" +#~ " žádný přepínač nebo je-li zadán přepínač -p, bude vypsán seznam " +#~ "vestavěných\n" +#~ " příkazů. Přepínač -a znamená, že budou vypsány všechny vestavěné " +#~ "příkazy a\n" +#~ " u každého bude vyznačeno, zda je povolen nebo zakázán. Přepínač -s " +#~ "omezí\n" #~ " výpis na příkazy uvedené v POSIX.2. Přepínač -n zobrazí seznam všech\n" #~ " zakázaných vestavěných příkazů." -#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)." +#~ msgid "" +#~ "Read ARGs as input to the shell and execute the resulting command(s)." #~ msgstr "Načte ARGUMENTY jako vstup shellu a výsledný příkaz(y) provede." #~ msgid "" @@ -5365,11 +5646,14 @@ msgstr "" #~ " then the shell exits, unless the shell option `execfail' is set." #~ msgstr "" #~ "Provede SOUBOR, přičemž nahradí tento shell zadaným programem.\n" -#~ " Není-li SOUBOR zadán, přesměrování zapůsobí v tomto shellu. Je-li prvním\n" -#~ " argumentem „-l“, bude do nultého argumentu SOUBORU umístěna pomlčka tak,\n" +#~ " Není-li SOUBOR zadán, přesměrování zapůsobí v tomto shellu. Je-li " +#~ "prvním\n" +#~ " argumentem „-l“, bude do nultého argumentu SOUBORU umístěna pomlčka " +#~ "tak,\n" #~ " jak to dělá login. Je-li zadán přepínač „-c“, bude SOUBOR spuštěn\n" #~ " s prázdným prostředím. Přepínač „-a“ znamená, že argv[0] prováděného\n" -#~ " procesu bude nastaven na NÁZEV. Pokud soubor nemůže být proveden a shell\n" +#~ " procesu bude nastaven na NÁZEV. Pokud soubor nemůže být proveden a " +#~ "shell\n" #~ " není interaktivní, pak shell bude ukončen, pokud přepínač shellu\n" #~ " „execfail“ není nastaven." @@ -5381,20 +5665,31 @@ msgstr "" #~ " remembered. If the -p option is supplied, PATHNAME is used as the\n" #~ " full pathname of NAME, and no path search is performed. The -r\n" #~ " option causes the shell to forget all remembered locations. The -d\n" -#~ " option causes the shell to forget the remembered location of each NAME.\n" +#~ " option causes the shell to forget the remembered location of each " +#~ "NAME.\n" #~ " If the -t option is supplied the full pathname to which each NAME\n" -#~ " corresponds is printed. If multiple NAME arguments are supplied with\n" -#~ " -t, the NAME is printed before the hashed full pathname. The -l option\n" -#~ " causes output to be displayed in a format that may be reused as input.\n" -#~ " If no arguments are given, information about remembered commands is displayed." +#~ " corresponds is printed. If multiple NAME arguments are supplied " +#~ "with\n" +#~ " -t, the NAME is printed before the hashed full pathname. The -l " +#~ "option\n" +#~ " causes output to be displayed in a format that may be reused as " +#~ "input.\n" +#~ " If no arguments are given, information about remembered commands is " +#~ "displayed." #~ msgstr "" #~ "Pro každý NÁZEV je určena plná cesta k příkazu a je zapamatována.\n" -#~ " Za použití přepínače -p se vezme NÁZEV_CESTY za plnou cestu k NÁZVU a\n" -#~ " žádné vyhledávání cesty se nekoná. Přepínač -r způsobí, že shell zapomene\n" -#~ " všechny zapamatovaná umístění. Přepínač -d způsobí, že shell zapomene\n" -#~ " zapamatovaná umístění každého NÁZVU. Je-li zadán přepínač -t, bude vypsána\n" -#~ " plná cesta ke každému NÁZVU. Je-li s -t zadáno více NÁZVŮ, NÁZEV bude\n" -#~ " vypsán před uloženou celou cestou. Přepínač -l vytvoří takový výstup,\n" +#~ " Za použití přepínače -p se vezme NÁZEV_CESTY za plnou cestu k NÁZVU " +#~ "a\n" +#~ " žádné vyhledávání cesty se nekoná. Přepínač -r způsobí, že shell " +#~ "zapomene\n" +#~ " všechny zapamatovaná umístění. Přepínač -d způsobí, že shell " +#~ "zapomene\n" +#~ " zapamatovaná umístění každého NÁZVU. Je-li zadán přepínač -t, bude " +#~ "vypsána\n" +#~ " plná cesta ke každému NÁZVU. Je-li s -t zadáno více NÁZVŮ, NÁZEV " +#~ "bude\n" +#~ " vypsán před uloženou celou cestou. Přepínač -l vytvoří takový " +#~ "výstup,\n" #~ " který lze opět použít jako vstup. Nejsou-li zadány žádné argumenty,\n" #~ " budou vypsány informace o zapamatovaných příkazech." @@ -5406,20 +5701,27 @@ msgstr "" #~ " a short usage synopsis." #~ msgstr "" #~ "Zobrazí užitečné informace o vestavěných příkazech. Je-li zadán VZOREK,\n" -#~ " vrátí podrobnou nápovědu ke všem příkazům odpovídajícím VZORKU, jinak je\n" -#~ " vytištěn seznam vestavěných příkazů. Přepínač -s omezí výstup o každém\n" +#~ " vrátí podrobnou nápovědu ke všem příkazům odpovídajícím VZORKU, jinak " +#~ "je\n" +#~ " vytištěn seznam vestavěných příkazů. Přepínač -s omezí výstup " +#~ "o každém\n" #~ " vestavěném příkazu odpovídajícího VZORKU na stručný popis použití." #~ msgid "" #~ "By default, removes each JOBSPEC argument from the table of active jobs.\n" -#~ " If the -h option is given, the job is not removed from the table, but is\n" +#~ " If the -h option is given, the job is not removed from the table, but " +#~ "is\n" #~ " marked so that SIGHUP is not sent to the job if the shell receives a\n" -#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove all\n" -#~ " jobs from the job table; the -r option means to remove only running jobs." +#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove " +#~ "all\n" +#~ " jobs from the job table; the -r option means to remove only running " +#~ "jobs." #~ msgstr "" #~ "Implicitně odstraní každý argument ÚLOHA z tabulky aktivních úloh. Je-li\n" -#~ " zadán přepínač -h, úloha není odstraněna z tabulky, ale je označena tak.\n" -#~ " že úloze nebude zaslán SIGHUP, když shell obdrží SIGHUP. Přepínač -a,\n" +#~ " zadán přepínač -h, úloha není odstraněna z tabulky, ale je označena " +#~ "tak.\n" +#~ " že úloze nebude zaslán SIGHUP, když shell obdrží SIGHUP. Přepínač -" +#~ "a,\n" #~ " pokud není uvedena ÚLOHA, znamená, že všechny úlohy budou odstraněny\n" #~ " z tabulky úloh. Přepínač -r znamená, že pouze běžící úlohy budou\n" #~ " odstraněny." @@ -5439,9 +5741,12 @@ msgstr "" #~ " function. Some variables cannot be unset; also see readonly." #~ msgstr "" #~ "Pro každé JMÉNO odstraní odpovídající proměnnou nebo funkci.\n" -#~ " Spolu s „-v“ bude unset fungovat jen na proměnné. S příznakem „-f“ bude\n" -#~ " unset fungovat jen na funkce. Bez těchto dvou příznaků unset nejprve zkusí\n" -#~ " zrušit proměnnou a pokud toto selže, tak zkusí zrušit funkci. Některé\n" +#~ " Spolu s „-v“ bude unset fungovat jen na proměnné. S příznakem „-f“ " +#~ "bude\n" +#~ " unset fungovat jen na funkce. Bez těchto dvou příznaků unset nejprve " +#~ "zkusí\n" +#~ " zrušit proměnnou a pokud toto selže, tak zkusí zrušit funkci. " +#~ "Některé\n" #~ " proměnné nelze odstranit. Taktéž vizte příkaz „readonly“." #~ msgid "" @@ -5454,9 +5759,12 @@ msgstr "" #~ " processing." #~ msgstr "" #~ "NÁZVY jsou označeny pro automatické exportování do prostředí následně\n" -#~ " prováděných příkazů. Je-li zadán přepínač -f, NÁZVY se vztahují k funkcím.\n" -#~ " Nejsou-li zadány žádné NÁZVY nebo je-li zadáno „-p“, bude vytištěn seznam\n" -#~ " všech názvů, které jsou v tomto shellu exportovány. Argument „-n“ nařizuje\n" +#~ " prováděných příkazů. Je-li zadán přepínač -f, NÁZVY se vztahují " +#~ "k funkcím.\n" +#~ " Nejsou-li zadány žádné NÁZVY nebo je-li zadáno „-p“, bude vytištěn " +#~ "seznam\n" +#~ " všech názvů, které jsou v tomto shellu exportovány. Argument „-n“ " +#~ "nařizuje\n" #~ " odstranit vlastnost exportovat z následujících NÁZVŮ. Argument „--“\n" #~ " zakazuje zpracování dalších přepínačů." @@ -5464,16 +5772,21 @@ msgstr "" #~ "The given NAMEs are marked readonly and the values of these NAMEs may\n" #~ " not be changed by subsequent assignment. If the -f option is given,\n" #~ " then functions corresponding to the NAMEs are so marked. If no\n" -#~ " arguments are given, or if `-p' is given, a list of all readonly names\n" +#~ " arguments are given, or if `-p' is given, a list of all readonly " +#~ "names\n" #~ " is printed. The `-a' option means to treat each NAME as\n" #~ " an array variable. An argument of `--' disables further option\n" #~ " processing." #~ msgstr "" #~ "Zadané NÁZVY budou označeny jako jen pro čtení a hodnoty těchto NÁZVŮ\n" -#~ " nebude možné změnit následným přiřazením. Je-li zadán přepínač -f, pak\n" -#~ " funkce těchto NÁZVŮ budou takto označeny. Nejsou-li zadány žádné argumenty\n" -#~ " nebo je-li zadáno „-p“, bude vytištěn seznam všech jmen jen pro čtení.\n" -#~ " Přepínač „-a“ znamená, že s každým NÁZVEM bude zacházeno jako s proměnnou\n" +#~ " nebude možné změnit následným přiřazením. Je-li zadán přepínač -f, " +#~ "pak\n" +#~ " funkce těchto NÁZVŮ budou takto označeny. Nejsou-li zadány žádné " +#~ "argumenty\n" +#~ " nebo je-li zadáno „-p“, bude vytištěn seznam všech jmen jen pro " +#~ "čtení.\n" +#~ " Přepínač „-a“ znamená, že s každým NÁZVEM bude zacházeno jako " +#~ "s proměnnou\n" #~ " typu pole. Argument „--“ zakáže zpracování dalších přepínačů." #~ msgid "" @@ -5503,61 +5816,79 @@ msgstr "" #~ "For each NAME, indicate how it would be interpreted if used as a\n" #~ " command name.\n" #~ " \n" -#~ " If the -t option is used, `type' outputs a single word which is one of\n" -#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is an\n" -#~ " alias, shell reserved word, shell function, shell builtin, disk file,\n" +#~ " If the -t option is used, `type' outputs a single word which is one " +#~ "of\n" +#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is " +#~ "an\n" +#~ " alias, shell reserved word, shell function, shell builtin, disk " +#~ "file,\n" #~ " or unfound, respectively.\n" #~ " \n" #~ " If the -p flag is used, `type' either returns the name of the disk\n" #~ " file that would be executed, or nothing if `type -t NAME' would not\n" #~ " return `file'.\n" #~ " \n" -#~ " If the -a flag is used, `type' displays all of the places that contain\n" +#~ " If the -a flag is used, `type' displays all of the places that " +#~ "contain\n" #~ " an executable named `file'. This includes aliases, builtins, and\n" #~ " functions, if and only if the -p flag is not also used.\n" #~ " \n" #~ " The -f flag suppresses shell function lookup.\n" #~ " \n" -#~ " The -P flag forces a PATH search for each NAME, even if it is an alias,\n" -#~ " builtin, or function, and returns the name of the disk file that would\n" +#~ " The -P flag forces a PATH search for each NAME, even if it is an " +#~ "alias,\n" +#~ " builtin, or function, and returns the name of the disk file that " +#~ "would\n" #~ " be executed." #~ msgstr "" #~ "O každém NÁZVU řekne, jak by byl interpretován, kdyby byl použit jako\n" #~ " název příkazu.\n" #~ " \n" -#~ " Je-li použit přepínač -t, „type“ vypíše jedno slovo z těchto: „alias“,\n" +#~ " Je-li použit přepínač -t, „type“ vypíše jedno slovo z těchto: " +#~ "„alias“,\n" #~ " „keyword“, „function“, „builtin“, „file“ nebo „“, je-li NÁZEV alias,\n" -#~ " klíčové slovo shellu, shellová funkce, vestavěný příkaz shellu, soubor\n" +#~ " klíčové slovo shellu, shellová funkce, vestavěný příkaz shellu, " +#~ "soubor\n" #~ " na disku nebo nenalezený soubor.\n" #~ " \n" -#~ " Je-li použit přepínač -p, „type“ buď vrátí jméno souboru na disku, který\n" +#~ " Je-li použit přepínač -p, „type“ buď vrátí jméno souboru na disku, " +#~ "který\n" #~ " by byl spuštěn, nebo nic, pokud „type -t NÁZEV“ by nevrátil „file“.\n" #~ " \n" -#~ " Je-li použit přepínač -a, „type“ zobrazí všechna místa, kde se nalézá\n" -#~ " spustitelný program pojmenovaný „soubor“. To zahrnuje aliasy, vestavěné\n" -#~ " příkazy a funkce jen a pouze tehdy, když není rovněž použit přepínač -p.\n" +#~ " Je-li použit přepínač -a, „type“ zobrazí všechna místa, kde se " +#~ "nalézá\n" +#~ " spustitelný program pojmenovaný „soubor“. To zahrnuje aliasy, " +#~ "vestavěné\n" +#~ " příkazy a funkce jen a pouze tehdy, když není rovněž použit přepínač -" +#~ "p.\n" #~ " \n" #~ " Přepínač -f potlačí hledání mezi funkcemi shellu.\n" #~ " \n" #~ " Přepínač -P vynutí prohledání PATH na každý NÁZEV, dokonce i když se\n" -#~ " jedná o alias, vestavěný příkaz nebo funkci, a vrátí název souboru na\n" +#~ " jedná o alias, vestavěný příkaz nebo funkci, a vrátí název souboru " +#~ "na\n" #~ " disku, který by byl spuštěn." #~ msgid "" #~ "The user file-creation mask is set to MODE. If MODE is omitted, or if\n" -#~ " `-S' is supplied, the current value of the mask is printed. The `-S'\n" -#~ " option makes the output symbolic; otherwise an octal number is output.\n" +#~ " `-S' is supplied, the current value of the mask is printed. The `-" +#~ "S'\n" +#~ " option makes the output symbolic; otherwise an octal number is " +#~ "output.\n" #~ " If `-p' is supplied, and MODE is omitted, the output is in a form\n" #~ " that may be used as input. If MODE begins with a digit, it is\n" -#~ " interpreted as an octal number, otherwise it is a symbolic mode string\n" +#~ " interpreted as an octal number, otherwise it is a symbolic mode " +#~ "string\n" #~ " like that accepted by chmod(1)." #~ msgstr "" #~ "Uživatelská maska práv vytvářených souborů je nastavena na MÓD. Je-li\n" -#~ " MÓD vynechán nebo je-li uvedeno „-S“, bude vytištěna současná hodnota\n" +#~ " MÓD vynechán nebo je-li uvedeno „-S“, bude vytištěna současná " +#~ "hodnota\n" #~ " masky. Přepínač „-S“ učiní výstup symbolický, jinak bude výstupem\n" #~ " osmičkové číslo. Je-li zadáno „-p“ a MÓD je vynechán, bude výstup ve\n" #~ " formátu, který lze použít jako vstup. Začíná-li MÓD číslicí, bude\n" -#~ " interpretován jako osmičkové číslo, jinak jako řetězec symbolického zápisu\n" +#~ " interpretován jako osmičkové číslo, jinak jako řetězec symbolického " +#~ "zápisu\n" #~ " práv tak, jak jej chápe chmod(1)." #~ msgid "" @@ -5567,7 +5898,8 @@ msgstr "" #~ " all child processes of the shell are waited for." #~ msgstr "" #~ "Počká na zadaný proces a nahlásí jeho návratový kód. Není-li N zadáno,\n" -#~ " bude se čekat na všechny právě aktivní procesy potomků a návratová hodnota\n" +#~ " bude se čekat na všechny právě aktivní procesy potomků a návratová " +#~ "hodnota\n" #~ " bude nula. N je ID procesu. Není-li zadáno, bude se čekat na všechny\n" #~ " procesy potomků tohoto shellu." @@ -5590,22 +5922,30 @@ msgstr "" #~ " not each is set." #~ msgstr "" #~ "Přepne hodnoty proměnných řídící volitelné chování. Přepínač -s znamená,\n" -#~ " že se každý NÁZEV_VOLBY zapne (nastaví). Přepínač -u každý NÁZEV_VOLBY\n" +#~ " že se každý NÁZEV_VOLBY zapne (nastaví). Přepínač -u každý " +#~ "NÁZEV_VOLBY\n" #~ " vypne. Přepínač -q potlačí výstup. Zda je nebo není nastaven každý\n" -#~ " NÁZEV_VOLBY, indikuje návratový kód. Přepínač -o omezí NÁZVY_VOLEB na ty,\n" +#~ " NÁZEV_VOLBY, indikuje návratový kód. Přepínač -o omezí NÁZVY_VOLEB na " +#~ "ty,\n" #~ " které jsou definovány pro použití s „set -o“. Bez přepínačů nebo\n" #~ " s přepínačem -p je zobrazen seznam všech nastavitelných voleb včetně\n" #~ " indikace, zda je každá nastavena." #~ msgid "" #~ "For each NAME, specify how arguments are to be completed.\n" -#~ " If the -p option is supplied, or if no options are supplied, existing\n" -#~ " completion specifications are printed in a way that allows them to be\n" -#~ " reused as input. The -r option removes a completion specification for\n" -#~ " each NAME, or, if no NAMEs are supplied, all completion specifications." +#~ " If the -p option is supplied, or if no options are supplied, " +#~ "existing\n" +#~ " completion specifications are printed in a way that allows them to " +#~ "be\n" +#~ " reused as input. The -r option removes a completion specification " +#~ "for\n" +#~ " each NAME, or, if no NAMEs are supplied, all completion " +#~ "specifications." #~ msgstr "" #~ "U každého NÁZVU sdělí, jak budou argumenty doplněny. Je-li zadán\n" -#~ " přepínač -p nebo není-li zadán přepínač žádný, budou existující definice\n" +#~ " přepínač -p nebo není-li zadán přepínač žádný, budou existující " +#~ "definice\n" #~ " doplňování vytištěny tak. že je bude možné znovu použít jako vstup.\n" -#~ " Přepínač -r odstraní definici doplnění pro každý NÁZEV nebo chybí-li NÁZVY,\n" +#~ " Přepínač -r odstraní definici doplnění pro každý NÁZEV nebo chybí-li " +#~ "NÁZVY,\n" #~ " odstraní všechny definice." diff --git a/po/de.gmo b/po/de.gmo index f1c4172e22719fa0c0f53f2add71ed67ecdf7af4..f08c27807869a12bf6f16558f1f3a06230f93807 100644 GIT binary patch literal 35019 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 nm6rd6ICHezd!Fw)sA@H z&pWT*nRkw7mTRX+z27kW?v(Ur4CM%st4KHIWjT%u<@cG!Ou-vC0dL`4yo*zD%7dwP zg}8uvoo7EzqkabU{!3o{D$b++4$|+i`GTA2JeV}zm^oO8YFO{tiRILHqXzf_&c@eK z19%rTu)COrqqwBuB%F*>a3bb=Rv@1=bvS|Vn-=d6-AErM=DlzbAE18R^9*KFKZ{zN zOUPoG%U=Cgs1IGmvG@mMk<6cQCVqfg$OV)l_iNNZ-ayUlI%)uaM1AltsDA$GJx`}HiTZdPR)=%A(NdP8wqPBu!5*x~ z^QZB~&!q1rpR11nJNPa=~w7d$Vc-oJ`^|0d4B4<@nxTB1>Gl$JgVwKO?c zh^46H=|KLOeO&VK1gfKpsFk^bd3YUb@D4h-h|#Lw22{U0Py>sh+8>(2`YYK^^I!>{ zM~(C?)E@uUd+|g38g;c&2l=REEW>Tsj7#xFrw4nhq=+n zqNo`hLv?T-wKA8n7=MGB$z4y4S~-)2TB#z`%CsQ=Op=Q}_!N%8?;&$A&!O5~LVa)e z8aK+$kGuyNjHZfu5iUnR)~3-A`L=nRjnl|K@tiPh|KSz*^Ln?L@|IPI}MJp_cwNWZdRM zBwx+PsIC1H$v>0Dk4T2j|6FeLhXPbb6{r_Bp_Z%@wG~nC`F_-lPIz8I9mAWb_ufHm z)!$La@L#BYzd-ey&FHm~`IyW1O*J=6&TK;^%OI-3DO7g9fULf`i2A^9Q61bsedso7 zukWIM2fjjmD4nyYy`P3^KO6PD4AswC96A4+xuJ~-cn+g}%g^E}ynA0n)mnNx45BC za|f4THq%jkH9m|zxCURuG-LuMLg+_lJ)z1iAR%66cN|MAPg&IpQglaO;R5QA+3ts_Y=j z_`carBnh2)7445o3*i#lKW#xHp|Uo`$bUGxeT-O6^bv;$m2irY>j2kLL;gp(L)UB zwSGPE3OQyD6S;(rTNAO6P}xoFBOF3UOG&Dttk((g5u=GbB1WhrQjko(f*~gscYHA? zHkb&n4-OUe{YRbFtjj}*+0Cdxvkv^M~4#eWKdtV zH3h|4E$vPs?hm>TaUHb11)cU63m4eh#YOh);)AweNo7sKjmMLN3DXdcMBEa>+JJ2J{wq3V_#k|-*(hKXb1MqvSU^)v*A@MGr|d{GumZyR@W4ToX%abK=;s~ z8|*S6H^G9jc3cv1KI%mM1FqBQkB98^H66BdZRO;Mn{cR)JameSi@R)FUC7?4%dx+# zUp_Gwiu(r!)RI}n;x=vl3j68$b#}{!J@#)Kx7kGv^T+NR@JE=LEp41_FE-2^8+TLn zM;a^aSBV5E%2&43DJ`ujE%%jFl$2z)H2d1zJ>end@2m4C+#08}x_X(f zq|{eh=9HGzEG>7M>f7z{ro1YDlI@JHPDaBKHx_WC#r|NiKT(_6=#Pey{*dcycl`r3 zPRNb(p0lFIT^$J*$C%}(O~I+D^yzWqPV-3ikVl#J#^$;9GoqvAitTP)U_)(_?5);G z_Ig{cy|pFZKHXk!Gq&~HpKbfL?b*I@GWie)kO+PKsnm+u&7DOP*8G1uBsYar) zFHmR?2OhUM!JM?sc4ctElC4qFA`p)S``jo!h1~o1Bk7^phn;}ZBkaa)XMdjkU4Pgv zj}+RI(N}C|>?K<}ST?&Z>Gb)B5>88uOE~J}cNZJ)nLRZ)-+q7hK07PkYL5+-+t-uT zcIuu5c6)6WsWQV}*tgEk+ut%al`6)5vL)Mowts$hFFU^}76`Zp+;Ffjnv90JZ16D- z%fUzObB8MJhQqn`)x&%2>EQx<=1BA8mbjM^ZoJp+i!j=>^;7NCqdt4@XwV-2Mz1Y8 T7O|JUnQu=%*=WD}Wc7al)nhz) diff --git a/po/de.po b/po/de.po index 3ed78e5a..f32e3f34 100644 --- a/po/de.po +++ b/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-09-14 22:01+0200\n" "Last-Translator: Nils Naumann \n" "Language-Team: German \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "Falscher Feldbezeichner." -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: Kann nicht das indizierte in ein assoziatives Array umwandeln." -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: Ungltiger Schlssel fr das assoziative Array." -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: Kann nicht auf einen nicht-numerischen Index zuweisen." -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -62,32 +62,32 @@ msgstr "fehlende schlie msgid "%s: missing colon separator" msgstr "%s: Fehlender Doppelpunkt." -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "`%s': Ungltiger KEYMAP Name." -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: Nicht lesbar: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "`%s': Bindung kann nicht gelst werden." -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "%s: Unbekannter Funktionsname." -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s ist keiner Taste zugeordnet.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s kann aufgerufen werden durch " @@ -100,6 +100,13 @@ msgstr "Schleifen Z msgid "only meaningful in a `for', `while', or `until' loop" msgstr "nur in einer `for', `while' oder `until' Schleife sinnvoll." +#: builtins/caller.def:133 +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns " +msgstr "" + #: builtins/cd.def:215 msgid "HOME not set" msgstr "HOME ist nicht zugewiesen." @@ -227,12 +234,12 @@ msgstr "%s: Ist kein Shell Kommando." msgid "write error: %s" msgstr "Schreibfehler: %s." -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: Kann das nicht aktuelle Verzeichnis wiederfinden: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: Mehrdeutige Job Bezeichnung." @@ -268,7 +275,7 @@ msgstr "kann nur innerhalb einer Funktion benutzt werden." msgid "cannot use `-f' to make functions" msgstr "Mit `-f' knnen keine Funktionen erzeugt werden." -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: Schreibgeschtzte Funktion." @@ -307,7 +314,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: Kann nicht lschen: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -323,7 +330,7 @@ msgstr "%s: Ist keine normale Datei." msgid "%s: file is too large" msgstr "%s: Die Datei ist zu gro." -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: Kann die Datei nicht ausfhren." @@ -407,7 +414,8 @@ msgstr[1] "" #: builtins/help.def:168 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." msgstr "" #: builtins/help.def:185 @@ -443,7 +451,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: History Substitution gescheitert." @@ -470,12 +478,12 @@ msgstr "Unbekannter Fehler." msgid "expression expected" msgstr "Ausdruck erwartet." -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -553,10 +561,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" "\tdirs when invoked without options, starting with zero." msgstr "" @@ -647,17 +657,17 @@ msgstr "" " \n" " Das `dirs' Kommando zeigt den Verzeichnisstapel an." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "Lesefehler: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -831,36 +841,36 @@ msgstr "%s ist nicht gesetzt." msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aZu lange keine Eingabe: Automatisch ausgeloggt.\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "Kann nicht die Standardeingabe von /dev/null umleiten: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "Pipe-Fehler" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: Verboten: `/' ist in Kommandonamen unzulssig." -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: Kommando nicht gefunden." -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: ist ein Verzeichnis." -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "Kann fd %d nicht auf fd 0 verdoppeln: %s" @@ -938,7 +948,7 @@ msgstr "Umlenkfehler" msgid "getcwd: cannot access parent directories" msgstr "getwd: Kann nicht auf das bergeordnete Verzeichnis zugreifen." -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -946,7 +956,8 @@ msgstr "" #: input.c:258 #, fuzzy, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "Kann fr die Eingabe von fd %d keinen neuen Dateideskriptor zuweisen: %s." +msgstr "" +"Kann fr die Eingabe von fd %d keinen neuen Dateideskriptor zuweisen: %s." # Debug Ausgabe #: input.c:266 @@ -954,150 +965,150 @@ msgstr "Kann f msgid "save_bash_input: buffer already exists for new fd %d" msgstr "check_bash_input: buffer already exists for new fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" # Programmierfehler -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Proze-Nummer existiert nicht (%d)!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Unbekanntes Signal Nr.: %d." -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Fertig" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Angehalten" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Angehalten" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Luft" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Fertig(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Unbekannter Status" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(Speicherabzug geschrieben) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" # interner Fehler -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: Proze %ld wurde nicht von dieser Shell gestartet." -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: Programm ist beendet." -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" # Debug Ausgabe -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: Zeile %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (Speicherabzug geschrieben)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(gegenwrtiges Arbeitsverzeichnis ist: %s)\n" # interner Fehler -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp war nicht erfolgreich." # interner Fehler -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" # interner Fehler -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "Keine Job Steuerung in dieser Shell." @@ -1356,31 +1367,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: Mehrdeutige Umlenkung." -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: Kann existierende Datei nicht berschreiben." -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: Gesperrt: Die Ausgabe darf nicht umgeleitet werden." -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "" @@ -1447,7 +1458,7 @@ msgstr "`%s -c help' f msgid "Use the `bashbug' command to report bugs.\n" msgstr "Mit dem `bashbug' Kommando knnen Fehler gemeldet werden.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: Ungltige Operation" @@ -1623,79 +1634,79 @@ msgstr "Unbekannte Signalnummer." msgid "Unknown Signal #%d" msgstr "Unbekanntes Signal Nr.: %d." -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Falsche Ersetzung: Keine schlieende `%s' in `%s' enthalten." -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: Kann einem Feldelement keine Liste zuweisen." -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "Kann keine Pipe fr die Prozeersetzung erzeugen." -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Kann nicht die benannte Pipe %s zum lesen ffnen." -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Kann nicht die benannte Pipe %s zum schreiben ffnen." -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Kann die benannte Pipe %s nicht auf fd %d." -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "Kann keine Pipes fr Kommandoersetzung erzeugen." -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "Kann keinen Unterprozess fr die Kommandoersetzung erzeugen." # interner Fehler -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "Kommandoersetzung: Kann Pipe nicht als fd 1 duplizieren." -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: Parameter ist Null oder nicht gesetzt." # interner Fehler -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: Teilstring-Ausdruck < 0." -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: Falsche Variablenersetzung." -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: Kann so nicht zuweisen." -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Falsche Ersetzung: Keine schlieende \"`\" in %s." -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "Keine Entsprechung: %s" @@ -1732,22 +1743,23 @@ msgstr "%s: Zweistelliger (bin msgid "missing `]'" msgstr "Fehlende `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "Ungltige Signalnummer." -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" # Programmierfehler -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Falsches Signal %d." @@ -1762,33 +1774,33 @@ msgstr "Fehler beim Importieren der Funktionsdefinition f msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -1797,8 +1809,12 @@ msgid "Copyright (C) 2008 Free Software Foundation, Inc." msgstr "Copyright (C) 2008 Free Software Foundation, Inc." #: version.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Lizenz GPLv3+: GNU GPL Version 3 oder jnger \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Lizenz GPLv3+: GNU GPL Version 3 oder jnger \n" #: version.c:86 #, c-format @@ -1838,7 +1854,8 @@ msgstr "xrealloc: Kann nicht %lu Bytes reservieren." #: xmalloc.c:150 #, c-format msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)" -msgstr "xmalloc: %s:%d: Kann nicht %lu Bytes reservieren (%lu bytes reserviert)." +msgstr "" +"xmalloc: %s:%d: Kann nicht %lu Bytes reservieren (%lu bytes reserviert)." #: xmalloc.c:152 #, c-format @@ -1848,7 +1865,8 @@ msgstr "xmalloc: %s:%d: Kann nicht %lu Bytes reservieren." #: xmalloc.c:174 #, c-format msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "xrealloc: %s:%d: Kann nicht %lu Bytes reservieren (%lu bytes reserviert)." +msgstr "" +"xrealloc: %s:%d: Kann nicht %lu Bytes reservieren (%lu bytes reserviert)." #: xmalloc.c:176 #, c-format @@ -1864,8 +1882,12 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] Name [Name ...]" #: builtins.c:51 -msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m Tastaturtabelle] [-f Dateiname] [-q Name] [-u Name] [-r Tastenfolge:Shell Kommando] [Tastenfolge:readline Funktion oder Kommando]" +msgid "" +"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpvsPVS] [-m Tastaturtabelle] [-f Dateiname] [-q Name] [-u Name] [-r " +"Tastenfolge:Shell Kommando] [Tastenfolge:readline Funktion oder Kommando]" #: builtins.c:54 msgid "break [n]" @@ -1954,7 +1976,9 @@ msgstr "logout [n]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e Editor] [-lnr] [Anfang] [Ende] oder fc -s [Muster=Ersetzung] [Kommando]" +msgstr "" +"fc [-e Editor] [-lnr] [Anfang] [Ende] oder fc -s [Muster=Ersetzung] " +"[Kommando]" #: builtins.c:107 msgid "fg [job_spec]" @@ -1973,8 +1997,12 @@ msgid "help [-ds] [pattern ...]" msgstr "help [-ds] [Muster ...]" #: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [-d Offset] [n] oder history -anrw [Dateiname] oder history -ps Argument [Argument...]" +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"history [-c] [-d Offset] [n] oder history -anrw [Dateiname] oder history -ps " +"Argument [Argument...]" #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" @@ -1985,16 +2013,24 @@ msgid "disown [-h] [-ar] [jobspec ...]" msgstr "disown [-h] [-ar] [Jobbezeichnung ...]" #: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s Signalname | -n Signalnummer | -Signalname] [pid | job] ... oder kill -l [Signalname]" +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s Signalname | -n Signalnummer | -Signalname] [pid | job] ... oder " +"kill -l [Signalname]" #: builtins.c:134 msgid "let arg [arg ...]" msgstr "let Argument [Argument ...]" #: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a Feld] [-d Begrenzer] [-i Text] [-n Zeichenanzahl] [-p Prompt] [-t Zeitlimit] [-u fd] [Name ...]" +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a Feld] [-d Begrenzer] [-i Text] [-n Zeichenanzahl] [-p " +"Prompt] [-t Zeitlimit] [-u fd] [Name ...]" #: builtins.c:138 msgid "return [n]" @@ -2089,7 +2125,9 @@ msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case Wort in [Muster [| Muster]...) Kommandos ;;]... esac" #: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" msgstr "" "if Kommandos; then Kommandos; [ elif Kommandos; then Kommandos; ]... \n" "\t[ else Kommandos; ] fi" @@ -2147,19 +2185,32 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v var] Format [Argumente]" #: builtins.c:227 -msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-o Option] [-A Aktion] [-G Suchmuster] [-W Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S Suffix] [Name ...]" +msgid "" +"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W " +"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o Option] [-A Aktion] [-G Suchmuster] [-W " +"Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S " +"Suffix] [Name ...]" #: builtins.c:231 -msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-abcdefgjksuv] [-o Option] [-A Aktion] [-G Suchmuster] [-W Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S Suffix] [Wort]" +msgid "" +"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "" +"compgen [-abcdefgjksuv] [-o Option] [-A Aktion] [-G Suchmuster] [-W " +"Wortliste] [-F Funktion] [-C Kommando] [-X Filtermuster] [-P Prefix] [-S " +"Suffix] [Wort]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" msgstr "compopt [-o|+o Option] [Name ...]" #: builtins.c:238 -msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" +msgid "" +"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" msgstr "" #: builtins.c:250 @@ -2177,7 +2228,8 @@ msgid "" " -p\tPrint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has been\n" +" alias returns true unless a NAME is supplied for which no alias has " +"been\n" " defined." msgstr "" "Definiert Aliase oder zeigt sie an.\n" @@ -2224,20 +2276,24 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their values\n" -" -s List key sequences that invoke macros and their values\n" +" -S List key sequences that invoke macros and their " +"values\n" +" -s List key sequences that invoke macros and their " +"values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named function.\n" +" -u function-name Unbind all keys which are bound to the named " +"function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" @@ -2259,7 +2315,8 @@ msgid "" msgstr "" "Beendet for, while oder until Schleifen.\n" " \n" -" Break beendet eine FOR, WHILE oder UNTIL Schleife. Wenn N angegeben ist, werden N geschachtelte\n" +" Break beendet eine FOR, WHILE oder UNTIL Schleife. Wenn N angegeben " +"ist, werden N geschachtelte\n" " Schleifen beendet.\n" " \n" " Rckgabewert:\n" @@ -2277,7 +2334,8 @@ msgid "" msgstr "" "Springt zum Schleifenanfang von for, while, oder until Schleifen.\n" " \n" -" Continoue springt zum Schleifenanfang der aktuellen FOR, WHILE oder UNTIL \n" +" Continoue springt zum Schleifenanfang der aktuellen FOR, WHILE oder " +"UNTIL \n" " Schleife. Wenn N angegeben ist, werden N wird zum Beginn der N-ten\n" " bergeordneten Schleife gesprungen.\n" " \n" @@ -2290,7 +2348,8 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the function.\n" +" as a shell function, but need to execute the builtin within the " +"function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2317,16 +2376,22 @@ msgstr "" msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of the\n" +" Change the current directory to DIR. The default DIR is the value of " +"the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" -" A null directory name is the same as the current directory. If DIR begins\n" +" The variable CDPATH defines the search path for the directory " +"containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon " +"(:).\n" +" A null directory name is the same as the current directory. If DIR " +"begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is set,\n" -" the word is assumed to be a variable name. If that variable has a value,\n" +" If the directory is not found, and the shell option `cdable_vars' is " +"set,\n" +" the word is assumed to be a variable name. If that variable has a " +"value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2361,12 +2426,14 @@ msgstr "" " -L\tGibt den Wert der $PWD Umgebungsvariable aus, wenn diese\n" "\tauf das aktuelle Arbeitsverzeichnis verweist.\n" "\n" -" -P\tGibt den wirklichen Verzeichnisnahen aus, ohne symbolische Verweise.\n" +" -P\tGibt den wirklichen Verzeichnisnahen aus, ohne symbolische " +"Verweise.\n" " \n" " Standardmig wird die -L Option verwendet.\n" " \n" " Rckgabewert:\n" -" Der Rckgabewert ist 0, auer wenn eine ungltige Option angegeben oder das aktuelle\n" +" Der Rckgabewert ist 0, auer wenn eine ungltige Option angegeben oder " +"das aktuelle\n" " Verzeichnis nicht gelesen werden kann." # colon @@ -2407,7 +2474,8 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke commands\n" +" information about the specified COMMANDs. Can be used to invoke " +"commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2448,7 +2516,8 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the `local'\n" +" When used in a function, `declare' makes NAMEs local, as with the " +"`local'\n" " command.\n" " \n" " Exit Status:\n" @@ -2481,11 +2550,14 @@ msgid "" msgstr "" "Definiert lokale Vatiablen.\n" " \n" -" Erzeugt eine Lokale Variable NAME und weist ihr den Wert VALUE zu. OPTION\n" +" Erzeugt eine Lokale Variable NAME und weist ihr den Wert VALUE zu. " +"OPTION\n" " kann eine beliebige von `declare' akzeptierte Option sein.\n" "\n" -" Lokale Variablen knnen nur innerhalb einer Funktion benutzt werden. Sie\n" -" sind nur in der sie erzeugenden Funktion und ihren Kindern sichtbar. \n" +" Lokale Variablen knnen nur innerhalb einer Funktion benutzt werden. " +"Sie\n" +" sind nur in der sie erzeugenden Funktion und ihren Kindern " +"sichtbar. \n" " \n" " Rckgabewert:\n" " Liefert \"Erfolg\" auer bei einer ungltigen Option, einem Fehler oder\n" @@ -2566,7 +2638,8 @@ msgstr "" msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the shell,\n" +" Combine ARGs into a single string, use the result as input to the " +"shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2619,7 +2692,8 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " +"specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2627,11 +2701,13 @@ msgid "" " -c\t\texecute COMMAND with an empty environment\n" " -l\t\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, unless\n" +" If the command cannot be executed, a non-interactive shell exits, " +"unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error occurs." +" Returns success unless COMMAND is not found or a redirection error " +"occurs." msgstr "" # exit @@ -2644,14 +2720,16 @@ msgid "" msgstr "" "Beendet die aktuelle Shell.\n" "\n" -" Beendt die die aktuelle Shell mit dem Rckgabewert N. Wenn N nicht angegeben ist,\n" +" Beendt die die aktuelle Shell mit dem Rckgabewert N. Wenn N nicht " +"angegeben ist,\n" " wird der Rckgabewert des letzten ausgefhrten Kommandos bernommen." #: builtins.c:694 msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not executed\n" +" Exits a login shell with exit status N. Returns an error if not " +"executed\n" " in a login shell." msgstr "" @@ -2659,13 +2737,15 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history list.\n" +" fc is used to list or edit and re-execute commands from the history " +"list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then " +"EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -2679,7 +2759,8 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error occurs." +" Returns success or status of executed command; non-zero if an error " +"occurs." msgstr "" #: builtins.c:734 @@ -2698,8 +2779,10 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if " +"they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's " +"notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -2711,7 +2794,8 @@ msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is displayed.\n" +" no arguments are given, information about remembered commands is " +"displayed.\n" " \n" " Options:\n" " -d\t\tforget the remembered location of each NAME\n" @@ -2747,7 +2831,8 @@ msgid "" " PATTERN\tPattern specifiying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is given." +" Returns success unless PATTERN is not found or an invalid option is " +"given." msgstr "" #: builtins.c:812 @@ -2777,7 +2862,8 @@ msgid "" " \n" " If the $HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed otherwise.\n" +" with each displayed history entry. No time stamps are printed " +"otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -2853,7 +2939,8 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are listed\n" +" grouped into levels of equal-precedence operators. The levels are " +"listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -2895,13 +2982,16 @@ msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with word\n" +" if the -u option is supplied. The line is split into fields as with " +"word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as word\n" +" the last NAME. Only the characters found in $IFS are recognized as " +"word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY " +"variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -2916,19 +3006,22 @@ msgid "" " \t\tattempting to read\n" " -r\t\tdo not allow backslashes to escape any characters\n" " -s\t\tdo not echo input coming from a terminal\n" -" -t timeout\ttime out and return failure if a complete line of input is\n" +" -t timeout\ttime out and return failure if a complete line of input " +"is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times out,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2940,7 +3033,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -2983,7 +3076,8 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero status\n" +" or zero if no command exited with a non-zero " +"status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3021,7 +3115,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3031,7 +3125,8 @@ msgid "" " -f\ttreat each NAME as a shell function\n" " -v\ttreat each NAME as a shell variable\n" " \n" -" Without options, unset first tries to unset a variable, and if that fails,\n" +" Without options, unset first tries to unset a variable, and if that " +"fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3040,12 +3135,13 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before " +"exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3058,7 +3154,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3078,7 +3174,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3089,7 +3185,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3103,7 +3199,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3117,7 +3213,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3148,7 +3244,8 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last read.\n" +" -N FILE True if the file has been modified since it was last " +"read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3169,7 +3266,8 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 lexicographically.\n" +" True if STRING1 sorts before STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3192,7 +3290,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3200,22 +3298,24 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of its\n" +" Prints the accumulated user and system times for the shell and all of " +"its\n" " child processes.\n" " \n" " Exit Status:\n" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives signals\n" +" Defines and activates handlers to be run when the shell receives " +"signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -3224,25 +3324,29 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " +"If\n" " a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\n" " \n" -" If no arguments are supplied, trap prints the list of commands associated\n" +" If no arguments are supplied, trap prints the list of commands " +"associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal " +"number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is given." +" Returns success unless a SIGSPEC is invalid or an invalid option is " +"given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3268,14 +3372,16 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not found." +" Returns success if all of the NAMEs are found; fails if any are not " +"found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and processes\n" +" Provides control over the resources available to the shell and " +"processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -3314,7 +3420,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3332,22 +3438,24 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" " Waits for the process identified by ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" -" status is zero. If ID is a a job specification, waits for all processes\n" +" status is zero. If ID is a a job specification, waits for all " +"processes\n" " in the job's pipeline.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3356,11 +3464,12 @@ msgid "" " and the return code is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3373,7 +3482,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3390,7 +3499,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3410,7 +3519,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3426,7 +3535,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3437,23 +3546,28 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then " +"the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " +"is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of the\n" -" entire construct is the exit status of the last command executed, or zero\n" +" `then COMMANDS' list is executed and the if command completes. " +"Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of " +"the\n" +" entire construct is the exit status of the last command executed, or " +"zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3464,7 +3578,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3475,12 +3589,13 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is " +"invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -3488,7 +3603,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3499,7 +3614,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3513,7 +3628,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3524,13 +3639,16 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries used\n" -" by the `test' builtin, and may be combined using the following operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the " +"conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries " +"used\n" +" by the `test' builtin, and may be combined using the following " +"operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -3549,7 +3667,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3603,7 +3721,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3634,7 +3752,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3661,7 +3779,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3678,22 +3796,25 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" " Change the setting of each shell option OPTNAME. Without any option\n" -" arguments, list all shell options with an indication of whether or not each\n" +" arguments, list all shell options with an indication of whether or not " +"each\n" " is set.\n" " \n" " Options:\n" @@ -3708,7 +3829,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3716,29 +3837,36 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: plain\n" -" characters, which are simply copied to standard output; character escape\n" +" FORMAT is a character string which contains three types of objects: " +"plain\n" +" characters, which are simply copied to standard output; character " +"escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next successive\n" +" format specifications, each of which causes printing of the next " +"successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in printf(1)\n" +" In addition to the standard format specifications described in printf" +"(1)\n" " and printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or assignment\n" +" Returns success unless an invalid option is given or a write or " +"assignment\n" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no options\n" -" are supplied, existing completion specifications are printed in a way that\n" +" For each NAME, specify how arguments are to be completed. If no " +"options\n" +" are supplied, existing completion specifications are printed in a way " +"that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -3753,25 +3881,29 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches against\n" +" completions. If the optional WORD argument is supplied, matches " +"against\n" " WORD are generated.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" -" the completion currently begin executed. If no OPTIONs are givenm, print\n" -" the completion options for each NAME or the current completion specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are " +"supplied,\n" +" the completion currently begin executed. If no OPTIONs are givenm, " +"print\n" +" the completion options for each NAME or the current completion " +"specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -3791,29 +3923,36 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" -" Read lines from the standard input into the array variable ARRAY, or from\n" -" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n" +" Read lines from the standard input into the array variable ARRAY, or " +"from\n" +" file descriptor FD if the -u option is supplied. The variable MAPFILE " +"is\n" " the default ARRAY.\n" " \n" " Options:\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied.\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0.\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " +"copied.\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " +"index is 0.\n" " -s count \tDiscard the first COUNT lines read.\n" " -t\t\tRemove a trailing newline from each line read.\n" -" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n" +" -u fd\t\tRead lines from file descriptor FD instead of the standard " +"input.\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read.\n" -" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n" +" -c quantum\tSpecify the number of lines read between each call to " +"CALLBACK.\n" " \n" " Arguments:\n" " ARRAY\t\tArray variable name to use for file data.\n" " \n" " If -C is supplied without -c, the default quantum is 5000.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY " +"before\n" " assigning to it.\n" " \n" " Exit Status:\n" @@ -4013,7 +4152,8 @@ msgstr "" #~ msgstr "mkbuiltins: Virtueller Speicher erschpft!\n" #~ msgid "read [-r] [-p prompt] [-a array] [-e] [name ...]" -#~ msgstr "read [-r] [-p Eingabeaufforderung] [-a Feldvariable] [-e] [Name ...]" +#~ msgstr "" +#~ "read [-r] [-p Eingabeaufforderung] [-a Feldvariable] [-e] [Name ...]" #~ msgid "%[DIGITS | WORD] [&]" #~ msgstr "%[Ziffern | Wort] [&]" @@ -4029,19 +4169,25 @@ msgstr "" #~ msgstr "Synonyme in der Form NAME=WERT auf die Standardausgabe aus." #~ msgid "Otherwise, an alias is defined for each NAME whose VALUE is given." -#~ msgstr "Sonst wird ein Synonym fr jeden NAMEN definiert, dessen WERT angegeben wird." +#~ msgstr "" +#~ "Sonst wird ein Synonym fr jeden NAMEN definiert, dessen WERT angegeben " +#~ "wird." #~ msgid "A trailing space in VALUE causes the next word to be checked for" -#~ msgstr "Ein Leerzeichen nach WERT bewirkt, da das nchste WORT auf ein Synonym" +#~ msgstr "" +#~ "Ein Leerzeichen nach WERT bewirkt, da das nchste WORT auf ein Synonym" #~ msgid "alias substitution when the alias is expanded. Alias returns" -#~ msgstr "untersucht wird wenn SYNONYM ausgewertet wird. `Alias' gibt wahr zurck," +#~ msgstr "" +#~ "untersucht wird wenn SYNONYM ausgewertet wird. `Alias' gibt wahr zurck," #~ msgid "true unless a NAME is given for which no alias has been defined." -#~ msgstr "auer wenn ein NAME angegeben wurde, fr den kein SYNONYM vorhanden ist." +#~ msgstr "" +#~ "auer wenn ein NAME angegeben wurde, fr den kein SYNONYM vorhanden ist." # unalias -#~ msgid "Remove NAMEs from the list of defined aliases. If the -a option is given," +#~ msgid "" +#~ "Remove NAMEs from the list of defined aliases. If the -a option is given," #~ msgstr "Entfernt NAMEn aus der Liste der Synonyme. Wenn die Option -a" #~ msgid "then remove all alias definitions." @@ -4049,25 +4195,35 @@ msgstr "" # readline #~ msgid "Bind a key sequence to a Readline function, or to a macro. The" -#~ msgstr "Verbindet eine Tastenfolge mit einer Readline-Funktion oder einem Makro. Die" +#~ msgstr "" +#~ "Verbindet eine Tastenfolge mit einer Readline-Funktion oder einem Makro. " +#~ "Die" #~ msgid "syntax is equivalent to that found in ~/.inputrc, but must be" -#~ msgstr "Syntax entspricht der der Datei `~/.inputrc', sie mu jedoch als Argument" +#~ msgstr "" +#~ "Syntax entspricht der der Datei `~/.inputrc', sie mu jedoch als Argument" -#~ msgid "passed as a single argument: bind '\"\\C-x\\C-r\": re-read-init-file'." +#~ msgid "" +#~ "passed as a single argument: bind '\"\\C-x\\C-r\": re-read-init-file'." #~ msgstr "angegeben werden. Z.B.: bind '\"\\C-x\\C-r\": re-read-init-file'." #~ msgid "Arguments we accept:" #~ msgstr "Gltige Argumente:" -#~ msgid " -m keymap Use `keymap' as the keymap for the duration of this" -#~ msgstr " -m Tastaturtabelle whlt die Tastaturtabelle fr die Dauer dieses Kommandos." +#~ msgid "" +#~ " -m keymap Use `keymap' as the keymap for the duration of this" +#~ msgstr "" +#~ " -m Tastaturtabelle whlt die Tastaturtabelle fr die Dauer dieses " +#~ "Kommandos." #~ msgid " command. Acceptable keymap names are emacs," -#~ msgstr " Mgliche Namen fr Tastaturtabellen sind: emacs" +#~ msgstr "" +#~ " Mgliche Namen fr Tastaturtabellen sind: emacs" -#~ msgid " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," -#~ msgstr " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," +#~ msgid "" +#~ " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," +#~ msgstr "" +#~ " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," #~ msgid " vi-command, and vi-insert." #~ msgstr " vi-command, und vi-insert." @@ -4076,13 +4232,19 @@ msgstr "" #~ msgstr " -l Listet die Namen der Funktionen." #~ msgid " -P List function names and bindings." -#~ msgstr " -P Listet die Namen der Funktion und deren Tastenzuordnung." +#~ msgstr "" +#~ " -P Listet die Namen der Funktion und deren " +#~ "Tastenzuordnung." -#~ msgid " -p List functions and bindings in a form that can be" -#~ msgstr " -p Listet die Funktionsnamen und deren Tastenzuordnung so," +#~ msgid "" +#~ " -p List functions and bindings in a form that can be" +#~ msgstr "" +#~ " -p Listet die Funktionsnamen und deren Tastenzuordnung " +#~ "so," #~ msgid " reused as input." -#~ msgstr " da sie als Eingabe wiederverwendet werden knnen." +#~ msgstr "" +#~ " da sie als Eingabe wiederverwendet werden knnen." #~ msgid " -r keyseq Remove the binding for KEYSEQ." #~ msgstr " -r Tastenfolge Entfernt die Zuordnung fr Tastenfolge." @@ -4090,44 +4252,58 @@ msgstr "" #~ msgid " -f filename Read key bindings from FILENAME." #~ msgstr " -f Dateiname Liest die Tastenzuordnungen von Dateiname." -#~ msgid " -q function-name Query about which keys invoke the named function." -#~ msgstr " -q Funktionsname Gibt die Tastenzuordnung fr den Funktionsnamen aus." +#~ msgid "" +#~ " -q function-name Query about which keys invoke the named function." +#~ msgstr "" +#~ " -q Funktionsname Gibt die Tastenzuordnung fr den Funktionsnamen aus." #~ msgid " -V List variable names and values" #~ msgstr " -V Gibt Variablennamen und deren Werte aus." -#~ msgid " -v List variable names and values in a form that can" -#~ msgstr " -v Gibt Variablennamen und deren Werte in einer Form aus," +#~ msgid "" +#~ " -v List variable names and values in a form that can" +#~ msgstr "" +#~ " -v Gibt Variablennamen und deren Werte in einer Form " +#~ "aus," #~ msgid " be reused as input." #~ msgstr " die als Eingabe wiederverwendet werden kann." -#~ msgid " -S List key sequences that invoke macros and their values" +#~ msgid "" +#~ " -S List key sequences that invoke macros and their " +#~ "values" #~ msgstr " -S Gibt Tastenfolgen aus, die Makros aufrufen." -#~ msgid " -s List key sequences that invoke macros and their values in" +#~ msgid "" +#~ " -s List key sequences that invoke macros and their " +#~ "values in" #~ msgstr " -s Gibt Tastenfolgen aus, die Makros aufrufen." #~ msgid " a form that can be reused as input." -#~ msgstr " Die Ausgabe kann als Eingabe wiederverwendet werden." +#~ msgstr "" +#~ " Die Ausgabe kann als Eingabe wiederverwendet werden." # break #~ msgid "Exit from within a FOR, WHILE or UNTIL loop. If N is specified," -#~ msgstr "Bricht eine for, while oder until Schleife ab. Wenn N angegeben ist, dann" +#~ msgstr "" +#~ "Bricht eine for, while oder until Schleife ab. Wenn N angegeben ist, dann" #~ msgid "break N levels." #~ msgstr "werden N Schleifenebenen verlassen." # continue #~ msgid "Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop." -#~ msgstr "Springt zur nchsten Iteration der for, while oder until Schleife. Wenn N" +#~ msgstr "" +#~ "Springt zur nchsten Iteration der for, while oder until Schleife. Wenn N" #~ msgid "If N is specified, resume at the N-th enclosing loop." -#~ msgstr "angegeben ist, wird mit der N-ten bergeordneten Schleife fortgefahren." +#~ msgstr "" +#~ "angegeben ist, wird mit der N-ten bergeordneten Schleife fortgefahren." # builtin #~ msgid "Run a shell builtin. This is useful when you wish to rename a" -#~ msgstr "Fhrt eine Shellfunktion aus. Das ist ntzlich, wenn eine Shellfunktion" +#~ msgstr "" +#~ "Fhrt eine Shellfunktion aus. Das ist ntzlich, wenn eine Shellfunktion" #~ msgid "shell builtin to be a function, but need the functionality of the" #~ msgstr "umbenannt wurde, aber das ursprngliche Verhalten bentigt wird." @@ -4137,33 +4313,44 @@ msgstr "" # cd #~ msgid "Change the current directory to DIR. The variable $HOME is the" -#~ msgstr "Setzt das Arbeitsverzeichnis auf Verz. Wenn Verz. nicht angegeben ist, dann" +#~ msgstr "" +#~ "Setzt das Arbeitsverzeichnis auf Verz. Wenn Verz. nicht angegeben ist, " +#~ "dann" #~ msgid "default DIR. The variable $CDPATH defines the search path for" -#~ msgstr "wird in das $HOME-Verzeichnis gewechselt. In der Variable $CDPATH kann eine" +#~ msgstr "" +#~ "wird in das $HOME-Verzeichnis gewechselt. In der Variable $CDPATH kann " +#~ "eine" #~ msgid "the directory containing DIR. Alternative directory names in CDPATH" -#~ msgstr "durch Doppelpunkt (:) getrennte Liste angegeben werden, in denen Verz. gesucht" +#~ msgstr "" +#~ "durch Doppelpunkt (:) getrennte Liste angegeben werden, in denen Verz. " +#~ "gesucht" #~ msgid "are separated by a colon (:). A null directory name is the same as" #~ msgstr "wird. Beginnt Verz. mit einem `/', wird $CDPATH nicht benutzt." #~ msgid "the current directory, i.e. `.'. If DIR begins with a slash (/)," -#~ msgstr "Wenn das Verzeichnis nicht gefunden wird und die Shelloption `cdable_vars'" +#~ msgstr "" +#~ "Wenn das Verzeichnis nicht gefunden wird und die Shelloption `cdable_vars'" #~ msgid "then $CDPATH is not used. If the directory is not found, and the" -#~ msgstr "gesetzt ist, dann wird Verz. als ein Variablenname interpretiert. Ergibt" +#~ msgstr "" +#~ "gesetzt ist, dann wird Verz. als ein Variablenname interpretiert. Ergibt" #~ msgid "shell option `cdable_vars' is set, then try the word as a variable" #~ msgstr "dies einen Wert fr die Variable, dann wird das aktuelle" #~ msgid "name. If that variable has a value, then cd to the value of that" -#~ msgstr "Verzeichnis auf diesen Wert gesetzt. Option -P veranlat cd symbolische" +#~ msgstr "" +#~ "Verzeichnis auf diesen Wert gesetzt. Option -P veranlat cd symbolische" -#~ msgid "variable. The -P option says to use the physical directory structure" +#~ msgid "" +#~ "variable. The -P option says to use the physical directory structure" #~ msgstr "Verweise zu ignorieren; -L erzwingt das Benutzen symbolischer" -#~ msgid "instead of following symbolic links; the -L option forces symbolic links" +#~ msgid "" +#~ "instead of following symbolic links; the -L option forces symbolic links" #~ msgstr "Verweise." #~ msgid "to be followed." @@ -4171,7 +4358,8 @@ msgstr "" # pwd #~ msgid "Print the current working directory. With the -P option, pwd prints" -#~ msgstr "Gibt das Arbeitsverzeichnis aus. Die Angabe von -P ignoriert symbolische" +#~ msgstr "" +#~ "Gibt das Arbeitsverzeichnis aus. Die Angabe von -P ignoriert symbolische" #~ msgid "the physical directory, without any symbolic links; the -L option" #~ msgstr "Verweise. Mit -L wird das Verwenden von symbolischen Verweisen" @@ -4180,19 +4368,24 @@ msgstr "" #~ msgstr "erzwungen." # command -#~ msgid "Runs COMMAND with ARGS ignoring shell functions. If you have a shell" -#~ msgstr "Fhrt das Kommando mit den Argumenten aus, ohne die Shellfunktionen zu" +#~ msgid "" +#~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell" +#~ msgstr "" +#~ "Fhrt das Kommando mit den Argumenten aus, ohne die Shellfunktionen zu" #~ msgid "function called `ls', and you wish to call the command `ls', you can" #~ msgstr "bercksichtigen. Wenn eine Shellfunktion `ls' definiert ist, fhrt" -#~ msgid "say \"command ls\". If the -p option is given, a default value is used" +#~ msgid "" +#~ "say \"command ls\". If the -p option is given, a default value is used" #~ msgstr "\"command ls\" das Kommando `ls' aus. Mit der Option -p wird ein" -#~ msgid "for PATH that is guaranteed to find all of the standard utilities. If" +#~ msgid "" +#~ "for PATH that is guaranteed to find all of the standard utilities. If" #~ msgstr "Standardwert fr PATH verwendet. -v gibt eine kurze Beschreibung" -#~ msgid "the -V or -v option is given, a string is printed describing COMMAND." +#~ msgid "" +#~ "the -V or -v option is given, a string is printed describing COMMAND." #~ msgstr "des Kommandos aus; -V eine ausfhrliche." #~ msgid "The -V option produces a more verbose description." @@ -4200,10 +4393,12 @@ msgstr "" # declare #~ msgid "Declare variables and/or give them attributes. If no NAMEs are" -#~ msgstr "Deklariert Variablen oder weist ihnen Werte zu. Wenn kein Name angegeben" +#~ msgstr "" +#~ "Deklariert Variablen oder weist ihnen Werte zu. Wenn kein Name angegeben" #~ msgid "given, then display the values of variables instead. The -p option" -#~ msgstr "ist, dann wird der Wert der Variablen ausgegeben. Option -p gibt die" +#~ msgstr "" +#~ "ist, dann wird der Wert der Variablen ausgegeben. Option -p gibt die" #~ msgid "will display the attributes and values of each NAME." #~ msgstr "Merkmale und Werte der Namen aus." @@ -4230,13 +4425,15 @@ msgstr "" #~ msgstr " -i\tSetzt den Typ von Name auf Ganzzahl." #~ msgid "Variables with the integer attribute have arithmetic evaluation (see" -#~ msgstr "Wenn der Variablen ein Wert zugewiesen wird (siehe `let'), findet eine" +#~ msgstr "" +#~ "Wenn der Variablen ein Wert zugewiesen wird (siehe `let'), findet eine" #~ msgid "`let') done when the variable is assigned to." #~ msgstr "arithmetische Auswertung statt." #~ msgid "When displaying values of variables, -f displays a function's name" -#~ msgstr "Wenn Variablenwerte angezeigt werden, gibt die Option -f Funktionsnamen" +#~ msgstr "" +#~ "Wenn Variablenwerte angezeigt werden, gibt die Option -f Funktionsnamen" #~ msgid "and definition. The -F option restricts the display to function" #~ msgstr "und -definitionen aus. Die Option -F beschrnkt die Ausgabe auf" @@ -4244,7 +4441,8 @@ msgstr "" #~ msgid "name only." #~ msgstr "Funktionsnamen." -#~ msgid "Using `+' instead of `-' turns off the given attribute instead. When" +#~ msgid "" +#~ "Using `+' instead of `-' turns off the given attribute instead. When" #~ msgstr "`+' statt `-' schaltet das angegebene Merkmal ab. `declare'" #~ msgid "used in a function, makes NAMEs local, as with the `local' command." @@ -4256,17 +4454,22 @@ msgstr "" # local #~ msgid "Create a local variable called NAME, and give it VALUE. LOCAL" -#~ msgstr "Erzeugt eine lokale Variable Name und weist ihr Wert zu. Die Anweisung kann" +#~ msgstr "" +#~ "Erzeugt eine lokale Variable Name und weist ihr Wert zu. Die Anweisung " +#~ "kann" #~ msgid "have a visible scope restricted to that function and its children." #~ msgstr "nur innerhalb dieser Funktion und allen Unterfunktionen zugnglich." # echo #~ msgid "Output the ARGs. If -n is specified, the trailing newline is" -#~ msgstr "Gibt die Argumente aus. Wenn -n angegeben ist, wird kein Zeilenumbruch" +#~ msgstr "" +#~ "Gibt die Argumente aus. Wenn -n angegeben ist, wird kein Zeilenumbruch" #~ msgid "suppressed. If the -e option is given, interpretation of the" -#~ msgstr "angefgt. Die Option -e interpretiert folgende Sonderzeichen zur Formatierung" +#~ msgstr "" +#~ "angefgt. Die Option -e interpretiert folgende Sonderzeichen zur " +#~ "Formatierung" #~ msgid "following backslash-escaped characters is turned on:" #~ msgstr "der Ausgabe:" @@ -4304,14 +4507,19 @@ msgstr "" #~ msgid "\t\\num\tthe character whose ASCII code is NUM (octal)." #~ msgstr "\t\\num\tDas Zeichen mit dem (oktalen) ASCII-Code num." -#~ msgid "You can explicitly turn off the interpretation of the above characters" -#~ msgstr "Die Option -E schaltet die Auswertung der oben angegebenen Sonderzeichen" +#~ msgid "" +#~ "You can explicitly turn off the interpretation of the above characters" +#~ msgstr "" +#~ "Die Option -E schaltet die Auswertung der oben angegebenen Sonderzeichen" #~ msgid "with the -E option." #~ msgstr "ab." -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "Gibt ARGUMENTE aus. Die Option -n verhindert den abschlieenden Zeilenumbruch." +#~ msgid "" +#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." +#~ msgstr "" +#~ "Gibt ARGUMENTE aus. Die Option -n verhindert den abschlieenden " +#~ "Zeilenumbruch." # enable #~ msgid "Enable and disable builtin shell commands. This allows" @@ -4327,13 +4535,16 @@ msgstr "" #~ msgstr "Um z.B. die externe Funktion `test' zu verwenden," #~ msgid "path instead of the shell builtin version, type `enable -n test'." -#~ msgstr "mu `enable -n test' eingegeben werden. Auf Systemen, die Bibiliotheken" +#~ msgstr "" +#~ "mu `enable -n test' eingegeben werden. Auf Systemen, die Bibiliotheken" #~ msgid "On systems supporting dynamic loading, the -f option may be used" -#~ msgstr "dynamisch nachladen knnen, kann die Option -f genutzt werden, um neue" +#~ msgstr "" +#~ "dynamisch nachladen knnen, kann die Option -f genutzt werden, um neue" #~ msgid "to load new builtins from the shared object FILENAME. The -d" -#~ msgstr "Shellfunktionen aus der dynamischen Bibiliothek Dateiname zu laden. -d" +#~ msgstr "" +#~ "Shellfunktionen aus der dynamischen Bibiliothek Dateiname zu laden. -d" #~ msgid "option will delete a builtin previously loaded with -f. If no" #~ msgstr "entldt dynamisch geladene Shellfunktionen wieder. Wenn" @@ -4345,7 +4556,8 @@ msgstr "" #~ msgstr "Shellfunktionen ausgegeben. -a gibt eine Liste der Shellfunktionen" #~ msgid "with an indication of whether or not it is enabled. The -s option" -#~ msgstr "aus, in der ein- und ausgeschaltete Funktionen gekennzeichnet sind; -s" +#~ msgstr "" +#~ "aus, in der ein- und ausgeschaltete Funktionen gekennzeichnet sind; -s" #~ msgid "restricts the output to the Posix.2 `special' builtins. The -n" #~ msgstr "beschrnkt die Ausgabe auf Posix.2-Shellfunktionen. -n" @@ -4354,7 +4566,8 @@ msgstr "" #~ msgstr "zeigt eine Liste aller abgeschalteter Funktionen an." # eval -#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)." +#~ msgid "" +#~ "Read ARGs as input to the shell and execute the resulting command(s)." #~ msgstr "Verbindet die Argumente zu einer Kommandozeile und fhrt sie aus." # getopts @@ -4362,7 +4575,9 @@ msgstr "" #~ msgstr "Shellprozeduren benutzen getopts, um die Kommandozeole auszuwerten." #~ msgid "OPTSTRING contains the option letters to be recognized; if a letter" -#~ msgstr "Optstring enthlt die zu erkennenden Buchstaben. Folgt einem Buchstaben ein" +#~ msgstr "" +#~ "Optstring enthlt die zu erkennenden Buchstaben. Folgt einem Buchstaben " +#~ "ein" #~ msgid "is followed by a colon, the option is expected to have an argument," #~ msgstr "Doppelpunkt, dann erwartet die Funktion ein Argument, das durch ein" @@ -4371,7 +4586,9 @@ msgstr "" #~ msgstr "Leerzeichen vom Optionszeichen getrennt ist." #~ msgid "Each time it is invoked, getopts will place the next option in the" -#~ msgstr "Bei jedem Aufruf weist getopt die nchste Option der Shell-Variablen $name zu," +#~ msgstr "" +#~ "Bei jedem Aufruf weist getopt die nchste Option der Shell-Variablen " +#~ "$name zu," #~ msgid "shell variable $name, initializing name if it does not exist, and" #~ msgstr "erzeugt sie gegebenenfalls und setzt den Zeiger in der" @@ -4389,46 +4606,65 @@ msgstr "" #~ msgstr "Shellvariablen OPTARG zurckgegeben." #~ msgid "getopts reports errors in one of two ways. If the first character" -#~ msgstr "Es gibt zwei Mglichkeiten der Fehlerbehandlung. Wenn das erste Zeichen von" +#~ msgstr "" +#~ "Es gibt zwei Mglichkeiten der Fehlerbehandlung. Wenn das erste Zeichen " +#~ "von" #~ msgid "of OPTSTRING is a colon, getopts uses silent error reporting. In" -#~ msgstr "OPTSTRING ein Doppelpunkt ist, wird keine Fehlermeldung angezeigt (\"stille" +#~ msgstr "" +#~ "OPTSTRING ein Doppelpunkt ist, wird keine Fehlermeldung angezeigt " +#~ "(\"stille" #~ msgid "this mode, no error messages are printed. If an illegal option is" -#~ msgstr "Fehlermeldung\") Wenn ein ungltiges Optionszeichen erkannt wird, dann wird" +#~ msgstr "" +#~ "Fehlermeldung\") Wenn ein ungltiges Optionszeichen erkannt wird, dann " +#~ "wird" #~ msgid "seen, getopts places the option character found into OPTARG. If a" -#~ msgstr "es der Shellvariablen OPTARG zugewiesen. Wenn ein Argument fehlt, dann" +#~ msgstr "" +#~ "es der Shellvariablen OPTARG zugewiesen. Wenn ein Argument fehlt, dann" #~ msgid "required argument is not found, getopts places a ':' into NAME and" #~ msgstr "wird der Shellvariablen NAME ein ':' zugewiesen und an OPTARG das " #~ msgid "sets OPTARG to the option character found. If getopts is not in" -#~ msgstr "Optionszeichen bergeben. Wenn getopt sich nicht im \"stillen\" Modus" +#~ msgstr "" +#~ "Optionszeichen bergeben. Wenn getopt sich nicht im \"stillen\" Modus" #~ msgid "silent mode, and an illegal option is seen, getopts places '?' into" -#~ msgstr "befindet und ein ungltiges Optionszeichen erkannt wird, weist getopt der" +#~ msgstr "" +#~ "befindet und ein ungltiges Optionszeichen erkannt wird, weist getopt der" #~ msgid "NAME and unsets OPTARG. If a required option is not found, a '?'" -#~ msgstr "Variable Name '?' zu und lscht OPTARG. Wenn eine erforderliche Option nicht" +#~ msgstr "" +#~ "Variable Name '?' zu und lscht OPTARG. Wenn eine erforderliche Option " +#~ "nicht" #~ msgid "is placed in NAME, OPTARG is unset, and a diagnostic message is" -#~ msgstr "gefunden wurde, wird `?` an NAME zugewiesen, OPTARG gelscht und eine Fehler-" +#~ msgstr "" +#~ "gefunden wurde, wird `?` an NAME zugewiesen, OPTARG gelscht und eine " +#~ "Fehler-" #~ msgid "printed." #~ msgstr "meldung ausgegeben." #~ msgid "If the shell variable OPTERR has the value 0, getopts disables the" -#~ msgstr "Wenn die Shellvariable OPTERR den Wert 0 besitzt, unterdrckt getopts die Aus-" +#~ msgstr "" +#~ "Wenn die Shellvariable OPTERR den Wert 0 besitzt, unterdrckt getopts die " +#~ "Aus-" #~ msgid "printing of error messages, even if the first character of" -#~ msgstr "gabe von Fehlermeldungen, auch dann, wenn das erste Zeichen von OPTSTRING kein" +#~ msgstr "" +#~ "gabe von Fehlermeldungen, auch dann, wenn das erste Zeichen von OPTSTRING " +#~ "kein" #~ msgid "OPTSTRING is not a colon. OPTERR has the value 1 by default." #~ msgstr "Doppelpunkt ist. OPTERR hat standardmig den Wert 1." #~ msgid "Getopts normally parses the positional parameters ($0 - $9), but if" -#~ msgstr "Getopts wertet normalerweise die bergebenen Parameter $0 - $9 aus, aber wenn" +#~ msgstr "" +#~ "Getopts wertet normalerweise die bergebenen Parameter $0 - $9 aus, aber " +#~ "wenn" #~ msgid "more arguments are given, they are parsed instead." #~ msgstr "mehr Argumente angegeben sind, werden diese auch ausgewertet." @@ -4438,25 +4674,35 @@ msgstr "" #~ msgstr "Frt Datei aus und ersetzt die Shell durch das angegebene Programm." #~ msgid "If FILE is not specified, the redirections take effect in this" -#~ msgstr "Wenn kein Kommando angegeben ist, werden die Ein-/Ausgabeumleitungen auf die" +#~ msgstr "" +#~ "Wenn kein Kommando angegeben ist, werden die Ein-/Ausgabeumleitungen auf " +#~ "die" #~ msgid "shell. If the first argument is `-l', then place a dash in the" -#~ msgstr "aufrufende Shell angewendet. Wenn das erste Argument -l ist, dann wird dieses" +#~ msgstr "" +#~ "aufrufende Shell angewendet. Wenn das erste Argument -l ist, dann wird " +#~ "dieses" #~ msgid "zeroth arg passed to FILE, as login does. If the `-c' option" -#~ msgstr "als nulltes Argument an die Datei bergeben (wie login). Mit der -c Option" +#~ msgstr "" +#~ "als nulltes Argument an die Datei bergeben (wie login). Mit der -c " +#~ "Option" #~ msgid "is supplied, FILE is executed with a null environment. The `-a'" -#~ msgstr "wird die Datei ohne gesetzte Umgebungsvariablen ausgefhrt. Die -a Option" +#~ msgstr "" +#~ "wird die Datei ohne gesetzte Umgebungsvariablen ausgefhrt. Die -a Option" #~ msgid "option means to make set argv[0] of the executed process to NAME." #~ msgstr "setzt argv[0] des ausgefhrten Prozees auf Name." #~ msgid "If the file cannot be executed and the shell is not interactive," -#~ msgstr "Wenn die Datei nicht ausgefhrt werden kann und die Shell nicht interaktiv ist," +#~ msgstr "" +#~ "Wenn die Datei nicht ausgefhrt werden kann und die Shell nicht " +#~ "interaktiv ist," #~ msgid "then the shell exits, unless the variable \"no_exit_on_failed_exec\"" -#~ msgstr "dann wird sie verlassen, auer die Variable \"no_exit_on_failed_exec\" ist" +#~ msgstr "" +#~ "dann wird sie verlassen, auer die Variable \"no_exit_on_failed_exec\" ist" #~ msgid "is set." #~ msgstr "gesetzt." @@ -4465,8 +4711,11 @@ msgstr "" #~ msgstr "der Rckkehrstatus des zuletzt ausgefhrten Kommandos verwendet." # fc -#~ msgid "FIRST and LAST can be numbers specifying the range, or FIRST can be a" -#~ msgstr "Anfang und Ende bezeichnen einen Bereich oder, wenn Anfang eine Zeichenkette" +#~ msgid "" +#~ "FIRST and LAST can be numbers specifying the range, or FIRST can be a" +#~ msgstr "" +#~ "Anfang und Ende bezeichnen einen Bereich oder, wenn Anfang eine " +#~ "Zeichenkette" #~ msgid "string, which means the most recent command beginning with that" #~ msgstr "ist, das letzte Kommando welches mit dieser Zeichkette beginnt." @@ -4474,11 +4723,16 @@ msgstr "" #~ msgid "string." #~ msgstr " " -#~ msgid " -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR," -#~ msgstr " -e Editor ist der aufzurufende Texteditor. Standardmig wird FCEDIT, dann" +#~ msgid "" +#~ " -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR," +#~ msgstr "" +#~ " -e Editor ist der aufzurufende Texteditor. Standardmig wird FCEDIT, " +#~ "dann" -#~ msgid " then the editor which corresponds to the current readline editing" -#~ msgstr " EDITOR, anschlieend der dem readline Modus entsprechende Editor" +#~ msgid "" +#~ " then the editor which corresponds to the current readline editing" +#~ msgstr "" +#~ " EDITOR, anschlieend der dem readline Modus entsprechende Editor" #~ msgid " mode, then vi." #~ msgstr " und sonst vi aufgerufen." @@ -4489,136 +4743,200 @@ msgstr "" #~ msgid " -n means no line numbers listed." #~ msgstr " -n unterdrckt das Anzeigen von Zeilennummern." -#~ msgid " -r means reverse the order of the lines (making it newest listed first)." -#~ msgstr " -r dreht die Sortierreihenfolge um (jngster Eintrag wird zuerst angezeigt)." +#~ msgid "" +#~ " -r means reverse the order of the lines (making it newest listed " +#~ "first)." +#~ msgstr "" +#~ " -r dreht die Sortierreihenfolge um (jngster Eintrag wird zuerst " +#~ "angezeigt)." #~ msgid "With the `fc -s [pat=rep ...] [command]' format, the command is" -#~ msgstr "Mit `fc -s [Muster=Ersetzung ...] [command]' wird das Kommando wiederholt," +#~ msgstr "" +#~ "Mit `fc -s [Muster=Ersetzung ...] [command]' wird das Kommando wiederholt," #~ msgid "re-executed after the substitution OLD=NEW is performed." #~ msgstr "nachdem die Substitution Alt=Neu durchgefhrt wurde." #~ msgid "A useful alias to use with this is r='fc -s', so that typing `r cc'" -#~ msgstr "Eine ntzliche Aliasersetzung kann r='fc -s' sein, mit der z.B. durch `r cc`" +#~ msgstr "" +#~ "Eine ntzliche Aliasersetzung kann r='fc -s' sein, mit der z.B. durch `r " +#~ "cc`" #~ msgid "runs the last command beginning with `cc' and typing `r' re-executes" -#~ msgstr "das letzte Kommando welches mit `cc' beginnt aufgerufen wird und die Eingabe" +#~ msgstr "" +#~ "das letzte Kommando welches mit `cc' beginnt aufgerufen wird und die " +#~ "Eingabe" # fg #~ msgid "Place JOB_SPEC in the foreground, and make it the current job. If" #~ msgstr "Bringt den mit `^Z' angehaltenen Job in den Vordergrund. Wenn eine" #~ msgid "JOB_SPEC is not present, the shell's notion of the current job is" -#~ msgstr "Jobbezeichnung angegeben ist, dann wird der zuletzt angehaltene Job im" +#~ msgstr "" +#~ "Jobbezeichnung angegeben ist, dann wird der zuletzt angehaltene Job im" #~ msgid "used." #~ msgstr "Vordergrund gestartet." # bg #~ msgid "Place JOB_SPEC in the background, as if it had been started with" -#~ msgstr "Startet einen mit `^Z' angehaltenen Job im Hintergrund, als ob er mit `&'" +#~ msgstr "" +#~ "Startet einen mit `^Z' angehaltenen Job im Hintergrund, als ob er mit `&'" #~ msgid "`&'. If JOB_SPEC is not present, the shell's notion of the current" -#~ msgstr "gestartet worden wre. Ist keine Jobbezeichnung angegeben, wird der zuletzt" +#~ msgstr "" +#~ "gestartet worden wre. Ist keine Jobbezeichnung angegeben, wird der " +#~ "zuletzt" #~ msgid "job is used." #~ msgstr "angehaltene Job im Hintergrund gestartet." # hash #~ msgid "For each NAME, the full pathname of the command is determined and" -#~ msgstr "Fr jeden angegebenen Namen wird der vollstndige Pfadname des Kommandos" +#~ msgstr "" +#~ "Fr jeden angegebenen Namen wird der vollstndige Pfadname des Kommandos" #~ msgid "remembered. If the -p option is supplied, PATHNAME is used as the" -#~ msgstr "ermittelt und gemerkt. Wenn die -p Option angegeben wird, dann wird der" +#~ msgstr "" +#~ "ermittelt und gemerkt. Wenn die -p Option angegeben wird, dann wird der" #~ msgid "full pathname of NAME, and no path search is performed. The -r" -#~ msgstr "Pfadname verwendet und keine Suche durchgefhrt. Die -r Option lscht die" +#~ msgstr "" +#~ "Pfadname verwendet und keine Suche durchgefhrt. Die -r Option lscht die" #~ msgid "option causes the shell to forget all remembered locations. If no" -#~ msgstr "gespeicherten Pfade. Wenn keine Option angegeben ist, dann werden alle" +#~ msgstr "" +#~ "gespeicherten Pfade. Wenn keine Option angegeben ist, dann werden alle" -#~ msgid "arguments are given, information about remembered commands is displayed." +#~ msgid "" +#~ "arguments are given, information about remembered commands is displayed." #~ msgstr "gespeicherten Kommandos angezeigt." # help #~ msgid "Display helpful information about builtin commands. If PATTERN is" -#~ msgstr "Gibt Hilfetexte fr die eingebauten Kommandos aus. Wenn ein Muster angegeben" +#~ msgstr "" +#~ "Gibt Hilfetexte fr die eingebauten Kommandos aus. Wenn ein Muster " +#~ "angegeben" #~ msgid "specified, gives detailed help on all commands matching PATTERN," -#~ msgstr "ist, dann wird eine detailierte Beschreibung der Kommandos angezeigt, die dem" +#~ msgstr "" +#~ "ist, dann wird eine detailierte Beschreibung der Kommandos angezeigt, die " +#~ "dem" #~ msgid "otherwise a list of the builtins is printed." -#~ msgstr "Muster entsprechen. Sonst werden die eingebauten Kommandos gelistet." +#~ msgstr "" +#~ "Muster entsprechen. Sonst werden die eingebauten Kommandos gelistet." # history #~ msgid "Display the history list with line numbers. Lines listed with" -#~ msgstr "Zeigt den Kommandozeilenspeicher mit Zeilennummern an. Mit `*' markierte" +#~ msgstr "" +#~ "Zeigt den Kommandozeilenspeicher mit Zeilennummern an. Mit `*' markierte" #~ msgid "with a `*' have been modified. Argument of N says to list only" -#~ msgstr "Zeilen wurden verndert. Mit einer Zahl als Argument wird nur die angegebene" +#~ msgstr "" +#~ "Zeilen wurden verndert. Mit einer Zahl als Argument wird nur die " +#~ "angegebene" #~ msgid "the last N lines. The -c option causes the history list to be" -#~ msgstr "Anzahl Zeilen ausgegeben. Mit der `-c' Option kann der Kommandozeilenspeicher" +#~ msgstr "" +#~ "Anzahl Zeilen ausgegeben. Mit der `-c' Option kann der " +#~ "Kommandozeilenspeicher" -#~ msgid "cleared by deleting all of the entries. The `-w' option writes out the" -#~ msgstr "gelscht werden. Ist die `-w' Option angegeben, wird der Kommandozeilen-" +#~ msgid "" +#~ "cleared by deleting all of the entries. The `-w' option writes out the" +#~ msgstr "" +#~ "gelscht werden. Ist die `-w' Option angegeben, wird der Kommandozeilen-" -#~ msgid "current history to the history file; `-r' means to read the file and" -#~ msgstr "speicher in die history Datei geschrieben. `-r' liest diese Datei und fgt" +#~ msgid "" +#~ "current history to the history file; `-r' means to read the file and" +#~ msgstr "" +#~ "speicher in die history Datei geschrieben. `-r' liest diese Datei und fgt" #~ msgid "append the contents to the history list instead. `-a' means" -#~ msgstr "ihren Inhalt an den Kommandozeilenspeicher an. Durch die Option `-a' kann der" +#~ msgstr "" +#~ "ihren Inhalt an den Kommandozeilenspeicher an. Durch die Option `-a' " +#~ "kann der" #~ msgid "to append history lines from this session to the history file." -#~ msgstr "Kommandozeilenspeicher der Sitzung an die history Datei angefgt werden." +#~ msgstr "" +#~ "Kommandozeilenspeicher der Sitzung an die history Datei angefgt werden." #~ msgid "Argument `-n' means to read all history lines not already read" -#~ msgstr "Das Argument `-n' bewirkt, da alle Zeilen die noch nicht aus der history Datei" +#~ msgstr "" +#~ "Das Argument `-n' bewirkt, da alle Zeilen die noch nicht aus der history " +#~ "Datei" #~ msgid "from the history file and append them to the history list. If" -#~ msgstr "gelesen wurden an den Kommandozeilenspeicher angefgt werden. Wenn ein Datei-" +#~ msgstr "" +#~ "gelesen wurden an den Kommandozeilenspeicher angefgt werden. Wenn ein " +#~ "Datei-" #~ msgid "FILENAME is given, then that is used as the history file else" -#~ msgstr "name angegeben ist, dann wird dieser als Name der history Datei verwendet. Sonst" +#~ msgstr "" +#~ "name angegeben ist, dann wird dieser als Name der history Datei " +#~ "verwendet. Sonst" #~ msgid "if $HISTFILE has a value, that is used, else ~/.bash_history." -#~ msgstr "wird der Inhalt der Variablen $HISTFILE und anschlieend ~/.bash_history verwendet." +#~ msgstr "" +#~ "wird der Inhalt der Variablen $HISTFILE und anschlieend ~/.bash_history " +#~ "verwendet." #~ msgid "If the -s option is supplied, the non-option ARGs are appended to" -#~ msgstr "Durch die -s Option wird bewirkt, da die Nicht-Options-Argumente als eigene" +#~ msgstr "" +#~ "Durch die -s Option wird bewirkt, da die Nicht-Options-Argumente als " +#~ "eigene" #~ msgid "the history list as a single entry. The -p option means to perform" -#~ msgstr "Zeile an den Kommandospeicher angefgt werden. Mit -p wird fr jedes Argument" +#~ msgstr "" +#~ "Zeile an den Kommandospeicher angefgt werden. Mit -p wird fr jedes " +#~ "Argument" -#~ msgid "history expansion on each ARG and display the result, without storing" -#~ msgstr "die Kommandosubstitution durchgefhrt und das Ergebnis angezeigt, ohne jedoch" +#~ msgid "" +#~ "history expansion on each ARG and display the result, without storing" +#~ msgstr "" +#~ "die Kommandosubstitution durchgefhrt und das Ergebnis angezeigt, ohne " +#~ "jedoch" #~ msgid "anything in the history list." #~ msgstr "etwas im Kommandozeilenspeicher abzulegen." # jobs #~ msgid "Lists the active jobs. The -l option lists process id's in addition" -#~ msgstr "Gibt eine Liste der aktiven Jobs aus. Mit der -l Option werden zustzlich die" +#~ msgstr "" +#~ "Gibt eine Liste der aktiven Jobs aus. Mit der -l Option werden " +#~ "zustzlich die" #~ msgid "to the normal information; the -p option lists process id's only." -#~ msgstr "Prozenummern und mit der -p Option nur die Prozenummern ausgsgegeben." +#~ msgstr "" +#~ "Prozenummern und mit der -p Option nur die Prozenummern ausgsgegeben." -#~ msgid "If -n is given, only processes that have changed status since the last" -#~ msgstr "Die Option -n bewirkt, da nur Jobs angezeigt werden, die ihren Status seid dem" +#~ msgid "" +#~ "If -n is given, only processes that have changed status since the last" +#~ msgstr "" +#~ "Die Option -n bewirkt, da nur Jobs angezeigt werden, die ihren Status " +#~ "seid dem" -#~ msgid "notification are printed. JOBSPEC restricts output to that job. The" -#~ msgstr "letzten Aufruf gendert haben. Jobbez. beschrnkt die Anzeige auf diesen Job." +#~ msgid "" +#~ "notification are printed. JOBSPEC restricts output to that job. The" +#~ msgstr "" +#~ "letzten Aufruf gendert haben. Jobbez. beschrnkt die Anzeige auf diesen " +#~ "Job." #~ msgid "-r and -s options restrict output to running and stopped jobs only," -#~ msgstr "-r zeigt nur laufende und -s nur gestoppte Jobs an. Wenn keine Optionen" +#~ msgstr "" +#~ "-r zeigt nur laufende und -s nur gestoppte Jobs an. Wenn keine Optionen" #~ msgid "respectively. Without options, the status of all active jobs is" #~ msgstr "angegeben sind, dann wird der Status aller aktiven Jobs angezeigt." -#~ msgid "printed. If -x is given, COMMAND is run after all job specifications" -#~ msgstr "Wenn -x in der Kommandozeile angegeben ist, wird das Kommando ausgefhrt und" +#~ msgid "" +#~ "printed. If -x is given, COMMAND is run after all job specifications" +#~ msgstr "" +#~ "Wenn -x in der Kommandozeile angegeben ist, wird das Kommando ausgefhrt " +#~ "und" -#~ msgid "that appear in ARGS have been replaced with the process ID of that job's" +#~ msgid "" +#~ "that appear in ARGS have been replaced with the process ID of that job's" #~ msgstr "vorher alle vorkommenden Jobspezifikationen durch ihre Prozenummer" #~ msgid "process group leader." @@ -4630,35 +4948,56 @@ msgstr "" # kill #~ msgid "Send the processes named by PID (or JOB) the signal SIGSPEC. If" -#~ msgstr "Sendet den durch pid (oder job) angegebenen Prozessen das Signal SIGSPEC. Wenn" +#~ msgstr "" +#~ "Sendet den durch pid (oder job) angegebenen Prozessen das Signal " +#~ "SIGSPEC. Wenn" -#~ msgid "SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'" -#~ msgstr "kein Signal angegeben ist wird SIGTERM gesendet. Mit der Option -l kann eine" +#~ msgid "" +#~ "SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'" +#~ msgstr "" +#~ "kein Signal angegeben ist wird SIGTERM gesendet. Mit der Option -l kann " +#~ "eine" #~ msgid "lists the signal names; if arguments follow `-l' they are assumed to" -#~ msgstr "Liste der mglichen Signalnamen angezeigt werden. Wenn Zahlen nach der Option" +#~ msgstr "" +#~ "Liste der mglichen Signalnamen angezeigt werden. Wenn Zahlen nach der " +#~ "Option" #~ msgid "be signal numbers for which names should be listed. Kill is a shell" -#~ msgstr "angegeben werden, wird deren Signalbezeichnung angezeigt. Kill ist aus zwei" +#~ msgstr "" +#~ "angegeben werden, wird deren Signalbezeichnung angezeigt. Kill ist aus " +#~ "zwei" #~ msgid "builtin for two reasons: it allows job IDs to be used instead of" -#~ msgstr "Grnden eine Shellfunktion: es knnen Jobbezeichnungen anstatt Prozenummern" +#~ msgstr "" +#~ "Grnden eine Shellfunktion: es knnen Jobbezeichnungen anstatt " +#~ "Prozenummern" #~ msgid "process IDs, and, if you have reached the limit on processes that" -#~ msgstr "genutzt werden und, wenn die maximale Anzahl laufender Prozesse erreicht ist" +#~ msgstr "" +#~ "genutzt werden und, wenn die maximale Anzahl laufender Prozesse erreicht " +#~ "ist" -#~ msgid "you can create, you don't have to start a process to kill another one." -#~ msgstr "braucht kein weiterer Proze gestartet zu werden, um einen anderen zu beenden." +#~ msgid "" +#~ "you can create, you don't have to start a process to kill another one." +#~ msgstr "" +#~ "braucht kein weiterer Proze gestartet zu werden, um einen anderen zu " +#~ "beenden." # let #~ msgid "Each ARG is an arithmetic expression to be evaluated. Evaluation" -#~ msgstr "Jedes Argument ist ein auszuwertender arithmetischer Ausdruck. Es werden long" +#~ msgstr "" +#~ "Jedes Argument ist ein auszuwertender arithmetischer Ausdruck. Es werden " +#~ "long" #~ msgid "is done in long integers with no check for overflow, though division" -#~ msgstr "integer Variablen verwendet. Ein berlauftest wird nicht ausgefhrt, jedoch" +#~ msgstr "" +#~ "integer Variablen verwendet. Ein berlauftest wird nicht ausgefhrt, " +#~ "jedoch" #~ msgid "by 0 is trapped and flagged as an error. The following list of" -#~ msgstr "wird eine Division durch 0 erkannt und als Fehler gekennzeichnet. Die" +#~ msgstr "" +#~ "wird eine Division durch 0 erkannt und als Fehler gekennzeichnet. Die" #~ msgid "operators is grouped into levels of equal-precedence operators." #~ msgstr "Liste von Operatoren ist in Gruppen gleichen Vorrangs geordnet." @@ -4718,7 +5057,8 @@ msgstr "" #~ msgstr "\t&=, ^=, |=\tZuweisungen." #~ msgid "is replaced by its value (coerced to a long integer) within" -#~ msgstr "Ausdruck durch ihren in long integer umgewandelten Wert ersetzt. Um " +#~ msgstr "" +#~ "Ausdruck durch ihren in long integer umgewandelten Wert ersetzt. Um " #~ msgid "an expression. The variable need not have its integer attribute" #~ msgstr "die Variable in einem Ausdruck verwenden zu knnen, mu ihr " @@ -4730,7 +5070,8 @@ msgstr "" #~ msgstr "Die Operatoren werden in Reihenfolge ihres Vorrangs ausgewertet." #~ msgid "parentheses are evaluated first and may override the precedence" -#~ msgstr "Geklammerte Teilausdrcke werden zuerst ausgewertet und knnen von den" +#~ msgstr "" +#~ "Geklammerte Teilausdrcke werden zuerst ausgewertet und knnen von den" #~ msgid "rules above." #~ msgstr "oben angegebenen Vorrangregeln abweichen." @@ -4743,57 +5084,92 @@ msgstr "" # read #~ msgid "One line is read from the standard input, and the first word is" -#~ msgstr "Es wird eine Zeile von der Standardeingabe gelesen und das erste Wort der" +#~ msgstr "" +#~ "Es wird eine Zeile von der Standardeingabe gelesen und das erste Wort der" -#~ msgid "assigned to the first NAME, the second word to the second NAME, and so" -#~ msgstr "ersten Variablen NAME zugewiesen, das zweite Wort der zweiten Variablen und so" +#~ msgid "" +#~ "assigned to the first NAME, the second word to the second NAME, and so" +#~ msgstr "" +#~ "ersten Variablen NAME zugewiesen, das zweite Wort der zweiten Variablen " +#~ "und so" -#~ msgid "on, with leftover words assigned to the last NAME. Only the characters" -#~ msgstr "weiter, bis ein Wort der letzten Variablen zugewiesen wurde. Nur die in $IFS" +#~ msgid "" +#~ "on, with leftover words assigned to the last NAME. Only the characters" +#~ msgstr "" +#~ "weiter, bis ein Wort der letzten Variablen zugewiesen wurde. Nur die in " +#~ "$IFS" #~ msgid "found in $IFS are recognized as word delimiters. The return code is" -#~ msgstr "angegebenen Zeichen werden als Trennzeichen erkannt. Wenn kein EOF Zeichen" +#~ msgstr "" +#~ "angegebenen Zeichen werden als Trennzeichen erkannt. Wenn kein EOF " +#~ "Zeichen" -#~ msgid "zero, unless end-of-file is encountered. If no NAMEs are supplied, the" -#~ msgstr "aufgetreten ist, ist der Rckgabewert Null. Wenn kein NAME angegeben wurde," +#~ msgid "" +#~ "zero, unless end-of-file is encountered. If no NAMEs are supplied, the" +#~ msgstr "" +#~ "aufgetreten ist, ist der Rckgabewert Null. Wenn kein NAME angegeben " +#~ "wurde," -#~ msgid "line read is stored in the REPLY variable. If the -r option is given," -#~ msgstr "verwendet read die REPLY Variable. Durch die Option -r wird das Auswerten von" +#~ msgid "" +#~ "line read is stored in the REPLY variable. If the -r option is given," +#~ msgstr "" +#~ "verwendet read die REPLY Variable. Durch die Option -r wird das " +#~ "Auswerten von" #~ msgid "this signifies `raw' input, and backslash escaping is disabled. If" -#~ msgstr "mit `\\' markierten Sonderzeichen unterdrckt. Wenn die Option -r angegeben" +#~ msgstr "" +#~ "mit `\\' markierten Sonderzeichen unterdrckt. Wenn die Option -r " +#~ "angegeben" #~ msgid "the `-p' option is supplied, the string supplied as an argument is" -#~ msgstr "ist, dann wird die Eingabeaufforderung ohne einen abschlieenden Zeilenumbruch" +#~ msgstr "" +#~ "ist, dann wird die Eingabeaufforderung ohne einen abschlieenden " +#~ "Zeilenumbruch" -#~ msgid "output without a trailing newline before attempting to read. If -a is" -#~ msgstr "angezeigt. Wenn die Option -a angegeben ist, dann wird die Eingabe an die" +#~ msgid "" +#~ "output without a trailing newline before attempting to read. If -a is" +#~ msgstr "" +#~ "angezeigt. Wenn die Option -a angegeben ist, dann wird die Eingabe an die" -#~ msgid "supplied, the words read are assigned to sequential indices of ARRAY," -#~ msgstr "Feldvariable ARRAY bergeben und fr jeden Eintrag der Index von Null beginnend" +#~ msgid "" +#~ "supplied, the words read are assigned to sequential indices of ARRAY," +#~ msgstr "" +#~ "Feldvariable ARRAY bergeben und fr jeden Eintrag der Index von Null " +#~ "beginnend" #~ msgid "starting at zero. If -e is supplied and the shell is interactive," -#~ msgstr "um Eins erhht wird. Mit der -e Option wird bei einer interaktiven Shell die" +#~ msgstr "" +#~ "um Eins erhht wird. Mit der -e Option wird bei einer interaktiven Shell " +#~ "die" #~ msgid "readline is used to obtain the line." -#~ msgstr "die readline Funktionen aktiviert, um die Eingabezeile zu editieren." +#~ msgstr "" +#~ "die readline Funktionen aktiviert, um die Eingabezeile zu editieren." # return -#~ msgid "Causes a function to exit with the return value specified by N. If N" -#~ msgstr "Beendet eine Shellfunktion und setzt den Rckgabewert auf N. Wenn kein Rckga-" +#~ msgid "" +#~ "Causes a function to exit with the return value specified by N. If N" +#~ msgstr "" +#~ "Beendet eine Shellfunktion und setzt den Rckgabewert auf N. Wenn kein " +#~ "Rckga-" #~ msgid "is omitted, the return status is that of the last command." -#~ msgstr "bewert angegeben ist, wird der des zuletzt ausgefhrten Kommandos verwendet." +#~ msgstr "" +#~ "bewert angegeben ist, wird der des zuletzt ausgefhrten Kommandos " +#~ "verwendet." # set #~ msgid " -a Mark variables which are modified or created for export." -#~ msgstr " -a Markiert erzeugte oder vernderte Variablen als exportierbar." +#~ msgstr "" +#~ " -a Markiert erzeugte oder vernderte Variablen als exportierbar." #~ msgid " -b Notify of job termination immediately." #~ msgstr " -b Zeigt das Beenden von Prozessen sofort an." #~ msgid " -e Exit immediately if a command exits with a non-zero status." -#~ msgstr " -e Beendet die Shell sofort, wenn ein Kommando ein Fehler zurckliefert." +#~ msgstr "" +#~ " -e Beendet die Shell sofort, wenn ein Kommando ein Fehler " +#~ "zurckliefert." #~ msgid " -f Disable file name generation (globbing)." #~ msgstr " -f Unterdrckt das Erzeugen von Dateinamen." @@ -4801,17 +5177,22 @@ msgstr "" #~ msgid " -h Remember the location of commands as they are looked up." #~ msgstr " -h Speichert die eingegebenen Kommandos sofort." -#~ msgid " -i Force the shell to be an \"interactive\" one. Interactive shells" -#~ msgstr " -i Erzwingt, da die Shell interaktiv arbeitet. Interaktive Shells" +#~ msgid "" +#~ " -i Force the shell to be an \"interactive\" one. Interactive shells" +#~ msgstr "" +#~ " -i Erzwingt, da die Shell interaktiv arbeitet. Interaktive Shells" #~ msgid " always read `~/.bashrc' on startup." -#~ msgstr " interpretieren beim Aufrufen den Inhalt der Datei `~/.bashrc'." +#~ msgstr "" +#~ " interpretieren beim Aufrufen den Inhalt der Datei `~/.bashrc'." #~ msgid " -k All assignment arguments are placed in the environment for a" -#~ msgstr " -k Die komplette Kommandozeile wird in die Umgebung der Funktion" +#~ msgstr "" +#~ " -k Die komplette Kommandozeile wird in die Umgebung der Funktion" #~ msgid " command, not just those that precede the command name." -#~ msgstr " geschrieben, nicht blo die Argumente nach dem Funktionsnamen." +#~ msgstr "" +#~ " geschrieben, nicht blo die Argumente nach dem Funktionsnamen." #~ msgid " -m Job control is enabled." #~ msgstr " -m Jobsteuerung wird aktiviert." @@ -4832,7 +5213,9 @@ msgstr "" #~ msgstr " braceexpand Wie die Option -B." #~ msgid " emacs use an emacs-style line editing interface" -#~ msgstr " emacs Schaltet den Kommandozeileneditor in den emacs-Stil." +#~ msgstr "" +#~ " emacs Schaltet den Kommandozeileneditor in den emacs-" +#~ "Stil." #~ msgid " errexit same as -e" #~ msgstr " errexit Wie die Option -e." @@ -4844,13 +5227,18 @@ msgstr "" #~ msgstr " histexpand Wie die Option -H." #~ msgid " ignoreeof the shell will not exit upon reading EOF" -#~ msgstr " ignoreeof Shell wird nach dem Lesen von EOF nicht verlassen ." +#~ msgstr "" +#~ " ignoreeof Shell wird nach dem Lesen von EOF nicht " +#~ "verlassen ." #~ msgid " interactive-comments" #~ msgstr " interactive-comments" -#~ msgid " allow comments to appear in interactive commands" -#~ msgstr " Kommentare werden auch in der Kommandozeile erlaubt." +#~ msgid "" +#~ " allow comments to appear in interactive commands" +#~ msgstr "" +#~ " Kommentare werden auch in der Kommandozeile " +#~ "erlaubt." #~ msgid " keyword same as -k" #~ msgstr " keyword Wie die Option -k." @@ -4879,10 +5267,13 @@ msgstr "" #~ msgid " physical same as -P" #~ msgstr " physical Wie die Option -P." -#~ msgid " posix change the behavior of bash where the default" -#~ msgstr " posix ndert das Verhalten der Shell, wo sie vom," +#~ msgid "" +#~ " posix change the behavior of bash where the default" +#~ msgstr "" +#~ " posix ndert das Verhalten der Shell, wo sie vom," -#~ msgid " operation differs from the 1003.2 standard to" +#~ msgid "" +#~ " operation differs from the 1003.2 standard to" #~ msgstr " 1003.2 Standard abweicht, zu einem POSIX " #~ msgid " match the standard" @@ -4895,179 +5286,255 @@ msgstr "" #~ msgstr " verbose Wie die Option -v." #~ msgid " vi use a vi-style line editing interface" -#~ msgstr " vi Schaltet den Kommandozeileneditor in den vi-Stil." +#~ msgstr "" +#~ " vi Schaltet den Kommandozeileneditor in den vi-Stil." #~ msgid " xtrace same as -x" #~ msgstr " xtrace Wie die Option -x." -#~ msgid " -p Turned on whenever the real and effective user ids do not match." -#~ msgstr " -p Ist aktiviert, wenn die reale und effektive Nutzer ID nicht berein-" +#~ msgid "" +#~ " -p Turned on whenever the real and effective user ids do not match." +#~ msgstr "" +#~ " -p Ist aktiviert, wenn die reale und effektive Nutzer ID nicht " +#~ "berein-" #~ msgid " Disables processing of the $ENV file and importing of shell" -#~ msgstr " stimmen. Die $ENV Datei wird nicht ausgefhrt und keine Shellfunk-" +#~ msgstr "" +#~ " stimmen. Die $ENV Datei wird nicht ausgefhrt und keine " +#~ "Shellfunk-" -#~ msgid " functions. Turning this option off causes the effective uid and" -#~ msgstr " tionen importiert. Das Deaktivieren dieser Option setzt die Effektive" +#~ msgid "" +#~ " functions. Turning this option off causes the effective uid and" +#~ msgstr "" +#~ " tionen importiert. Das Deaktivieren dieser Option setzt die " +#~ "Effektive" #~ msgid " gid to be set to the real uid and gid." #~ msgstr " uid und gid auf die Reale uid und gid." #~ msgid " -t Exit after reading and executing one command." -#~ msgstr " -t Beendet die Shell sofort nach Ausfhern eines einzelnen Kommandos." +#~ msgstr "" +#~ " -t Beendet die Shell sofort nach Ausfhern eines einzelnen Kommandos." #~ msgid " -u Treat unset variables as an error when substituting." -#~ msgstr " -u Der Versuch leere (ungesetzte) Variablen zu erweitern erzeugt einen Fehler." +#~ msgstr "" +#~ " -u Der Versuch leere (ungesetzte) Variablen zu erweitern erzeugt " +#~ "einen Fehler." #~ msgid " -v Print shell input lines as they are read." #~ msgstr " -v Gibt die Kommandozeilen aus wie sie gelesenen wurden." #~ msgid " -x Print commands and their arguments as they are executed." -#~ msgstr " -x Gibt die Kommandos mit ihren Argumenten aus wie es ausgefhrt wird." +#~ msgstr "" +#~ " -x Gibt die Kommandos mit ihren Argumenten aus wie es ausgefhrt " +#~ "wird." #~ msgid " -B the shell will perform brace expansion" #~ msgstr " -B Schaltet die Klammernerweiterung der Shell ein." #~ msgid " -H Enable ! style history substitution. This flag is on" -#~ msgstr " -H Schaltet den Zugriff auf den Kommandozeilenspeicher durch `!' ein." +#~ msgstr "" +#~ " -H Schaltet den Zugriff auf den Kommandozeilenspeicher durch `!' ein." #~ msgid " by default." #~ msgstr " Diese Option ist standardmig aktiviert." #~ msgid " -C If set, disallow existing regular files to be overwritten" -#~ msgstr " -C Verhindert das berschreiben von existierenden Dateien durch" +#~ msgstr "" +#~ " -C Verhindert das berschreiben von existierenden Dateien durch" #~ msgid " by redirection of output." #~ msgstr " Umleiten der Ausgabe (wie noclobber)." #~ msgid " -P If set, do not follow symbolic links when executing commands" -#~ msgstr " -P Symbolische Verweise werden beim Ausfhren von Kommandos, wie z.B. cd" +#~ msgstr "" +#~ " -P Symbolische Verweise werden beim Ausfhren von Kommandos, wie z." +#~ "B. cd" #~ msgid " such as cd which change the current directory." #~ msgstr " welches das aktuelle Arbeitsverzeichnis ndert, ignoriert." #~ msgid "Using + rather than - causes these flags to be turned off. The" -#~ msgstr "Durch `+' an Stelle von `-' kann eine Option deaktiviert werden. Die Optionen" +#~ msgstr "" +#~ "Durch `+' an Stelle von `-' kann eine Option deaktiviert werden. Die " +#~ "Optionen" #~ msgid "flags can also be used upon invocation of the shell. The current" -#~ msgstr "knnen auch beim Aufruf der Shell benutzt werden. Die gegenwrtig aktivierten" +#~ msgstr "" +#~ "knnen auch beim Aufruf der Shell benutzt werden. Die gegenwrtig " +#~ "aktivierten" -#~ msgid "set of flags may be found in $-. The remaining n ARGs are positional" -#~ msgstr "Optionen sind in der Variablen $- gespeichert. Die verbleibenden n Argumente" +#~ msgid "" +#~ "set of flags may be found in $-. The remaining n ARGs are positional" +#~ msgstr "" +#~ "Optionen sind in der Variablen $- gespeichert. Die verbleibenden n " +#~ "Argumente" #~ msgid "parameters and are assigned, in order, to $1, $2, .. $n. If no" -#~ msgstr "sind Parameter und werden den Variablen $1, $2, .. $n zugewiesen. Wenn kein" +#~ msgstr "" +#~ "sind Parameter und werden den Variablen $1, $2, .. $n zugewiesen. Wenn " +#~ "kein" #~ msgid "ARGs are given, all shell variables are printed." #~ msgstr "Argument angegeben ist, dann werden alle Shellvariablen ausgegeben." # unset #~ msgid "For each NAME, remove the corresponding variable or function. Given" -#~ msgstr "Fr jeden angegebenen NAMEn wird die entsprechende Variable oder Funktion ge-" +#~ msgstr "" +#~ "Fr jeden angegebenen NAMEn wird die entsprechende Variable oder Funktion " +#~ "ge-" #~ msgid "the `-v', unset will only act on variables. Given the `-f' flag," -#~ msgstr "lscht. Mit `-v' werden nur Variablen und mit `-f' nur Funktionen gelscht." +#~ msgstr "" +#~ "lscht. Mit `-v' werden nur Variablen und mit `-f' nur Funktionen " +#~ "gelscht." #~ msgid "unset will only act on functions. With neither flag, unset first" -#~ msgstr "Wenn kein Schalter angegeben ist, wird zunchst eine Variable gesucht und wenn" +#~ msgstr "" +#~ "Wenn kein Schalter angegeben ist, wird zunchst eine Variable gesucht und " +#~ "wenn" #~ msgid "tries to unset a variable, and if that fails, then tries to unset a" -#~ msgstr "eine solche nicht gefunden wurde, dann wird versucht eine Funktion zu lschen." +#~ msgstr "" +#~ "eine solche nicht gefunden wurde, dann wird versucht eine Funktion zu " +#~ "lschen." -#~ msgid "function. Some variables (such as PATH and IFS) cannot be unset; also" -#~ msgstr "Einige Variablen (z.B. PATH und IFS) knnen nicht gelscht werden. Siehe" +#~ msgid "" +#~ "function. Some variables (such as PATH and IFS) cannot be unset; also" +#~ msgstr "" +#~ "Einige Variablen (z.B. PATH und IFS) knnen nicht gelscht werden. Siehe" #~ msgid "see readonly." #~ msgstr "diesbezglich auch die Hilfe der Funktion readonly." # export #~ msgid "NAMEs are marked for automatic export to the environment of" -#~ msgstr "Die NAMEn werden fr den automatischen Export in die Umgebung von der Shell" +#~ msgstr "" +#~ "Die NAMEn werden fr den automatischen Export in die Umgebung von der " +#~ "Shell" #~ msgid "subsequently executed commands. If the -f option is given," -#~ msgstr "gestarteten Prozesse markiert. Wenn die -f Option angegenen ist, dann bezeich-" +#~ msgstr "" +#~ "gestarteten Prozesse markiert. Wenn die -f Option angegenen ist, dann " +#~ "bezeich-" #~ msgid "the NAMEs refer to functions. If no NAMEs are given, or if `-p'" -#~ msgstr "nen die NAME'n Funktionen. Wenn keine NAMEn angegeben sind, oder die `-p'" +#~ msgstr "" +#~ "nen die NAME'n Funktionen. Wenn keine NAMEn angegeben sind, oder die `-p'" #~ msgid "is given, a list of all names that are exported in this shell is" -#~ msgstr "Option angegeben ist, dann wird eine Liste aller von der Shell exportierter" +#~ msgstr "" +#~ "Option angegeben ist, dann wird eine Liste aller von der Shell " +#~ "exportierter" #~ msgid "printed. An argument of `-n' says to remove the export property" -#~ msgstr "Namen ausgegeben. Mit dem Argument `-n' wird die Exporteigenschaft des NAMENs" +#~ msgstr "" +#~ "Namen ausgegeben. Mit dem Argument `-n' wird die Exporteigenschaft des " +#~ "NAMENs" #~ msgid "from subsequent NAMEs. An argument of `--' disables further option" -#~ msgstr "gelscht. Ein Argument `--' verhindert, da nach diesem Zeichen weitere" +#~ msgstr "" +#~ "gelscht. Ein Argument `--' verhindert, da nach diesem Zeichen weitere" #~ msgid "processing." #~ msgstr "Optionen ausgewertet werden." # readonly -#~ msgid "The given NAMEs are marked readonly and the values of these NAMEs may" -#~ msgstr "Die angegebenen NAMEn werden als Nur-Lesen markiert. Deren Inhalte knnen" +#~ msgid "" +#~ "The given NAMEs are marked readonly and the values of these NAMEs may" +#~ msgstr "" +#~ "Die angegebenen NAMEn werden als Nur-Lesen markiert. Deren Inhalte knnen" #~ msgid "not be changed by subsequent assignment. If the -f option is given," -#~ msgstr "nicht mehr gendert werden. Wenn die -f Option angegeben wird, dann werden nur" +#~ msgstr "" +#~ "nicht mehr gendert werden. Wenn die -f Option angegeben wird, dann " +#~ "werden nur" #~ msgid "then functions corresponding to the NAMEs are so marked. If no" -#~ msgstr "Funktionen markiert. Ohne oder mit dem `-p' Argument, werden alle auf Nur- " +#~ msgstr "" +#~ "Funktionen markiert. Ohne oder mit dem `-p' Argument, werden alle auf " +#~ "Nur- " -#~ msgid "arguments are given, or if `-p' is given, a list of all readonly names" -#~ msgstr "Lesen gesetzte Namen ausgegeben. Mit dem Argument `-n' kann die Nur-Lese" +#~ msgid "" +#~ "arguments are given, or if `-p' is given, a list of all readonly names" +#~ msgstr "" +#~ "Lesen gesetzte Namen ausgegeben. Mit dem Argument `-n' kann die Nur-Lese" -#~ msgid "is printed. An argument of `-n' says to remove the readonly property" -#~ msgstr "Eigenschaft fr die angegebenen Namen entfernt werden. Der `-a' Schalter" +#~ msgid "" +#~ "is printed. An argument of `-n' says to remove the readonly property" +#~ msgstr "" +#~ "Eigenschaft fr die angegebenen Namen entfernt werden. Der `-a' Schalter" #~ msgid "from subsequent NAMEs. The `-a' option means to treat each NAME as" -#~ msgstr "bewirkt, da jeder Name als Feldvariable behandelt wird. Das Argument `--'" +#~ msgstr "" +#~ "bewirkt, da jeder Name als Feldvariable behandelt wird. Das Argument " +#~ "`--'" #~ msgid "an array variable. An argument of `--' disables further option" #~ msgstr "unterdrckt das Auswerten weiterer Optionen." # shift -#~ msgid "The positional parameters from $N+1 ... are renamed to $1 ... If N is" -#~ msgstr "Die Positionsvariablen $N+1 ... werden nach $1 ... umbenannt. Wenn N nicht" +#~ msgid "" +#~ "The positional parameters from $N+1 ... are renamed to $1 ... If N is" +#~ msgstr "" +#~ "Die Positionsvariablen $N+1 ... werden nach $1 ... umbenannt. Wenn N " +#~ "nicht" #~ msgid "not given, it is assumed to be 1." #~ msgstr "angegeben ist, dann wird 1 verwendet." # source #~ msgid "Read and execute commands from FILENAME and return. The pathnames" -#~ msgstr "Liest und fhrt anschlieend die Kommandos in DATEINAME aus. $PATH wird" +#~ msgstr "" +#~ "Liest und fhrt anschlieend die Kommandos in DATEINAME aus. $PATH wird" #~ msgid "in $PATH are used to find the directory containing FILENAME." #~ msgstr "als Suchpfad benutzt, um DATEINAME zu finden." # suspend #~ msgid "Suspend the execution of this shell until it receives a SIGCONT" -#~ msgstr "Hlt das Ausfhren der Shell solange an, bis sie das Signal SIGCONT empfngt." +#~ msgstr "" +#~ "Hlt das Ausfhren der Shell solange an, bis sie das Signal SIGCONT " +#~ "empfngt." #~ msgid "signal. The `-f' if specified says not to complain about this" -#~ msgstr "Die `-f' Option unterdrckt eine Warnung, wenn es sich um eine Login Shell" +#~ msgstr "" +#~ "Die `-f' Option unterdrckt eine Warnung, wenn es sich um eine Login Shell" #~ msgid "being a login shell if it is; just suspend anyway." #~ msgstr "handelt und hlt auch deren Abarbeitung an." # test #~ msgid "Exits with a status of 0 (trueness) or 1 (falseness) depending on" -#~ msgstr "Liefert den Rckgabewert 0 (wahr) oder 1 (falsch), abhngig vom Ergebnis des" +#~ msgstr "" +#~ "Liefert den Rckgabewert 0 (wahr) oder 1 (falsch), abhngig vom Ergebnis " +#~ "des" #~ msgid "the evaluation of EXPR. Expressions may be unary or binary. Unary" -#~ msgstr "Ausdruckes EXPR. Die Ausdrcke knnen ein- (unr) oder zweistellig (binr) sein." +#~ msgstr "" +#~ "Ausdruckes EXPR. Die Ausdrcke knnen ein- (unr) oder zweistellig " +#~ "(binr) sein." #~ msgid "expressions are often used to examine the status of a file. There" -#~ msgstr "Einstellige Ausdrcke werden oft zum Ermitteln eines Dateizustandes verwendet." +#~ msgstr "" +#~ "Einstellige Ausdrcke werden oft zum Ermitteln eines Dateizustandes " +#~ "verwendet." #~ msgid "are string operators as well, and numeric comparison operators." -#~ msgstr "Es gibt auerden Zeichenketten- und numerische Vergleichsoperatoren." +#~ msgstr "" +#~ "Es gibt auerden Zeichenketten- und numerische Vergleichsoperatoren." #~ msgid "File operators:" #~ msgstr "Datei Operatoren:" #~ msgid " -b FILE True if file is block special." -#~ msgstr " -b DATEI Wahr, wenn der Dateiname ein Blockgert bezeichnet." +#~ msgstr "" +#~ " -b DATEI Wahr, wenn der Dateiname ein Blockgert bezeichnet." #~ msgid " -c FILE True if file is character special." -#~ msgstr " -c DATEI Wahr, wenn der Dateiname ein sequentielles Gert bezeichnet." +#~ msgstr "" +#~ " -c DATEI Wahr, wenn der Dateiname ein sequentielles Gert " +#~ "bezeichnet." #~ msgid " -d FILE True if file is a directory." #~ msgstr " -d DATEI Wahr, wenn es ein Verzeichnis ist." @@ -5076,52 +5543,76 @@ msgstr "" #~ msgstr " -e DATEI Wahr, wenn die Datei existiert." #~ msgid " -f FILE True if file exists and is a regular file." -#~ msgstr " -f DATEI Wahr, wenn die Datei existiert und eine regulre Datei ist." +#~ msgstr "" +#~ " -f DATEI Wahr, wenn die Datei existiert und eine regulre Datei " +#~ "ist." #~ msgid " -g FILE True if file is set-group-id." #~ msgstr " -g DATEI Wahr, wenn das SGID Bit gesetzt ist." #~ msgid " -h FILE True if file is a symbolic link. Use \"-L\"." -#~ msgstr " -h DATEI Wahr, wenn FILE symbolischer Verweis ist. (Besser -L verw.)" +#~ msgstr "" +#~ " -h DATEI Wahr, wenn FILE symbolischer Verweis ist. (Besser -L " +#~ "verw.)" #~ msgid " -L FILE True if file is a symbolic link." #~ msgstr " -L DATEI Wahr, wenn FIIE einen symbolischen Verweis ist." #~ msgid " -k FILE True if file has its \"sticky\" bit set." -#~ msgstr " -k DATEI Wahr, wenn nur der Besitzer die Datei ndern darf (sticky)." +#~ msgstr "" +#~ " -k DATEI Wahr, wenn nur der Besitzer die Datei ndern darf " +#~ "(sticky)." #~ msgid " -p FILE True if file is a named pipe." -#~ msgstr " -p DATEI Wahr, wenn FILE eine benannte Pipeline (named pipe) ist." +#~ msgstr "" +#~ " -p DATEI Wahr, wenn FILE eine benannte Pipeline (named pipe) " +#~ "ist." #~ msgid " -r FILE True if file is readable by you." -#~ msgstr " -r DATEI Wahr, wenn die Datei vom aktuellen Benutzer lesbar ist." +#~ msgstr "" +#~ " -r DATEI Wahr, wenn die Datei vom aktuellen Benutzer lesbar ist." #~ msgid " -s FILE True if file exists and is not empty." -#~ msgstr " -s DATEI Wahr, wenn die Datei existiert und nicht leer ist." +#~ msgstr "" +#~ " -s DATEI Wahr, wenn die Datei existiert und nicht leer ist." #~ msgid " -S FILE True if file is a socket." #~ msgstr " -S DATEI Wahr, wenn die Datei ein \"Socket\" ist." #~ msgid " -t FD True if FD is opened on a terminal." -#~ msgstr " -t FD Wahr, wenn die Dateinummer FD fr ein Terminal geffnet ist." +#~ msgstr "" +#~ " -t FD Wahr, wenn die Dateinummer FD fr ein Terminal " +#~ "geffnet ist." #~ msgid " -u FILE True if the file is set-user-id." -#~ msgstr " -u DATEI Wahr, wenn fr diese Datei das SUID Bit gesetzt ist." +#~ msgstr "" +#~ " -u DATEI Wahr, wenn fr diese Datei das SUID Bit gesetzt ist." #~ msgid " -w FILE True if the file is writable by you." -#~ msgstr " -w DATEI Wahr, wenn die Datei vom aktuellen Benutzer schreibbar ist." +#~ msgstr "" +#~ " -w DATEI Wahr, wenn die Datei vom aktuellen Benutzer schreibbar " +#~ "ist." #~ msgid " -x FILE True if the file is executable by you." -#~ msgstr " -x DATEI Wahr, wenn die Datei vom aktuellen Benutzer ausfhrbar ist." +#~ msgstr "" +#~ " -x DATEI Wahr, wenn die Datei vom aktuellen Benutzer ausfhrbar " +#~ "ist." #~ msgid " -O FILE True if the file is effectively owned by you." -#~ msgstr " -O DATEI Wahr, wenn der aktuelle Benutzer Eigentmer der Datei ist." +#~ msgstr "" +#~ " -O DATEI Wahr, wenn der aktuelle Benutzer Eigentmer der Datei " +#~ "ist." -#~ msgid " -G FILE True if the file is effectively owned by your group." -#~ msgstr " -G DATEI Wahr, wenn GID des Benutzers und der Datei bereinstimmen." +#~ msgid "" +#~ " -G FILE True if the file is effectively owned by your group." +#~ msgstr "" +#~ " -G DATEI Wahr, wenn GID des Benutzers und der Datei " +#~ "bereinstimmen." #~ msgid " FILE1 -nt FILE2 True if file1 is newer than (according to" -#~ msgstr " DATEI1 -nt DATEI2 Wahr, wenn der letzte nderungszeitpunkt von DATEI1 jnger" +#~ msgstr "" +#~ " DATEI1 -nt DATEI2 Wahr, wenn der letzte nderungszeitpunkt von DATEI1 " +#~ "jnger" #~ msgid " modification date) file2." #~ msgstr " ist als der von DATEI2." @@ -5130,7 +5621,8 @@ msgstr "" #~ msgstr " DATEI1 -ot DATEI2 Wahr, wenn DATEI1 lter ist als DATEI2." #~ msgid " FILE1 -ef FILE2 True if file1 is a hard link to file2." -#~ msgstr " DATEI1 -ef DATEI2 Wahr, wenn beide Inodes bereinstimmen (hard link)." +#~ msgstr "" +#~ " DATEI1 -ef DATEI2 Wahr, wenn beide Inodes bereinstimmen (hard link)." #~ msgid "String operators:" #~ msgstr "Operatoren fr Zeichenketten (Strings):" @@ -5142,7 +5634,9 @@ msgstr "" #~ msgstr " -n STRING" #~ msgid " STRING True if string is not empty." -#~ msgstr " STRING Wahr, wenn die Lnge der Zeichenkette grer als Null ist." +#~ msgstr "" +#~ " STRING Wahr, wenn die Lnge der Zeichenkette grer als Null " +#~ "ist." #~ msgid " STRING1 = STRING2" #~ msgstr " STRING1 = STRING2" @@ -5154,19 +5648,26 @@ msgstr "" #~ msgstr " STRING1 != STRING2" #~ msgid " True if the strings are not equal." -#~ msgstr " Wahr, wenn die Zeichenketten unterschiedlich sind." +#~ msgstr "" +#~ " Wahr, wenn die Zeichenketten unterschiedlich sind." #~ msgid " STRING1 < STRING2" #~ msgstr " STRING1 < STRING2" -#~ msgid " True if STRING1 sorts before STRING2 lexicographically" -#~ msgstr " Wahr, wenn STRING1 vor STRING2 alphabetisch geordnet ist." +#~ msgid "" +#~ " True if STRING1 sorts before STRING2 lexicographically" +#~ msgstr "" +#~ " Wahr, wenn STRING1 vor STRING2 alphabetisch geordnet " +#~ "ist." #~ msgid " STRING1 > STRING2" #~ msgstr " STRING1 > STRING2" -#~ msgid " True if STRING1 sorts after STRING2 lexicographically" -#~ msgstr " Wahr, wenn STRING1 nach STRING2 alphabetisch geordnet ist." +#~ msgid "" +#~ " True if STRING1 sorts after STRING2 lexicographically" +#~ msgstr "" +#~ " Wahr, wenn STRING1 nach STRING2 alphabetisch geordnet " +#~ "ist." #~ msgid "Other operators:" #~ msgstr "Andere Operatoren:" @@ -5175,123 +5676,176 @@ msgstr "" #~ msgstr " ! EXPR Wahr, wenn der Ausdruck EXPR `falsch' liefert." #~ msgid " EXPR1 -a EXPR2 True if both expr1 AND expr2 are true." -#~ msgstr " EXPR1 -a EXPR2 Wahr, wenn die Ausdrcke EXPR1 und EXPR2 `wahr' liefern." +#~ msgstr "" +#~ " EXPR1 -a EXPR2 Wahr, wenn die Ausdrcke EXPR1 und EXPR2 `wahr' " +#~ "liefern." #~ msgid " EXPR1 -o EXPR2 True if either expr1 OR expr2 is true." -#~ msgstr " EXPR1 -o EXPR2 Wahr, wenn entweder EXPR1 oder EXPR2 wahr liefern." +#~ msgstr "" +#~ " EXPR1 -o EXPR2 Wahr, wenn entweder EXPR1 oder EXPR2 wahr liefern." #~ msgid " arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne," -#~ msgstr " arg1 OP arg2 Arithmetische Operatoren. OP kann -eq, -ne, -lt, -le, -gt" +#~ msgstr "" +#~ " arg1 OP arg2 Arithmetische Operatoren. OP kann -eq, -ne, -lt, -le, -" +#~ "gt" #~ msgid " -lt, -le, -gt, or -ge." #~ msgstr " oder -ge sein." #~ msgid "Arithmetic binary operators return true if ARG1 is equal, not-equal," -#~ msgstr "Diese binren arithmetischen Operatoren liefern Wahr, wenn ARG1 gleich," +#~ msgstr "" +#~ "Diese binren arithmetischen Operatoren liefern Wahr, wenn ARG1 gleich," -#~ msgid "less-than, less-than-or-equal, greater-than, or greater-than-or-equal" -#~ msgstr "ungleich, kleiner als, kleiner gleich, grer als oder grer gleich" +#~ msgid "" +#~ "less-than, less-than-or-equal, greater-than, or greater-than-or-equal" +#~ msgstr "" +#~ "ungleich, kleiner als, kleiner gleich, grer als oder grer gleich" #~ msgid "than ARG2." #~ msgstr "ARG2 ist." # [ #~ msgid "This is a synonym for the \"test\" builtin, but the last" -#~ msgstr "Dies ist ein Synonym fr die Shellfunktion test. Das letzte Argument mu ein" +#~ msgstr "" +#~ "Dies ist ein Synonym fr die Shellfunktion test. Das letzte Argument mu " +#~ "ein" #~ msgid "argument must be a literal `]', to match the opening `['." #~ msgstr "`]' sein, das mit dem ffnenden `[' korrespondiert." # times #~ msgid "Print the accumulated user and system times for processes run from" -#~ msgstr "Gibt die verbrauchte Benutzer- und Systemzeit fr die Shell und der von" +#~ msgstr "" +#~ "Gibt die verbrauchte Benutzer- und Systemzeit fr die Shell und der von" #~ msgid "the shell." #~ msgstr "ihr gestarteten Prozesse aus." # trap #~ msgid "The command ARG is to be read and executed when the shell receives" -#~ msgstr "Die Shell fngt die in SIG_SPEC angegebenen Signale ab fhrt das Kommando ARG" +#~ msgstr "" +#~ "Die Shell fngt die in SIG_SPEC angegebenen Signale ab fhrt das Kommando " +#~ "ARG" #~ msgid "signal(s) SIGNAL_SPEC. If ARG is absent all specified signals are" -#~ msgstr "aus. Wenn kein ARG angegeben ist, werden alle bezeichneten Signale zurck-" +#~ msgstr "" +#~ "aus. Wenn kein ARG angegeben ist, werden alle bezeichneten Signale " +#~ "zurck-" #~ msgid "reset to their original values. If ARG is the null string each" -#~ msgstr "gesetzt. Ist ARG eine leere Zeichenkette, dann wird jedes angegebne Sig-" +#~ msgstr "" +#~ "gesetzt. Ist ARG eine leere Zeichenkette, dann wird jedes angegebne Sig-" #~ msgid "SIGNAL_SPEC is ignored by the shell and by the commands it invokes." -#~ msgstr "nal von der Shell und den von ihr aufgerufenen Kommandos ignoriert. Wenn das" +#~ msgstr "" +#~ "nal von der Shell und den von ihr aufgerufenen Kommandos ignoriert. Wenn " +#~ "das" #~ msgid "If SIGNAL_SPEC is EXIT (0) the command ARG is executed on exit from" -#~ msgstr "Signal EXIT (0) abgefangen wird, dann wird ARG bei Verlassen der Shell ausge-" +#~ msgstr "" +#~ "Signal EXIT (0) abgefangen wird, dann wird ARG bei Verlassen der Shell " +#~ "ausge-" #~ msgid "the shell. If SIGNAL_SPEC is DEBUG, ARG is executed after every" -#~ msgstr "fhrt. Durch Abfangen des Signals DEBUG, wird ARG nach jedem Kommando" +#~ msgstr "" +#~ "fhrt. Durch Abfangen des Signals DEBUG, wird ARG nach jedem Kommando" #~ msgid "command. If ARG is `-p' then the trap commands associated with" -#~ msgstr "aufgerufen. Mit `-p' werden Kommandos angezeigt, die fr jedes abgefangene" +#~ msgstr "" +#~ "aufgerufen. Mit `-p' werden Kommandos angezeigt, die fr jedes " +#~ "abgefangene" #~ msgid "each SIGNAL_SPEC are displayed. If no arguments are supplied or if" -#~ msgstr "Signal ausgefhrt werden. Wenn keine Argumente angegeben sind, oder wenn das" +#~ msgstr "" +#~ "Signal ausgefhrt werden. Wenn keine Argumente angegeben sind, oder wenn " +#~ "das" #~ msgid "only `-p' is given, trap prints the list of commands associated with" -#~ msgstr "Argument `-p' angegeben ist, wird eine Liste der Kommandos fr jedes abgefan-" +#~ msgstr "" +#~ "Argument `-p' angegeben ist, wird eine Liste der Kommandos fr jedes " +#~ "abgefan-" -#~ msgid "each signal number. SIGNAL_SPEC is either a signal name in " -#~ msgstr "gene Signal angezeigt. SIGNAL_SPEC ist entweder ein Signalname (aus signal.h)" +#~ msgid "" +#~ "each signal number. SIGNAL_SPEC is either a signal name in " +#~ msgstr "" +#~ "gene Signal angezeigt. SIGNAL_SPEC ist entweder ein Signalname (aus " +#~ "signal.h)" -#~ msgid "or a signal number. `trap -l' prints a list of signal names and their" -#~ msgstr "oder eine Signalnummer. `trap -l' gibt eine Liste der Signalnamen und der ent-" +#~ msgid "" +#~ "or a signal number. `trap -l' prints a list of signal names and their" +#~ msgstr "" +#~ "oder eine Signalnummer. `trap -l' gibt eine Liste der Signalnamen und " +#~ "der ent-" #~ msgid "corresponding numbers. Note that a signal can be sent to the shell" -#~ msgstr "sprechenden Nummern aus. Ein Signal kann an eine Shell mit dem Befehl \"kill" +#~ msgstr "" +#~ "sprechenden Nummern aus. Ein Signal kann an eine Shell mit dem Befehl " +#~ "\"kill" #~ msgid "with \"kill -signal $$\"." #~ msgstr "-signal $$\" gesendet werden." # type #~ msgid "For each NAME, indicate how it would be interpreted if used as a" -#~ msgstr "Gibt aus, wie der angegebene NAME interpretiert wrde, wenn er in der" +#~ msgstr "" +#~ "Gibt aus, wie der angegebene NAME interpretiert wrde, wenn er in der" #~ msgid "If the -t option is used, returns a single word which is one of" -#~ msgstr "Die Option -t bewirkt, da eins der Worte: `alias', `keyword', `function'," +#~ msgstr "" +#~ "Die Option -t bewirkt, da eins der Worte: `alias', `keyword', `function'," -#~ msgid "`alias', `keyword', `function', `builtin', `file' or `', if NAME is an" -#~ msgstr "`file' oder `' ausgegeben wird, wenn NAME ein Alias, ein in der Shell reser-" +#~ msgid "" +#~ "`alias', `keyword', `function', `builtin', `file' or `', if NAME is an" +#~ msgstr "" +#~ "`file' oder `' ausgegeben wird, wenn NAME ein Alias, ein in der Shell " +#~ "reser-" -#~ msgid "alias, shell reserved word, shell function, shell builtin, disk file," -#~ msgstr "viertes Wort, eine Skriptfunktion, eine eingebaute Shellfunktion, eine Datei" +#~ msgid "" +#~ "alias, shell reserved word, shell function, shell builtin, disk file," +#~ msgstr "" +#~ "viertes Wort, eine Skriptfunktion, eine eingebaute Shellfunktion, eine " +#~ "Datei" #~ msgid "or unfound, respectively." #~ msgstr "ist oder kein Kommandotyp gefunden wurde." #~ msgid "If the -p flag is used, either returns the name of the disk file" -#~ msgstr "Wenn der -p Schalter angegeben ist, dann wird, wenn eine entsprechende Datei" +#~ msgstr "" +#~ "Wenn der -p Schalter angegeben ist, dann wird, wenn eine entsprechende " +#~ "Datei" #~ msgid "that would be executed, or nothing if -t would not return `file'." #~ msgstr "existiert, ihr Name ausgegegeben," #~ msgid "If the -a flag is used, displays all of the places that contain an" -#~ msgstr "Mit dem -a Schalter werden alle ausfhrbaren Dateien mit dem Namen `file'" +#~ msgstr "" +#~ "Mit dem -a Schalter werden alle ausfhrbaren Dateien mit dem Namen `file'" -#~ msgid "executable named `file'. This includes aliases and functions, if and" -#~ msgstr "angezeigt. Dieses schliet Aliase und Funktionen ein, aber nur dann" +#~ msgid "" +#~ "executable named `file'. This includes aliases and functions, if and" +#~ msgstr "" +#~ "angezeigt. Dieses schliet Aliase und Funktionen ein, aber nur dann" #~ msgid "only if the -p flag is not also used." #~ msgstr "wenn nicht gleichzeitig der -p Schalter gesetzt ist." #~ msgid "Type accepts -all, -path, and -type in place of -a, -p, and -t," -#~ msgstr "Type akzeptiert auch die Argumente -all, -path und -type an Stelle von -a," +#~ msgstr "" +#~ "Type akzeptiert auch die Argumente -all, -path und -type an Stelle von -a," #~ msgid "respectively." #~ msgstr "-p und -t." # ulimit #~ msgid "Ulimit provides control over the resources available to processes" -#~ msgstr "Ulimit steuert die Ressourcen, die den von der Shell aufgerufenen Prozessen" +#~ msgstr "" +#~ "Ulimit steuert die Ressourcen, die den von der Shell aufgerufenen " +#~ "Prozessen" #~ msgid "started by the shell, on systems that allow such control. If an" -#~ msgstr "zur Verfgung stehen, wenn das System Ressourcensteuerung untersttzt. Wenn" +#~ msgstr "" +#~ "zur Verfgung stehen, wenn das System Ressourcensteuerung untersttzt. " +#~ "Wenn" #~ msgid "option is given, it is interpreted as follows:" #~ msgstr "eine Option angegebe ist, dann wird sie wie folgt interpretiert:" @@ -5313,7 +5867,9 @@ msgstr "" #~ msgstr " -d\tDie maximale Gre des Datensegmentes eines Prozesses." #~ msgid " -m\tthe maximum resident set size" -#~ msgstr " -m\tMaximale Gre des nicht auszulagenden (residenten) Prozespeichers." +#~ msgstr "" +#~ " -m\tMaximale Gre des nicht auszulagenden (residenten) " +#~ "Prozespeichers." #~ msgid " -s\tthe maximum stack size" #~ msgstr " -s\tDie maximale Gre des Stapelspeichers." @@ -5322,7 +5878,8 @@ msgstr "" #~ msgstr " -t\tDie maximal verfgbare CPU-Zeit (in Sekunden)." #~ msgid " -f\tthe maximum size of files created by the shell" -#~ msgstr " -f\tDie maximal erlaubte Gre fr von der Shell erzeugte Dateien." +#~ msgstr "" +#~ " -f\tDie maximal erlaubte Gre fr von der Shell erzeugte Dateien." #~ msgid " -p\tthe pipe buffer size" #~ msgstr " -p\tDie Gre des Pipeline-Puffers." @@ -5337,16 +5894,21 @@ msgstr "" #~ msgstr " -v\tDie Gre des virtuellen Arbeitsspeichers." #~ msgid "If LIMIT is given, it is the new value of the specified resource." -#~ msgstr "Wenn eine Grenze angegeben ist, wird die Resouce auf diesen Wert gesetzt." +#~ msgstr "" +#~ "Wenn eine Grenze angegeben ist, wird die Resouce auf diesen Wert gesetzt." #~ msgid "Otherwise, the current value of the specified resource is printed." -#~ msgstr "Sonst wird der gegenwrtig eingestellte Wert ausgegeben. Wenn keine Option" +#~ msgstr "" +#~ "Sonst wird der gegenwrtig eingestellte Wert ausgegeben. Wenn keine " +#~ "Option" #~ msgid "If no option is given, then -f is assumed. Values are in 1k" -#~ msgstr "angegeben ist wird -f verwendet. Die Einheit ist 1k auer fr -t, deren" +#~ msgstr "" +#~ "angegeben ist wird -f verwendet. Die Einheit ist 1k auer fr -t, deren" #~ msgid "increments, except for -t, which is in seconds, -p, which is in" -#~ msgstr "Wert in Sekunden angegeben wird, -p, dessen Einheit 512 bytes ist und -u," +#~ msgstr "" +#~ "Wert in Sekunden angegeben wird, -p, dessen Einheit 512 bytes ist und -u," #~ msgid "increments of 512 bytes, and -u, which is an unscaled number of" #~ msgstr "fr das die Anzahl der Prozesse verwendet" @@ -5355,36 +5917,55 @@ msgstr "" #~ msgstr "wird." # umask -#~ msgid "The user file-creation mask is set to MODE. If MODE is omitted, or if" -#~ msgstr "Die Dateierzeugungsmaske wird auf MODE gesetzt. Wenn MODE nicht, oder -S" +#~ msgid "" +#~ "The user file-creation mask is set to MODE. If MODE is omitted, or if" +#~ msgstr "" +#~ "Die Dateierzeugungsmaske wird auf MODE gesetzt. Wenn MODE nicht, oder -S" -#~ msgid "`-S' is supplied, the current value of the mask is printed. The `-S'" -#~ msgstr "angegeben ist, dann wird die aktuelle Dateierzeugungsmaske ausgegeben." +#~ msgid "" +#~ "`-S' is supplied, the current value of the mask is printed. The `-S'" +#~ msgstr "" +#~ "angegeben ist, dann wird die aktuelle Dateierzeugungsmaske ausgegeben." -#~ msgid "option makes the output symbolic; otherwise an octal number is output." -#~ msgstr "Die `-S' Option bewirkt, da die symbolische Entsprechung ausgegeben wird. " +#~ msgid "" +#~ "option makes the output symbolic; otherwise an octal number is output." +#~ msgstr "" +#~ "Die `-S' Option bewirkt, da die symbolische Entsprechung ausgegeben " +#~ "wird. " #~ msgid "If MODE begins with a digit, it is interpreted as an octal number," -#~ msgstr "Wenn MODE mit einer Ziffer beginnt, wird diese als Oktalzahl interpretiert." +#~ msgstr "" +#~ "Wenn MODE mit einer Ziffer beginnt, wird diese als Oktalzahl " +#~ "interpretiert." -#~ msgid "otherwise it is a symbolic mode string like that accepted by chmod(1)." -#~ msgstr "Ansonsten wird eine symbolische Notation (analog chmod(1)) angenommen." +#~ msgid "" +#~ "otherwise it is a symbolic mode string like that accepted by chmod(1)." +#~ msgstr "" +#~ "Ansonsten wird eine symbolische Notation (analog chmod(1)) angenommen." # wait -#~ msgid "Wait for the specified process and report its termination status. If" -#~ msgstr "Wartet auf das Beenden der angegebenen Prozesse und gibt deren Rckgabewert" +#~ msgid "" +#~ "Wait for the specified process and report its termination status. If" +#~ msgstr "" +#~ "Wartet auf das Beenden der angegebenen Prozesse und gibt deren " +#~ "Rckgabewert" #~ msgid "N is not given, all currently active child processes are waited for," #~ msgstr "aus. Wenn keine Prozesse angegeben sind, wird auf alle aktiven" #~ msgid "and the return code is zero. N may be a process ID or a job" -#~ msgstr "Hintergrundprozesse gewartet und Null zurckgegeben. An wait knnen" +#~ msgstr "" +#~ "Hintergrundprozesse gewartet und Null zurckgegeben. An wait knnen" #~ msgid "specification; if a job spec is given, all processes in the job's" -#~ msgstr "Prozenummern und Jobbezeichnungen bergeben werden. Wenn Jobbezeichnungen" +#~ msgstr "" +#~ "Prozenummern und Jobbezeichnungen bergeben werden. Wenn " +#~ "Jobbezeichnungen" #~ msgid "pipeline are waited for." -#~ msgstr "angegeben sind, dann wird auf alle Prozesse in der Job-Pipeline gewartet und" +#~ msgstr "" +#~ "angegeben sind, dann wird auf alle Prozesse in der Job-Pipeline gewartet " +#~ "und" #~ msgid "and the return code is zero. N is a process ID; if it is not given," #~ msgstr "Null zurckgegeben." @@ -5394,12 +5975,15 @@ msgstr "" # for #~ msgid "The `for' loop executes a sequence of commands for each member in a" -#~ msgstr "`for' fhrt eine Reihe von Kommandos fr jeden Eintrag einer Liste aus." +#~ msgstr "" +#~ "`for' fhrt eine Reihe von Kommandos fr jeden Eintrag einer Liste aus." -#~ msgid "list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is" +#~ msgid "" +#~ "list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is" #~ msgstr "Ohne `in WORTLISTE' wird als Argument `in \"$@\"' verwendet." -#~ msgid "assumed. For each element in WORDS, NAME is set to that element, and" +#~ msgid "" +#~ "assumed. For each element in WORDS, NAME is set to that element, and" #~ msgstr "NAME wird nacheinander ein Element aus WORTLISTE zugewiesen" #~ msgid "the COMMANDS are executed." @@ -5407,34 +5991,48 @@ msgstr "" # select #~ msgid "The WORDS are expanded, generating a list of words. The" -#~ msgstr "Die WORTE werden erweitert und erzeugen eine Wortliste. Diese wird als" +#~ msgstr "" +#~ "Die WORTE werden erweitert und erzeugen eine Wortliste. Diese wird als" #~ msgid "set of expanded words is printed on the standard error, each" #~ msgstr "numerierte Liste auf dem Standardfehlerkanal ausgegeben." #~ msgid "preceded by a number. If `in WORDS' is not present, `in \"$@\"'" -#~ msgstr "Wenn `in WORTE' nicht angegeben ist, dann wird `in \"$@\"' verwendet." +#~ msgstr "" +#~ "Wenn `in WORTE' nicht angegeben ist, dann wird `in \"$@\"' verwendet." #~ msgid "is assumed. The PS3 prompt is then displayed and a line read" -#~ msgstr "Das PS3-Promt wird angezeigt und eine Zeile von der Standardeingabe gelesen." +#~ msgstr "" +#~ "Das PS3-Promt wird angezeigt und eine Zeile von der Standardeingabe " +#~ "gelesen." #~ msgid "from the standard input. If the line consists of the number" -#~ msgstr "Wenn die gelesene Zeile eine Zeilennummer der angezeigten Liste enhlt, dann" +#~ msgstr "" +#~ "Wenn die gelesene Zeile eine Zeilennummer der angezeigten Liste enhlt, " +#~ "dann" #~ msgid "corresponding to one of the displayed words, then NAME is set" #~ msgstr "wird NAME entsprechend dem WORT in der bezeichneten Zeile gesetzt." #~ msgid "to that word. If the line is empty, WORDS and the prompt are" -#~ msgstr "Wird eine leere Zeichenkette gelesen, dann wird die Liste erneut angezeigt." +#~ msgstr "" +#~ "Wird eine leere Zeichenkette gelesen, dann wird die Liste erneut " +#~ "angezeigt." #~ msgid "redisplayed. If EOF is read, the command completes. Any other" -#~ msgstr "Mir einem EOF Zeichen wird die Eingabe abgebrochen. Jeder andere Inhalt der" +#~ msgstr "" +#~ "Mir einem EOF Zeichen wird die Eingabe abgebrochen. Jeder andere Inhalt " +#~ "der" #~ msgid "value read causes NAME to be set to null. The line read is saved" -#~ msgstr "Zeichenkette bewirkt, da NAME auf Null gesetzt wird. Die gelesene Zeile wird" +#~ msgstr "" +#~ "Zeichenkette bewirkt, da NAME auf Null gesetzt wird. Die gelesene Zeile " +#~ "wird" #~ msgid "in the variable REPLY. COMMANDS are executed after each selection" -#~ msgstr "in der Variable REPLY gespeichert. Die KOMMANDOS werden so lange wiederholt," +#~ msgstr "" +#~ "in der Variable REPLY gespeichert. Die KOMMANDOS werden so lange " +#~ "wiederholt," #~ msgid "until a break or return command is executed." #~ msgstr "bis die Schleife mit break oder return verlassen wird." @@ -5447,34 +6045,47 @@ msgstr "" #~ msgstr "Das Zeichen `|' trennt mehrere Muster." # if -#~ msgid "The if COMMANDS are executed. If the exit status is zero, then the then" -#~ msgstr "Die KOMMANDOS werden ausgewertet. Ist der Rckgabewert Null, dann werden die" +#~ msgid "" +#~ "The if COMMANDS are executed. If the exit status is zero, then the then" +#~ msgstr "" +#~ "Die KOMMANDOS werden ausgewertet. Ist der Rckgabewert Null, dann werden " +#~ "die" -#~ msgid "COMMANDS are executed. Otherwise, each of the elif COMMANDS are executed" -#~ msgstr "then KOMMANDOS ausgefhrt. Ansonsten werden die elif KOMMANDOS der Reihe nach" +#~ msgid "" +#~ "COMMANDS are executed. Otherwise, each of the elif COMMANDS are executed" +#~ msgstr "" +#~ "then KOMMANDOS ausgefhrt. Ansonsten werden die elif KOMMANDOS der Reihe " +#~ "nach" -#~ msgid "in turn, and if the exit status is zero, the corresponding then COMMANDS" -#~ msgstr "ausgewertet und bei einem Rckgabewert Null die dazugehrigen KOMMANDOS" +#~ msgid "" +#~ "in turn, and if the exit status is zero, the corresponding then COMMANDS" +#~ msgstr "" +#~ "ausgewertet und bei einem Rckgabewert Null die dazugehrigen KOMMANDOS" -#~ msgid "are executed and the if command completes. Otherwise, the else COMMANDS" +#~ msgid "" +#~ "are executed and the if command completes. Otherwise, the else COMMANDS" #~ msgstr "ausgefhrt und if beendet. Sonst wird, wenn ein else Kommandozweig" -#~ msgid "are executed, if present. The exit status is the exit status of the last" -#~ msgstr "existiert, dieser ausgefhrt. Der Exitstatus ist der des letzten Kommandos" +#~ msgid "" +#~ "are executed, if present. The exit status is the exit status of the last" +#~ msgstr "" +#~ "existiert, dieser ausgefhrt. Der Exitstatus ist der des letzten Kommandos" #~ msgid "command executed, or zero if no condition tested true." #~ msgstr "oder Null, wenn keine Bedingung wahr ergab." # while #~ msgid "Expand and execute COMMANDS as long as the final command in the" -#~ msgstr "Wiederholt den Schleifenkrper `do KOMMANDOS done' so lange die letzte" +#~ msgstr "" +#~ "Wiederholt den Schleifenkrper `do KOMMANDOS done' so lange die letzte" #~ msgid "`while' COMMANDS has an exit status of zero." #~ msgstr "Kommando `while KOMMANDOS' einen Rckkehrstatus Null liefert." # until #~ msgid "`until' COMMANDS has an exit status which is not zero." -#~ msgstr "Kommando in `until KOMMANDOS' einen Rckkehrstatus ungleich Null liefert." +#~ msgstr "" +#~ "Kommando in `until KOMMANDOS' einen Rckkehrstatus ungleich Null liefert." # function #~ msgid "Create a simple command invoked by NAME which runs COMMANDS." @@ -5488,20 +6099,29 @@ msgstr "" # grouping_braces #~ msgid "Run a set of commands in a group. This is one way to redirect an" -#~ msgstr "Fhrt Kommandos in einer Gruppe aus. Das ist eine Mglichkeit die Ausgabe von" +#~ msgstr "" +#~ "Fhrt Kommandos in einer Gruppe aus. Das ist eine Mglichkeit die " +#~ "Ausgabe von" #~ msgid "entire set of commands." #~ msgstr "einer Gruppe Kommandos umzuleiten." # fg_percent #~ msgid "This is similar to the `fg' command. Resume a stopped or background" -#~ msgstr "Ist hnlich dem `fg' Kommando. Nimmt einen angehaltenen oder hintergrund Job" +#~ msgstr "" +#~ "Ist hnlich dem `fg' Kommando. Nimmt einen angehaltenen oder hintergrund " +#~ "Job" #~ msgid "job. If you specifiy DIGITS, then that job is used. If you specify" -#~ msgstr "wieder auf. Wenn eine Jobnummer angegeben ist, dann wird dieser aufgenommen." +#~ msgstr "" +#~ "wieder auf. Wenn eine Jobnummer angegeben ist, dann wird dieser " +#~ "aufgenommen." -#~ msgid "WORD, then the job whose name begins with WORD is used. Following the" -#~ msgstr "Wenn eine Zeichenkette angegeben ist, dann wird der Job der mit diesen Zeichen" +#~ msgid "" +#~ "WORD, then the job whose name begins with WORD is used. Following the" +#~ msgstr "" +#~ "Wenn eine Zeichenkette angegeben ist, dann wird der Job der mit diesen " +#~ "Zeichen" #~ msgid "job specification with a `&' places the job in the background." #~ msgstr "beginnt wieder aufgenommen. `&' bringt den Job in den Hintergrund." @@ -5511,7 +6131,9 @@ msgstr "" #~ msgstr "BASH_VERSION Versionsnummer der Bash." #~ msgid "CDPATH A colon separated list of directories to search" -#~ msgstr "CDPATH Eine durch Doppelpunkt getrennte Liste von Verzeichnissen, die" +#~ msgstr "" +#~ "CDPATH Eine durch Doppelpunkt getrennte Liste von " +#~ "Verzeichnissen, die" #~ msgid "\t\twhen the argument to `cd' is not found in the current" #~ msgstr "\t\tdurchsucht werden, wenn das Argument von `cd' nicht im" @@ -5519,14 +6141,17 @@ msgstr "" #~ msgid "\t\tdirectory." #~ msgstr "\t\taktuellen Verzeichnis gefunden wird." -#~ msgid "HISTFILE The name of the file where your command history is stored." +#~ msgid "" +#~ "HISTFILE The name of the file where your command history is stored." #~ msgstr "HISTFILE Datei, die den Kommandozeilenspeicher enthlt. " #~ msgid "HISTFILESIZE The maximum number of lines this file can contain." -#~ msgstr "HISTFILESIZE Maximale Zeilenanzahl, die diese Datei enthalten darf." +#~ msgstr "" +#~ "HISTFILESIZE Maximale Zeilenanzahl, die diese Datei enthalten darf." #~ msgid "HISTSIZE The maximum number of history lines that a running" -#~ msgstr "HISTSIZE Maximale Anzahl von Zeilen, auf die der Historymechanismus" +#~ msgstr "" +#~ "HISTSIZE Maximale Anzahl von Zeilen, auf die der Historymechanismus" #~ msgid "\t\tshell can access." #~ msgstr "\t\tder Shell zurckgreifen kann." @@ -5534,11 +6159,15 @@ msgstr "" #~ msgid "HOME The complete pathname to your login directory." #~ msgstr "HOME Heimatverzeichnis des aktuellen Benutzers." -#~ msgid "HOSTTYPE The type of CPU this version of Bash is running under." -#~ msgstr "HOSTTYPE CPU-Typ des Rechners, auf dem die Bash gegenwrtig luft." +#~ msgid "" +#~ "HOSTTYPE The type of CPU this version of Bash is running under." +#~ msgstr "" +#~ "HOSTTYPE CPU-Typ des Rechners, auf dem die Bash gegenwrtig luft." -#~ msgid "IGNOREEOF Controls the action of the shell on receipt of an EOF" -#~ msgstr "IGNOREEOF Legt die Reaktion der Shell auf ein EOF-Zeichen fest." +#~ msgid "" +#~ "IGNOREEOF Controls the action of the shell on receipt of an EOF" +#~ msgstr "" +#~ "IGNOREEOF Legt die Reaktion der Shell auf ein EOF-Zeichen fest." #~ msgid "\t\tcharacter as the sole input. If set, then the value" #~ msgstr "\t\tWenn die Variable eine ganze Zahl enthlt, wird diese Anzahl" @@ -5553,16 +6182,19 @@ msgstr "" #~ msgstr "\t\tsignalisiert EOF das Ende der Eingabe." #~ msgid "MAILCHECK\tHow often, in seconds, Bash checks for new mail." -#~ msgstr "MAILCHECK\tZeitintervall [s], in dem nach angekommener Post gesucht wird." +#~ msgstr "" +#~ "MAILCHECK\tZeitintervall [s], in dem nach angekommener Post gesucht wird." #~ msgid "MAILPATH\tA colon-separated list of filenames which Bash checks" -#~ msgstr "MAILPATH\tEine durch Doppelpunkt getrennte Liste von Dateien, die nach" +#~ msgstr "" +#~ "MAILPATH\tEine durch Doppelpunkt getrennte Liste von Dateien, die nach" #~ msgid "\t\tfor new mail." #~ msgstr "\t\tneu angekommener Post durchsucht werden." #~ msgid "OSTYPE\t\tThe version of Unix this version of Bash is running on." -#~ msgstr "OSTYPE\t\tBetriebssystemversion, auf der die Bash gegenwrtig luft." +#~ msgstr "" +#~ "OSTYPE\t\tBetriebssystemversion, auf der die Bash gegenwrtig luft." #~ msgid "PATH A colon-separated list of directories to search when" #~ msgstr "PATH\t\tDurch Doppelpunkt getrennte Liste von Verzeichnissen, die " @@ -5571,22 +6203,29 @@ msgstr "" #~ msgstr "\t\tnach Kommandos durchsucht werden." #~ msgid "PROMPT_COMMAND A command to be executed before the printing of each" -#~ msgstr "PROMPT_COMMAND Kommando, das vor der Anzeige einer primren Eingabeaufforderung" +#~ msgstr "" +#~ "PROMPT_COMMAND Kommando, das vor der Anzeige einer primren " +#~ "Eingabeaufforderung" #~ msgid "\t\tprimary prompt." #~ msgstr "\t\t(PS1) ausgefhrt wird." #~ msgid "PS1 The primary prompt string." -#~ msgstr "PS1 Zeichenkette, die die primre Eingabeaufforderung enthlt." +#~ msgstr "" +#~ "PS1 Zeichenkette, die die primre Eingabeaufforderung enthlt." #~ msgid "PS2 The secondary prompt string." -#~ msgstr "PS2 Zeichenkette, die die sekundre Eingabeaufforderung enthlt." +#~ msgstr "" +#~ "PS2 Zeichenkette, die die sekundre Eingabeaufforderung " +#~ "enthlt." #~ msgid "TERM The name of the current terminal type." #~ msgstr "TERM Name des aktuellen Terminaltyps." #~ msgid "auto_resume Non-null means a command word appearing on a line by" -#~ msgstr "auto_resume Ein Wert ungleich Null bewirkt, da ein einzelnes Kommando auf" +#~ msgstr "" +#~ "auto_resume Ein Wert ungleich Null bewirkt, da ein einzelnes " +#~ "Kommando auf" #~ msgid "\t\titself is first looked for in the list of currently" #~ msgstr "\t\teiner Zeile zunchst in der Liste gegenwrtig gestoppter Jobs" @@ -5612,14 +6251,17 @@ msgstr "" #~ msgid "command_oriented_history" #~ msgstr "command_oriented_history" -#~ msgid " Non-null means to save multiple-line commands together on" +#~ msgid "" +#~ " Non-null means to save multiple-line commands together on" #~ msgstr "\t\tMehrzeilige Kommandos werden im Kommandozeilenspeicher in einer" #~ msgid " a single history line." #~ msgstr "\t\tZeile abgelegt, wenn die Variable ungleich Null gesetzt ist." #~ msgid "histchars Characters controlling history expansion and quick" -#~ msgstr "histchars Zeichen, die die Befehlswiederholung und die Schnellersetzung" +#~ msgstr "" +#~ "histchars Zeichen, die die Befehlswiederholung und die " +#~ "Schnellersetzung" #~ msgid "\t\tsubstitution. The first character is the history" #~ msgstr "\t\tsteuern. An erster Stelle steht das Befehlswiederholungszeichen" @@ -5637,7 +6279,8 @@ msgstr "" #~ msgstr "HISTCONTROL\tGesetzt auf `ignorespace' werden keine mit einem" #~ msgid "\t\tlines which begin with a space or tab on the history" -#~ msgstr "\t\tLeerzeichen oder Tabulator beginnenden Zeilen im Kommandospeicher" +#~ msgstr "" +#~ "\t\tLeerzeichen oder Tabulator beginnenden Zeilen im Kommandospeicher" #~ msgid "\t\tlist. Set to a value of `ignoredups', it means don't" #~ msgstr "\t\tabgelegt. Der Wert `ignoredups' verhindert das Speichern" @@ -5656,7 +6299,9 @@ msgstr "" # pushd #~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "Legt ein Verzeichnisnamen auf den Verzeichnisstapel oder rotiert diesen so," +#~ msgstr "" +#~ "Legt ein Verzeichnisnamen auf den Verzeichnisstapel oder rotiert diesen " +#~ "so," # Gibt's denn auch andere als "aktuelle" Arbeitsverzeichnisse? # "Arbeit" impliziert .m.E. "aktuell" @@ -5665,16 +6310,20 @@ msgstr "" #~ msgstr "da das Arbeitsverzeichnis auf der Spitze des Stapels liegt. Ohne" #~ msgid "directory. With no arguments, exchanges the top two directories." -#~ msgstr "Argumente werden die obersten zwei Verzeichnisse auf dem Stapel vertauscht." +#~ msgstr "" +#~ "Argumente werden die obersten zwei Verzeichnisse auf dem Stapel " +#~ "vertauscht." #~ msgid "+N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "+N\tRotiert den Stapel so, da das N'te Verzeichnis (angezeigt von `dirs'," +#~ msgstr "" +#~ "+N\tRotiert den Stapel so, da das N'te Verzeichnis (angezeigt von `dirs'," #~ msgid "\tfrom the left of the list shown by `dirs') is at the top." #~ msgstr "gezhlt von links) sich an der Spitze des Stapels befindet." #~ msgid "-N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "-N\tRotiert den Stapel so, da das N'te Verzeichnis (angezeigt von `dirs'," +#~ msgstr "" +#~ "-N\tRotiert den Stapel so, da das N'te Verzeichnis (angezeigt von `dirs'," #~ msgid "\tfrom the right) is at the top." #~ msgstr "gezhlt von rechts) sich an der Spitze des Stapels befindet." @@ -5689,17 +6338,22 @@ msgstr "" #~ msgstr "DIR\tLegt DIR auf die Spitze des Verzeichnisstapels und wechselt" #~ msgid "You can see the directory stack with the `dirs' command." -#~ msgstr "Der Verzeichnisstapel kann mit dem Kommando `dirs' angezeigt werden." +#~ msgstr "" +#~ "Der Verzeichnisstapel kann mit dem Kommando `dirs' angezeigt werden." # pushd #~ msgid "Removes entries from the directory stack. With no arguments," -#~ msgstr "Entfernt Eintrge vom Verzeichnisstapel. Ohne Argumente wird die Spitze des" +#~ msgstr "" +#~ "Entfernt Eintrge vom Verzeichnisstapel. Ohne Argumente wird die Spitze " +#~ "des" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "Stapels entfernt und in das Verzeichnis gewechselt, das dann an der" #~ msgid "+N\tremoves the Nth entry counting from the left of the list" -#~ msgstr "+N\tEntfernt den N'ten Eintrag vom Stapel, gezhlt von Null von der Liste," +#~ msgstr "" +#~ "+N\tEntfernt den N'ten Eintrag vom Stapel, gezhlt von Null von der " +#~ "Liste," #~ msgid "\tshown by `dirs', starting with zero. For example: `popd +0'" #~ msgstr "\tdie `dirs' anzeigt. Beispielsweise entfernen `popd +0' das" @@ -5708,7 +6362,8 @@ msgstr "" #~ msgstr "\terste Verzeichnis und `popd +1' das zweite." #~ msgid "-N\tremoves the Nth entry counting from the right of the list" -#~ msgstr "-N\tEntfernt den N'ten Eintrag vom Stapel, beginend rechts bei Null in der" +#~ msgstr "" +#~ "-N\tEntfernt den N'ten Eintrag vom Stapel, beginend rechts bei Null in der" #~ msgid "\tshown by `dirs', starting with zero. For example: `popd -0'" #~ msgstr "\tListe, die `dirs' angeigt. Beispielsweise entfernen `popd -0'" @@ -5716,73 +6371,110 @@ msgstr "" #~ msgid "\tremoves the last directory, `popd -1' the next to last." #~ msgstr "\tdas letzte Verzeichnis und `popd -1' das vorletzte." -#~ msgid "-n\tsuppress the normal change of directory when removing directories" -#~ msgstr "-n\tVerhindert das Wechseln des Arbeitsverzeichnisses wenn Verzeichnisse" +#~ msgid "" +#~ "-n\tsuppress the normal change of directory when removing directories" +#~ msgstr "" +#~ "-n\tVerhindert das Wechseln des Arbeitsverzeichnisses wenn Verzeichnisse" #~ msgid "\tfrom the stack, so only the stack is manipulated." #~ msgstr "\tvom Stapel entfernt werden, so da nur der Stapel verndert wird." # dirs #~ msgid "Display the list of currently remembered directories. Directories" -#~ msgstr "Zeigt die Liste der gegenwrtig gespeicherten Verzeichnisse an. Gespeichert" +#~ msgstr "" +#~ "Zeigt die Liste der gegenwrtig gespeicherten Verzeichnisse an. " +#~ "Gespeichert" #~ msgid "find their way onto the list with the `pushd' command; you can get" -#~ msgstr "werden die Verzeichnisse durch das `popd' Kommando und knnen durch das `pushd'" +#~ msgstr "" +#~ "werden die Verzeichnisse durch das `popd' Kommando und knnen durch das " +#~ "`pushd'" #~ msgid "back up through the list with the `popd' command." #~ msgstr "Kommando wieder vom Stapel entfernt werden." -#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions" -#~ msgstr "Wenn die -l Option angegeben ist, dann werden keine Kurzversionen der Verzeich-" +#~ msgid "" +#~ "The -l flag specifies that `dirs' should not print shorthand versions" +#~ msgstr "" +#~ "Wenn die -l Option angegeben ist, dann werden keine Kurzversionen der " +#~ "Verzeich-" -#~ msgid "of directories which are relative to your home directory. This means" -#~ msgstr "nisse angezeigt, die relativ zum Heimatverzeichnis sind. Es wird also an" +#~ msgid "" +#~ "of directories which are relative to your home directory. This means" +#~ msgstr "" +#~ "nisse angezeigt, die relativ zum Heimatverzeichnis sind. Es wird also an" #~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr "Stelle von `~/bin' der absolute Pfad `/home/foo/bin' angezeigt. Mit der -v" +#~ msgstr "" +#~ "Stelle von `~/bin' der absolute Pfad `/home/foo/bin' angezeigt. Mit der -" +#~ "v" #~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "Option wird von `dirs' ein Eintrag pro Zeile ausgegeben. Die Position im" +#~ msgstr "" +#~ "Option wird von `dirs' ein Eintrag pro Zeile ausgegeben. Die Position im" -#~ msgid "prepending the directory name with its position in the stack. The -p" -#~ msgstr "Stapel wird vorangestellt. Die -p Option wirkt hnlich, es wird allerdings" +#~ msgid "" +#~ "prepending the directory name with its position in the stack. The -p" +#~ msgstr "" +#~ "Stapel wird vorangestellt. Die -p Option wirkt hnlich, es wird " +#~ "allerdings" #~ msgid "flag does the same thing, but the stack position is not prepended." -#~ msgstr "nicht die Position im Stapel angezeigt. Wenn -c angegeben ist, damm werden" +#~ msgstr "" +#~ "nicht die Position im Stapel angezeigt. Wenn -c angegeben ist, damm " +#~ "werden" -#~ msgid "The -c flag clears the directory stack by deleting all of the elements." +#~ msgid "" +#~ "The -c flag clears the directory stack by deleting all of the elements." #~ msgstr "alle Eintrge vom Verzeichnisstapel gelscht." -#~ msgid "+N\tdisplays the Nth entry counting from the left of the list shown by" -#~ msgstr "+N\tZeigt den N'ten Eintrag, gezhlt von links begginnend bei Null, aus" +#~ msgid "" +#~ "+N\tdisplays the Nth entry counting from the left of the list shown by" +#~ msgstr "" +#~ "+N\tZeigt den N'ten Eintrag, gezhlt von links begginnend bei Null, aus" #~ msgid "\tdirs when invoked without options, starting with zero." #~ msgstr "\tder Liste, die von `dirs' ohne Optionen angezeigt wird." -#~ msgid "-N\tdisplays the Nth entry counting from the right of the list shown by" -#~ msgstr "-N\tZeigt den N'ten Eintrag, gezhlt von rechts begginnend bei Null, aus" +#~ msgid "" +#~ "-N\tdisplays the Nth entry counting from the right of the list shown by" +#~ msgstr "" +#~ "-N\tZeigt den N'ten Eintrag, gezhlt von rechts begginnend bei Null, aus" # shopt_builtin #~ msgid "Toggle the values of variables controlling optional behavior." -#~ msgstr "ndert die Werte von Variablen die zustzliche Eigenschaften der Shell steuern." +#~ msgstr "" +#~ "ndert die Werte von Variablen die zustzliche Eigenschaften der Shell " +#~ "steuern." #~ msgid "The -s flag means to enable (set) each OPTNAME; the -u flag" -#~ msgstr "Mit der -s Option wird jeder OPTIONSMAME gesetzt. Die -u Option setzt jeden" +#~ msgstr "" +#~ "Mit der -s Option wird jeder OPTIONSMAME gesetzt. Die -u Option setzt " +#~ "jeden" #~ msgid "unsets each OPTNAME. The -q flag suppresses output; the exit" -#~ msgstr "OPTIONSNAMEN zurck. Die -q Option unterdrckt Ausgaben. Der Rckgabewert" +#~ msgstr "" +#~ "OPTIONSNAMEN zurck. Die -q Option unterdrckt Ausgaben. Der " +#~ "Rckgabewert" #~ msgid "status indicates whether each OPTNAME is set or unset. The -o" -#~ msgstr "des Kommandos gibt an ob der OPTIONSNAME ein- oder ausgeschalten wurde. Die" +#~ msgstr "" +#~ "des Kommandos gibt an ob der OPTIONSNAME ein- oder ausgeschalten wurde. " +#~ "Die" #~ msgid "option restricts the OPTNAMEs to those defined for use with" -#~ msgstr "Option beschrnkt die OPTIONSNAMEN auf jene die mit `set -o' benutzt werden" +#~ msgstr "" +#~ "Option beschrnkt die OPTIONSNAMEN auf jene die mit `set -o' benutzt " +#~ "werden" #~ msgid "`set -o'. With no options, or with the -p option, a list of all" -#~ msgstr "knnen. Ohne oder mit der -p Option wird eine Liste aller `settable' Optionen" +#~ msgstr "" +#~ "knnen. Ohne oder mit der -p Option wird eine Liste aller `settable' " +#~ "Optionen" #~ msgid "settable options is displayed, with an indication of whether or" -#~ msgstr "mit einer Markierung ob die angegebene Option gesetzt oder nicht gesetzt" +#~ msgstr "" +#~ "mit einer Markierung ob die angegebene Option gesetzt oder nicht gesetzt" #~ msgid "not each is set." #~ msgstr "ist angezeigt." diff --git a/po/en@boldquot.gmo b/po/en@boldquot.gmo index 9c82c4ec520543410b410598723e3bbbb50094f9..a4a21e7a0425a28c38cd91c532612c09eba586db 100644 GIT binary patch delta 7309 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 j=VfN+Ci?du+c9VSz3IW diff --git a/po/en@boldquot.po b/po/en@boldquot.po index 08d683b2..1c69105d 100644 --- a/po/en@boldquot.po +++ b/po/en@boldquot.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 4.0-alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" -"PO-Revision-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" +"PO-Revision-Date: 2008-09-24 11:49-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -41,26 +41,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "bad array subscript" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: cannot convert indexed to associative array" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: invalid associative array key" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: cannot assign to non-numeric index" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: must use subscript when assigning associative array" @@ -89,32 +89,32 @@ msgstr "no closing ‘%c’ in %s" msgid "%s: missing colon separator" msgstr "%s: missing colon separator" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "‘%s’: invalid keymap name" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: cannot read: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "‘%s’: cannot unbind" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "‘%s’: unknown function name" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s is not bound to any keys.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s can be invoked via " @@ -263,12 +263,12 @@ msgstr "%s: not a shell builtin" msgid "write error: %s" msgstr "write error: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: error retrieving current directory: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: ambiguous job spec" @@ -304,7 +304,7 @@ msgstr "can only be used in a function" msgid "cannot use `-f' to make functions" msgstr "cannot use ‘-f’ to make functions" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: readonly function" @@ -343,7 +343,7 @@ msgstr "%s: not dynamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: cannot delete: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -359,7 +359,7 @@ msgstr "%s: not a regular file" msgid "%s: file is too large" msgstr "%s: file is too large" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: cannot execute binary file" @@ -483,7 +483,7 @@ msgstr "cannot use more than one of -anrw" msgid "history position" msgstr "history position" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: history expansion failed" @@ -510,12 +510,12 @@ msgstr "Unknown error" msgid "expression expected" msgstr "expression expected" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: invalid file descriptor specification" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: invalid file descriptor: %s" @@ -709,17 +709,17 @@ msgstr "" " \n" " The ‘dirs’ builtin displays the directory stack." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: invalid timeout specification" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "read error: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "can only ‘return’ from a function or sourced script" @@ -890,36 +890,36 @@ msgstr "%s: unbound variable" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\atimed out waiting for input: auto-logout\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "cannot redirect standard input from /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: ‘%c’: invalid format character" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restricted: cannot specify ‘/’ in command names" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: command not found" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bad interpreter" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "cannot duplicate fd %d to fd %d" @@ -994,7 +994,7 @@ msgstr "%s: expression error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: cannot access parent directories" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "cannot reset nodelay mode for fd %d" @@ -1009,144 +1009,144 @@ msgstr "cannot allocate new file descriptor for bash input from fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffer already exists for new fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d appears in running job %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "deleting stopped job %d with process group %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) in the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marked as still alive" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no such pid" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Done" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Stopped" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Stopped(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Running" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Done(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Unknown status" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "child setpgid (%ld to %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld is not a child of this shell" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No record of process %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: job %d is stopped" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: job has terminated" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: job %d already in background" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: line %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd now: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp failed" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "cannot set terminal process group (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "no job control in this shell" @@ -1399,31 +1399,31 @@ msgstr "cprintf: ‘%c’: invalid format character" msgid "file descriptor out of range" msgstr "file descriptor out of range" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: ambiguous redirect" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: cannot overwrite existing file" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restricted: cannot redirect output" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "cannot create temp file for here-document: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port not supported without networking" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "redirection error: cannot duplicate fd" @@ -1493,7 +1493,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use the ‘bashbug’ command to report bugs.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: invalid operation" @@ -1667,77 +1667,77 @@ msgstr "Unknown Signal #" msgid "Unknown Signal #%d" msgstr "Unknown Signal #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "bad substitution: no closing ‘%s’ in %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: cannot assign list to array member" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "cannot make pipe for process substitution" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "cannot make child for process substitution" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "cannot open named pipe %s for reading" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "cannot open named pipe %s for writing" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "cannot duplicate named pipe %s as fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "cannot make pipe for command substitution" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "cannot make child for command substitution" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: cannot duplicate pipe as fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter null or not set" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expression < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: bad substitution" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: cannot assign in this way" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "bad substitution: no closing “`” in %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "no match: %s" @@ -1774,23 +1774,23 @@ msgstr "%s: binary operator expected" msgid "missing `]'" msgstr "missing ‘]’" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "invalid signal number" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: bad value in trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: bad signal %d" @@ -1805,33 +1805,33 @@ msgstr "error importing function definition for ‘%s’" msgid "shell level (%d) too high, resetting to 1" msgstr "shell level (%d) too high, resetting to 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no function context at current scope" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no function context at current scope" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "invalid character %d in exportstr for %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "no ‘=’ in exportstr for %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: head of shell_variables not a function context" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no global_variables context" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: head of shell_variables not a temporary environment scope" @@ -3510,8 +3510,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3550,8 +3551,9 @@ msgstr "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3559,7 +3561,7 @@ msgstr "" "out,\n" " or an invalid file descriptor is supplied as the argument to -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3579,7 +3581,7 @@ msgstr "" " Exit Status:\n" " Returns N, or failure if the shell is not executing a function or script." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3739,7 +3741,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3775,7 +3777,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or a NAME is read-only." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3809,7 +3811,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3845,7 +3847,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3863,7 +3865,7 @@ msgstr "" " Exit Status:\n" " Returns success unless N is negative or greater than $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3887,7 +3889,7 @@ msgstr "" " Returns the status of the last command executed in FILENAME; fails if\n" " FILENAME cannot be read." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3911,7 +3913,7 @@ msgstr "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4061,7 +4063,7 @@ msgstr "" " Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n" " false or an invalid argument is given." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4074,7 +4076,7 @@ msgstr "" "must\n" " be a literal ‘]’, to match the opening ‘[’." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -4094,7 +4096,7 @@ msgstr "" " Exit Status:\n" " Always succeeds." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -4163,7 +4165,7 @@ msgstr "" " Returns success unless a SIGSPEC is invalid or an invalid option is " "given." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -4221,7 +4223,7 @@ msgstr "" " Returns success if all of the NAMEs are found; fails if any are not " "found." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -4306,7 +4308,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4338,7 +4340,7 @@ msgstr "" " Exit Status:\n" " Returns success unless MODE is invalid or an invalid option is given." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -4368,7 +4370,7 @@ msgstr "" "is\n" " given." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4392,7 +4394,7 @@ msgstr "" "is\n" " given." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4416,7 +4418,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4446,7 +4448,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4483,7 +4485,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4511,7 +4513,7 @@ msgstr "" " Exit Status:\n" " The return status is the return status of PIPELINE." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4529,7 +4531,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -4567,7 +4569,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4585,7 +4587,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4603,7 +4605,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4627,7 +4629,7 @@ msgstr "" " Exit Status:\n" " Returns success unless NAME is readonly." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4645,7 +4647,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4670,7 +4672,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the resumed job." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4688,7 +4690,7 @@ msgstr "" " Exit Status:\n" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -4742,7 +4744,7 @@ msgstr "" " Exit Status:\n" " 0 or 1 depending on value of EXPRESSION." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4846,7 +4848,7 @@ msgstr "" " HISTIGNORE\tA colon-separated list of patterns used to decide which\n" " \t\tcommands should be saved on the history list.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4904,7 +4906,7 @@ msgstr "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4956,7 +4958,7 @@ msgstr "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -5011,7 +5013,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -5049,7 +5051,7 @@ msgstr "" " Returns success if OPTNAME is enabled; fails if an invalid option is\n" " given or OPTNAME is disabled." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -5105,7 +5107,7 @@ msgstr "" "assignment\n" " error occurs." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -5145,7 +5147,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -5167,7 +5169,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -5222,7 +5224,7 @@ msgstr "" " Returns success unless an invalid option is supplied or NAME does not\n" " have a completion specification defined." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/en@quot.gmo b/po/en@quot.gmo index b03f9aaf9dcd6a110acd522b551c6255d37efefe..76f00d37e4fea2f23560edb8e958a91a76f57763 100644 GIT binary patch delta 7317 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 T?4qk#krk6axu>!&+fMl}|6J9@ delta 7074 zcmZwLd2|&;7RT{h4H5_{0RzescnM1g5SE0nFCpw}L?Qzyj)EE$5%&xtG@vlxt}Jmx zHbFsAj0BA6j2Ml2a0LND5YZ82R|XUj6zBVU)ql(%!#SK!b-(VeTeogizq}7uS3C7W zwUXp2;rmt0QZ}0PsciQBCbQ~h*1W@-5;54b7r$YHaioTjrr8< z2^_J->}AgH|H7;iKDnL$xL}7_KkiH4>AekyaDD@RfWcQ5+6XS#yxS}RQ}&qE!lu}R zjyvJUbWrq-*)s&%`#ZCq9Dj4rtOhnbVpdqgto1R@F@S~V%m#D+J?5+rmLnfq73b`G ztb^6?EUxGN%0cMj9dE4cEJ-)uCHMs<;}58eoWpz~PPo8X3y%L%#aSZG#1woKFT*vF z71)8}y{P+=6P)$t`1-2O$_R8d=5c&&c#*TdG*+MjIE>1`S-c1@y4cypSRXGS;ufd? z+a@_1g?&%~EJg+P7V5qqB7eq1N_9#QNx#irN^o8UF5z#hQ5Sd6;vHB7}V*Z@yreXLQ>*@g6PEos!@ zL?=wgd~AzF*cw-(9<&oX<7uplZR`7hI%6Y_2crU+fC}UZRNyO78QFlk?>%gWpI|!u z+bJ4)aQz1Ufmh;F92a7|SWt6YImM481@*w5n2keG0nWhgxC}G#8&qHyHuM8)h3dEf zHC0n2{o4yPGH`3;IaF$!Hu4U}7{_;DJA4WoV?}g)2=(B4F=sj03so~ksFcq}O~H!D z_puAd2QgHN(o&t(!)%PzaoC#t%862mg#3LDgm~H*AHun1u@DE>ucqpfa`uHL{JU z01l!?o}BJS+6{Gn0&0q$Miuua)c$ZHq|uy4dUOBa%Tcv35j8c%sN!3VJ+T}M&}I0~ zN1`%Ohzf8jcEX2oBvzn0uHV83mWRshEvRK4K14$)c@7oGtEdfV7pjPkqEdAh)lrR> z&eE_c>b?P(gI8icK8)HY_Cy{>W%5tdYPz7651Yp>1;G+p^E7d)Kt;IF8itZ^HET~BP!@etI2W?&zD1T}SAQMFLBt*^BnScm@Y3L08Y zH={auIC3p2m0MAfe~(Jxc^r>b+xft5MHN+uZLkDYL*Jq{sKhM4N_wDbVH9Rzh@s|g z9Sucx2o-tlY;O#;546OAI2JX+Rj76Rb#z?4z3(s=72qwXskj?sI2|>x<*1BRpqA~o z?OFdy@mWsDgd87XGHNUBiW>Q3)V?quwY=6u$JMb{oR_gA2{=xM0HR-yuVD>}amm7(*f z{UNiHvyONbYTeI6O~FSY4W;-G)JvgFXFrlLk$*>3|9aHMbON=dCU@~8YJkd67OIAZ zqN;ups-romDcOXY+Rdnbwxb3b{z*d{LRwdUVIJx$(-2hTS4TdC>fnv&^WCT-JA$h2 zhho76op8moV)EtgRjbIvT zna;&3_%v#+m!dYRw^0MyhMJmFs0<|L`qh+-I^QfV>#sWvrLX{16q8VMJrk9QWvBp3 zQ16HxsIBubYHD0B|G@5%1*n~L0xHGxQGu1AYUC5tGCVBl-;(nDy6qTQh^p4&$X8Is z^d4%YCs8A)+1t-`b5ybRLIpk+73dUH0FOt<>rn5M4^Y?b#84gmLPHxz^*+Aiu93r0 z87V{+>3z}pmr)~m7xln>sP%jzI!^5Cr=UJ6Q(aL-IRaHfx1#QUtS{?dMYM(!nt~mu zk)1$woY2odpdM;OS*XbSVGOTFJ#ZH4`c={SH&M^ogL*5TL}keO`@kBYuJ6`A^mCja zo%k#2#ye4w&qa-FIV!-nP!IeP707;6u>}MCoTj194@70QFmfuYXy>8k{yEfsusNim zRJegY!iK0~>4Ms+@=++gM8Irih5oK9<5}S zg9R9-4)Ynfmo=zrpN+b3A(AzF4%PADEBxnYP+N7?5&pW`sO6O!*%Dt>2dF7KFw)sR z*6nXtmE*6j^R@JEETR4^c^oMW%-$dGY%CofxWU;L9?-jx2sxiTff2F?-#pRTzc|0* z4o1$Nece55#eDv^`&|5w%9Zy!dyx+QGnEW*-J)sE`s3mmehWYFpby{(YM`fZdL`Ch zrCH8SbK=1{&W`ioDRZ6ugB0BSxU-iyUuluE33Rj;f91H|61HFht+mwIFFIc4Yzm(z zE%(oPWQ8*xX%DP)@xO|zz2NL1fxN!TSrO-#tnpiTomZUQul3)M#+SGV=ir@d{Z4ld zwQQ=qsz~{kj4Hxq>!M;rRq>bjF&;+M#D-FT-zTW+4`2*!y`Q>N)Xv!&L!}~zhUTy@ zYR>W_$4BRjP&drLVK@heFyfuKlE9jjF#s;u{3b6iM!2lpSugzbU1v9PeT@oVL-*n^ z-d?ltQ9j@PG3%eHwQ-+1(+?4as2?ISxBKF{a~IW52h*?wAK&BRKSbp2bMYS{j$tzA z-}%njd;;3B->3YRgD(C<#HELwEvBRTM<{0c*?81z$9&E7KgRn1j0@%;ckv%0#{cB! zrVN$ZO*n`SzQE7vAmx;^B?Nl>7yh2-_>teq7;ZW5;y*;}x4_OafFVgi{M&H<+Cls~ zU@LakIUbo3*d_uEpP?~`6JyeX_;)+Aim*T zg4zdCu^J<8iwdwy(;)ss#4t?dcoizJ&8Us)Ok|a2LHvh^WSmSOf27Bs7g|w95dS4& zHeOGvZ*SorydyL4uUXW4-?jFEU5MIRQ!ov)F#|`UUc1v#Tlb5ojFh9U+lTtf7PJX0 zhRv~&zW)!Tp%LGVS}yltOI(0$u^cs`lc?8kYTF>b<>sPxwEIwB(;q;+3l?A#+9Dj)VK5z&dW4#=I z+ynLC+c5`=Q8n`^>LvFz>UqDR2GFQO5XOIr=+(ie=zi1`Jc=<~jp}GKF2HlR6rb$q zN7Am7f6!=D%BP@SPRme%y@JZ@R@CbH1C@~rI{PWj?i~7*jpKxhYDQ!+YAbyOHK!G* zRPRR>)k)OcCUx=mH9>t(=z{t~qySYrGf){=hq+jen){%uA8_@MhSqlj)Q#;>555L9 zf;*9Sk}bqsd=?eRUQ|ktqB2&sn;%(Y)N_WT=6V{ccwdOl??6pa(A@_ZX3)?EF$T4K zop_U5=H7T_e*=M|_7?mz{26!mw&Z#WXO_}x|=&qW1Rf@C(d zT{N^_&!FZmDc1**g4%%kp;9;+m8qLh9Zf~8>v^dAUdJ4K5A*Ri)G8X-%X<|nlM_*^ z=`M_~|EV-o9E(vK&GV5ZsN#7GwJZ-}PfX48#daO47G~pUT!~tK=TUooN^fr_YD?~p zF&v4yt_bUfG#1iO3QKSlmZL^ouaBRK4Acnwp)xW8mC74Y0X~W<(v7I=zQSDm0X3lX zzWybYg&IH+w!$(DRc!ldsM^n<)@O}=KD9ZKqfn`wg7M{vO5ti8kLyr@)#>kxDg)ba zJO))m4`DX0N3D`W7%##Btp6-dWDM|gcQq=qr%;h^iu?$*5A48!m@qJi{}3@8Ro%0r z;|-_|kDvlf9^~Je4Kc=X3slVvM*Tf-+n~@#^bjYMx|NZyp(1=6d*K1p$kPXV^H8ZD z8y(NZ7{@D719%@5$Vt>(H{k1%HmI(s;=LBDp8 z6*(4FJddF|{tUHh&Z0&XT<$Y-8K!cajjH-9QTxkns400KHMOrI{e<==4UO~ws*0-) z_ZK!tEu$>do}CwYJF0^v(dX}=M!E$R;91o3x?JHmps}a{EyO%5NA0YYM<^3adUG0D zZr6_}JrZl?g1)Y_R@yTz;3vnmjb~SK50>VnFLFU*Q2Isl$6WBOn>Vh-OTjxG} diff --git a/po/en@quot.po b/po/en@quot.po index 84a1b1b4..8dc2d002 100644 --- a/po/en@quot.po +++ b/po/en@quot.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 4.0-alpha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" -"PO-Revision-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" +"PO-Revision-Date: 2008-09-24 11:49-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -38,26 +38,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "bad array subscript" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: cannot convert indexed to associative array" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: invalid associative array key" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: cannot assign to non-numeric index" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: must use subscript when assigning associative array" @@ -86,32 +86,32 @@ msgstr "no closing ‘%c’ in %s" msgid "%s: missing colon separator" msgstr "%s: missing colon separator" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "‘%s’: invalid keymap name" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: cannot read: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "‘%s’: cannot unbind" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "‘%s’: unknown function name" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s is not bound to any keys.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s can be invoked via " @@ -260,12 +260,12 @@ msgstr "%s: not a shell builtin" msgid "write error: %s" msgstr "write error: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: error retrieving current directory: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: ambiguous job spec" @@ -301,7 +301,7 @@ msgstr "can only be used in a function" msgid "cannot use `-f' to make functions" msgstr "cannot use ‘-f’ to make functions" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: readonly function" @@ -340,7 +340,7 @@ msgstr "%s: not dynamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: cannot delete: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -356,7 +356,7 @@ msgstr "%s: not a regular file" msgid "%s: file is too large" msgstr "%s: file is too large" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: cannot execute binary file" @@ -477,7 +477,7 @@ msgstr "cannot use more than one of -anrw" msgid "history position" msgstr "history position" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: history expansion failed" @@ -504,12 +504,12 @@ msgstr "Unknown error" msgid "expression expected" msgstr "expression expected" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: invalid file descriptor specification" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: invalid file descriptor: %s" @@ -700,17 +700,17 @@ msgstr "" " \n" " The ‘dirs’ builtin displays the directory stack." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: invalid timeout specification" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "read error: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "can only ‘return’ from a function or sourced script" @@ -881,36 +881,36 @@ msgstr "%s: unbound variable" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\atimed out waiting for input: auto-logout\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "cannot redirect standard input from /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: ‘%c’: invalid format character" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restricted: cannot specify ‘/’ in command names" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: command not found" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bad interpreter" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "cannot duplicate fd %d to fd %d" @@ -985,7 +985,7 @@ msgstr "%s: expression error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: cannot access parent directories" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "cannot reset nodelay mode for fd %d" @@ -1000,144 +1000,144 @@ msgstr "cannot allocate new file descriptor for bash input from fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffer already exists for new fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d appears in running job %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "deleting stopped job %d with process group %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) in the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marked as still alive" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no such pid" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Done" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Stopped" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Stopped(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Running" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Done(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Unknown status" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "child setpgid (%ld to %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld is not a child of this shell" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No record of process %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: job %d is stopped" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: job has terminated" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: job %d already in background" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: line %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd now: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp failed" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "cannot set terminal process group (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "no job control in this shell" @@ -1390,31 +1390,31 @@ msgstr "cprintf: ‘%c’: invalid format character" msgid "file descriptor out of range" msgstr "file descriptor out of range" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: ambiguous redirect" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: cannot overwrite existing file" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restricted: cannot redirect output" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "cannot create temp file for here-document: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port not supported without networking" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "redirection error: cannot duplicate fd" @@ -1481,7 +1481,7 @@ msgstr "Type ‘%s -c help’ for more information about shell builtin commands. msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use the ‘bashbug’ command to report bugs.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: invalid operation" @@ -1655,77 +1655,77 @@ msgstr "Unknown Signal #" msgid "Unknown Signal #%d" msgstr "Unknown Signal #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "bad substitution: no closing ‘%s’ in %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: cannot assign list to array member" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "cannot make pipe for process substitution" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "cannot make child for process substitution" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "cannot open named pipe %s for reading" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "cannot open named pipe %s for writing" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "cannot duplicate named pipe %s as fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "cannot make pipe for command substitution" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "cannot make child for command substitution" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: cannot duplicate pipe as fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter null or not set" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expression < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: bad substitution" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: cannot assign in this way" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "bad substitution: no closing “`” in %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "no match: %s" @@ -1762,23 +1762,23 @@ msgstr "%s: binary operator expected" msgid "missing `]'" msgstr "missing ‘]’" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "invalid signal number" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: bad value in trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: bad signal %d" @@ -1793,33 +1793,33 @@ msgstr "error importing function definition for ‘%s’" msgid "shell level (%d) too high, resetting to 1" msgstr "shell level (%d) too high, resetting to 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no function context at current scope" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no function context at current scope" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "invalid character %d in exportstr for %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "no ‘=’ in exportstr for %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: head of shell_variables not a function context" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no global_variables context" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: head of shell_variables not a temporary environment scope" @@ -3487,8 +3487,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3527,8 +3528,9 @@ msgstr "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3536,7 +3538,7 @@ msgstr "" "out,\n" " or an invalid file descriptor is supplied as the argument to -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3556,7 +3558,7 @@ msgstr "" " Exit Status:\n" " Returns N, or failure if the shell is not executing a function or script." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3716,7 +3718,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3752,7 +3754,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or a NAME is read-only." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3786,7 +3788,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3822,7 +3824,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3840,7 +3842,7 @@ msgstr "" " Exit Status:\n" " Returns success unless N is negative or greater than $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3864,7 +3866,7 @@ msgstr "" " Returns the status of the last command executed in FILENAME; fails if\n" " FILENAME cannot be read." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3888,7 +3890,7 @@ msgstr "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4038,7 +4040,7 @@ msgstr "" " Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n" " false or an invalid argument is given." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4050,7 +4052,7 @@ msgstr "" " This is a synonym for the “test” builtin, but the last argument must\n" " be a literal ‘]’, to match the opening ‘[’." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -4070,7 +4072,7 @@ msgstr "" " Exit Status:\n" " Always succeeds." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -4138,7 +4140,7 @@ msgstr "" " Returns success unless a SIGSPEC is invalid or an invalid option is " "given." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -4194,7 +4196,7 @@ msgstr "" " Returns success if all of the NAMEs are found; fails if any are not " "found." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -4278,7 +4280,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4310,7 +4312,7 @@ msgstr "" " Exit Status:\n" " Returns success unless MODE is invalid or an invalid option is given." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -4340,7 +4342,7 @@ msgstr "" "is\n" " given." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4364,7 +4366,7 @@ msgstr "" "is\n" " given." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4386,7 +4388,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4416,7 +4418,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4452,7 +4454,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4480,7 +4482,7 @@ msgstr "" " Exit Status:\n" " The return status is the return status of PIPELINE." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4498,7 +4500,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -4536,7 +4538,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4554,7 +4556,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4572,7 +4574,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4596,7 +4598,7 @@ msgstr "" " Exit Status:\n" " Returns success unless NAME is readonly." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4614,7 +4616,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the last command executed." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4638,7 +4640,7 @@ msgstr "" " Exit Status:\n" " Returns the status of the resumed job." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4656,7 +4658,7 @@ msgstr "" " Exit Status:\n" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -4708,7 +4710,7 @@ msgstr "" " Exit Status:\n" " 0 or 1 depending on value of EXPRESSION." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4812,7 +4814,7 @@ msgstr "" " HISTIGNORE\tA colon-separated list of patterns used to decide which\n" " \t\tcommands should be saved on the history list.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4870,7 +4872,7 @@ msgstr "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4920,7 +4922,7 @@ msgstr "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4974,7 +4976,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -5012,7 +5014,7 @@ msgstr "" " Returns success if OPTNAME is enabled; fails if an invalid option is\n" " given or OPTNAME is disabled." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -5068,7 +5070,7 @@ msgstr "" "assignment\n" " error occurs." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -5108,7 +5110,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -5130,7 +5132,7 @@ msgstr "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -5184,7 +5186,7 @@ msgstr "" " Returns success unless an invalid option is supplied or NAME does not\n" " have a completion specification defined." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/eo.gmo b/po/eo.gmo index 3b42609dc4d1f3d828a405ce262fb006799a9d8e..64c97b0e59748c88fc718d7872bcebea640d7816 100644 GIT binary patch delta 25 gcmX?mjPdL-#tp1iT$Z{\n" "Language-Team: Esperanto \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "Misa tabel-indico" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: Misa nomo de ago" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: Valorizato havu nombran indicon" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -63,32 +63,32 @@ msgstr "Mankas ferma „%c‟ en %s" msgid "%s: missing colon separator" msgstr "%s: Mankas disiga dupunkto" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "„%s‟: Misa nomo por klavartabelo" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: Ne eblas legi: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "%s: Ne eblas malligi" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "%s: Nekonata funkcinomo" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s malhavas klavligon\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s vokeblas per " @@ -237,12 +237,12 @@ msgstr "„%s‟ ne estas primitiva komando ŝela" msgid "write error: %s" msgstr "Eraro ĉe skribo: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: Eraro ĉe provo determini la kurantan dosierujon: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: Ambigua laborindiko" @@ -278,7 +278,7 @@ msgstr "Uzeblas nur ene de funkcio" msgid "cannot use `-f' to make functions" msgstr "„-f‟ ne estas uzebla por fari funkciojn" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: Nurlega funkcio" @@ -317,7 +317,7 @@ msgstr "%s: Ne ŝargita dinamike" msgid "%s: cannot delete: %s" msgstr "%s: Ne eblas forigi: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -333,7 +333,7 @@ msgstr "%s: Ne ordinara dosiero" msgid "%s: file is too large" msgstr "%s: Tro granda dosiero" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: Neplenumebla duuma dosiero" @@ -456,7 +456,7 @@ msgstr "Ne pli ol unu el -anrw estas uzebla" msgid "history position" msgstr "pozicio en la historio" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: Historia malvolvo fiaskis" @@ -483,12 +483,12 @@ msgstr "Nekonata eraro" msgid "expression expected" msgstr "Mankas esprimo" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: Misa indiko de dosiernumero" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "„%d‟: Misa dosiernumero: %s" @@ -680,17 +680,17 @@ msgstr "" "\n" " Vi povas vidigi la stakon da dosierujoj per la komando „dirs‟." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: Misa indiko de atendotempo" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "Lega (read) eraro: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "„return‟ sencas nur en funkcio aŭ punkte vokita („.‟, „source‟) skripto" @@ -865,38 +865,38 @@ msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aTro longe sen enigo: Aŭtomata seancofino\n" # XXX: internal error: -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "Fiaskis provo nomumi la disponaĵon «/dev/null» ĉefenigujo: %s" # XXX: internal error: -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c‟: Misa formatsigno" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "Eraro ĉe skribo: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: Malpermesitas uzi „/‟ en komandonomoj" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: Komando ne trovita" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: Misa interpretilo" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "Ne eblas kunnomumi al dosiernumero %d la dosiernumeron %d" @@ -971,7 +971,7 @@ msgstr "%s: Mankas entjera esprimo" msgid "getcwd: cannot access parent directories" msgstr "getwd: Ne eblas atingi patrajn dosierujojn" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "Ne eblas reŝalti senprokrastan reĝimon por dosiero n-ro %d" @@ -986,144 +986,144 @@ msgstr "Maleblas disponigi novan dosiernumeron por Baŝa enigo el n-ro %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: La nova dosiernumero (fd %d) jam havas bufron" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "Forke farita proceznumero %d aperas en rulata laboro %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Haltigita laboro %d kun procezgrupo %ld estas forigata" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Ne estas tia proceznumero (%ld)!" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: La procezo %ld ne estas ido de ĉi tiu ŝelo" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Malestas informoj pri procezo %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: La laboro %d estas haltigita" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: La laboro finiĝis" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: La laboro %d jam estas fona" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: Averto: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "Ĉi tiu ŝelo ne disponigas laborregadon" @@ -1399,35 +1399,35 @@ msgid "file descriptor out of range" msgstr "Ekstervarieja dosiernomo" # XXX: internal_error -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: Ambigua alidirektado" # XXX: internal_error -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: Maleblas surskribi ekzistantan dosieron" # XXX: internal_error -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: Limigita ŝelo: malpermesitas alidirekti eligon" # XXX: internal_error -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "Ne eblas krei labordosieron por ĉi-dokumento: %s" # XXX: internal_warning -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "«/dev/(tcp|udp)/host/port» ne disponeblas ekster retumado" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "Alidirektada eraro: Fiaskis kunnomumo al dosiernumero" @@ -1496,7 +1496,7 @@ msgid "Use the `bashbug' command to report bugs.\n" msgstr "Por raporti pri eraroj uzu la komandon „bashbug‟\n" # XXX: internal_error -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: Misa operacio" @@ -1672,77 +1672,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Misa anstataŭigo: Mankas ferma „%s‟ en %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: Maleblas valorizi tabelanon per listo" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "Ne prosperis fari dukton por proceza anstataŭigo" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "Ne prosperis krei idon por proceza anstataŭigo" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Ne prosperis malfermi nomitan dukton %s porlegan" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Ne prosperis malfermi nomitan dukton %s por skribado" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Ne prosperis kunnomumi nomhavan dukton %s kiel dosiernumeron %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "Ne prosperis fari dukton por komanda anstataŭigo" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "Ne prosperis krei procezidon por komanda anstataŭigo" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: Ne prosperis kunnomumi la dosiernumeron 1 al dukto" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: Parametro estas NUL aŭ malaktiva" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: subĉeno-esprimo < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: Misa anstataŭigo" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ĉi tiel ne valorizebla" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Misa anstataŭigo: Mankas ferma „%s‟ en %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "Nenio kongrua: %s" @@ -1779,24 +1779,24 @@ msgstr "%s: Tie devas esti duloka operacisigno" msgid "missing `]'" msgstr "Mankas „]‟" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "Misa signalnumero" # XXX: internal_warning -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: Misa valoro en trap_list[%d]: %p" # XXX: internal_warning -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "run_pending_traps: Signaltraktilo SIG_DFL resendas %d (%s) al mi mem" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Misa signalnumero %d" @@ -1813,40 +1813,40 @@ msgid "shell level (%d) too high, resetting to 1" msgstr "%d estas tro granda ŝelnivelo; mallevita ĝis 1" # XXX: internal_error -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: Malestas funkcia kunteksto en ĉi-regiono" # XXX: internal_error -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: Malestas funkcia kunteksto en ĉi-regiono" # XXX: internal_error -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "Misa signo %d en eksporta signoĉeno por „%s‟" # XXX: internal_error -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "Mankas „=‟ en eksporta signoĉeno por „%s‟" # XXX: internal_error -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: La kapo de „shell_variables‟ ne estas funkcia kunteksto" # XXX: internal_error -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: Mankas kunteksto de „global_variables‟" # XXX: internal_error -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: La kapo de „shell_variables‟ ne estas provizora regiono" @@ -3239,8 +3239,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3277,7 +3278,7 @@ msgstr "" " renkontiĝas dosierfino, atendolimo estas atingita, aŭ nevalida\n" " dosiernumero estas indikita ĉe -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3290,7 +3291,7 @@ msgid "" msgstr "" # set [--abefhkmnptuvxBCHP] [-o option] [arg ...] -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3444,7 +3445,7 @@ msgstr "" " poziciaj, kaj per ili estas valorizataj, respektive, $1, $2 ... $n.\n" " Se nenia arg estas donita, ĉiuj ŝelvariabloj estas eligataj." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3464,7 +3465,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3483,7 +3484,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3503,7 +3504,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3515,7 +3516,7 @@ msgid "" msgstr "" # source filename [arguments] -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3534,7 +3535,7 @@ msgstr "" " la dosierujon de filename. La eventualaj argumentoj\n" " arguments iĝas la poziciaj parametroj por plenumo de filename." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3549,7 +3550,7 @@ msgid "" msgstr "" # test [expr] -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3687,7 +3688,7 @@ msgstr "" " plia aŭ egala al arg2." # [ arg... ] -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3698,7 +3699,7 @@ msgstr "" "Ĉi tiu estas sinonimo de la primitivo „test‟; tamen la lasta\n" " argumento devas esti „]‟ fermanta la esprimon komencitan per „[‟." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3712,7 +3713,7 @@ msgstr "" # ZZZ: trap [arg] [signal_spec ...] or # trap -l -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3767,7 +3768,7 @@ msgstr "" " Signalon signalindiko eblas sendi al la ŝelo per la komando\n" " «kill -signalindiko $$»." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3798,7 +3799,7 @@ msgid "" msgstr "" # ulimit [-SHacdflmnpstuv] [limit] -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3875,7 +3876,7 @@ msgstr "" " por -p kiu estas en obloj de 512 bajtoj; kaj por -u, kiu estas\n" " sendimensia nombro de procezoj." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3893,7 +3894,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3911,7 +3912,7 @@ msgid "" msgstr "" # wait [n] -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -3932,7 +3933,7 @@ msgstr "" " dukto de la laboro." # for NAME [in WORDS ... ;] do COMMANDS; done -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -3952,7 +3953,7 @@ msgstr "" " estas plenumataj." # for ((: for (( exp1; exp2; exp3 )); do COMMANDS; done -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -3979,7 +3980,7 @@ msgstr "" " ili malestas, 1 estas uzata anstataŭe." # select NAME [in WORDS ... ;] do COMMANDS; done -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -4013,7 +4014,7 @@ msgstr "" " eliro (break)." # time [-p] PIPELINE -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -4036,7 +4037,7 @@ msgstr "" " La variablo TIMEFORMAT difinas la formaton de la eligaĵo." # case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -4052,7 +4053,7 @@ msgstr "" # if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... # [ else COMMANDS; ] fi -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4082,7 +4083,7 @@ msgstr "" " komando plenumita, aŭ 0 se neniu el la kondiĉoj estis vera." # while COMMANDS; do COMMANDS; done -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4097,7 +4098,7 @@ msgstr "" " COMMANDS de la „while‟-parto liveras elirstaton 0." # until COMMANDS; do COMMANDS; done -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4111,7 +4112,7 @@ msgstr "" "Ripete malvolvu kaj plenumu la komandojn dum la lasta el la komandoj\n" " COMMANDS de la „until‟-parto liveras elirstaton alian ol 0." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4126,7 +4127,7 @@ msgid "" msgstr "" # grouping_braces: { COMMANDS ; } -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4140,7 +4141,7 @@ msgstr "" "Plenumu la komandojn grupe. Tiel eblas apliki alidirektadon al\n" " tuta grupo da komandoj." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4159,7 +4160,7 @@ msgstr "" " labornumero. Postmetita „&‟ sendas la laboron en la fonon,\n" " samkiel se la komando „bg‟ estus aplikita al laborindiko." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4174,7 +4175,7 @@ msgstr "" " Ekvivalenta al «let EXPRESSION»." # [[ expression ]] -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4217,7 +4218,7 @@ msgstr "" " sufiĉas por determini la rezulton." # help var -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4322,7 +4323,7 @@ msgstr "" "\t\tkiujn komandojn konservi en la historilisto.\n" # pushd [dir | +N | -N] [-n] -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4374,7 +4375,7 @@ msgstr "" " Vi povas vidigi la stakon da dosierujoj per la komando „dirs‟." # popd [+N | -N] [-n] -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4418,7 +4419,7 @@ msgstr "" " Vi povas vidigi la stakon da dosierujoj per la komando „dirs‟." # dirs [-clpv] [+N] [-N] -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4465,7 +4466,7 @@ msgstr "" " -N\teligu la Nan eron nombrante de dekstre en la listo eligebla\n" "\tper „dirs‟ sen opcioj, numerante ekde 0." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4487,7 +4488,7 @@ msgid "" msgstr "" # printf [-v var] format [arguments] -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4528,7 +4529,7 @@ msgstr "" " Se ĉeestas la opcio „-v‟, la eligo trafas en ties variablon var kaj\n" " ne en la ĉefeligujon." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4553,7 +4554,7 @@ msgstr "" # compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] # [-W wordlist] [-P prefix] [-S suffix] [-X filterpat] # [-F function] [-C command] [word] -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4570,7 +4571,7 @@ msgstr "" " por uzo en ŝelfunkcio generanta eblajn kompletigojn.\n" " Se eventuala argumento word estas donita, generu ĝiajn kongruaĵojn." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4599,7 +4600,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/es.gmo b/po/es.gmo index 39f578cc148478d26481f2ba02ed51ab7d2e8950..73d04fdc3361d92b1f90f8933565dc54f0862726 100644 GIT binary patch delta 25 hcmdn?iE-N}#tqk8xh!>!OcV?atxPO8KX45*1^|kZ34Q\n" "Language-Team: Spanish \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "subndice de matriz incorrecto" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: nombre de accin invlido" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: no se puede asignar a un ndice que no es numrico" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -64,32 +64,32 @@ msgstr "no hay un `%c' que cierre en %s" msgid "%s: missing colon separator" msgstr "%s: falta un `:' separador" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "`%s': nombre de combinacin de teclas invlido" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: no se puede leer: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "%s: no se puede desenlazar" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s': nombre de funcin desconocido" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s no est enlazado a ninguna tecla.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s se puede invocar a travs de " @@ -239,12 +239,12 @@ msgstr "%s: no es una orden interna del shell" msgid "write error: %s" msgstr "error de escritura: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: error al obtener el directorio actual: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: especificacin de trabajo ambigua" @@ -282,7 +282,7 @@ msgstr "s msgid "cannot use `-f' to make functions" msgstr "no se puede usar `-f' para hacer funciones" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funcin de slo lectura" @@ -321,7 +321,7 @@ msgstr "%s: no se carg msgid "%s: cannot delete: %s" msgstr "%s: no se puede borrar: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -339,7 +339,7 @@ msgstr "%s: el fichero es demasiado grande" # file=fichero. archive=archivo. Si no, es imposible traducir tar. sv # De acuerdo. Corregido en todo el fichero. cfuga -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: no se puede ejecutar el fichero binario" @@ -464,7 +464,7 @@ msgstr "no se puede usar m msgid "history position" msgstr "posicin en la historia" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: fall la expansin de la historia" @@ -491,12 +491,12 @@ msgstr "Error desconocido" msgid "expression expected" msgstr "se esperaba una expresin" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: especificacin de descriptor de fichero invlida" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: descriptor de fichero invlido: %s" @@ -689,17 +689,17 @@ msgstr "" " \n" " Puede ver la pila de directorios con la orden `dirs'." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: especificacin de tiempo de expiracin invlida" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "error de lectura: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "slo se puede usar `return' en una funcin o un guin ledo con `source'" @@ -872,37 +872,37 @@ msgstr "%s: variable desenlazada" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aha expirado mientras esperaba alguna entrada: auto-logout\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "no se puede redirigir la salida estndard de /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': carcter de formato invlido" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "error de escritura: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restringido: no se puede especificar `/' en nombres de rdenes" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: no se encontr la orden" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: intrprete errneo" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "no se puede duplicar el df %d al df %d" @@ -983,7 +983,7 @@ msgstr "%s: se esperaba una expresi msgid "getcwd: cannot access parent directories" msgstr "getcwd: no se puede acceder a los directorios padres" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "no se puede reestablecer el modo nodelay para el df %d" @@ -1004,148 +1004,148 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" "save_bash_input: el almacenamiento intermedio ya existe para el nuevo df %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "el pid `forked' %d aparece en el trabajo en ejecucin %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "borrando el trabajo detenido %d con grupo de proceso %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" # Cambiara 'hay' por 'existe' em+ -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no existe tal pid" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Seal Desconocida #%d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Hecho" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Detenido" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Detenido" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Ejecutando" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Hecho(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Salida %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Estado desconocido" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(`core' generado) " -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(dir ahora: %s)\n" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "error en la ejecucin de setpgid (%d a %d) en el proceso hijo %d: %s\n" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld no es un proceso hijo de este shell" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No hay un registro del proceso %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: el trabajo %d est detenido" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: el trabajo ha terminado" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: el trabajo %d ya est en segundo plano" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: aviso: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (`core' generado)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(dir ahora: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: fall getpgrp: %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: disciplina de lnea: %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: fall getpgrp: %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "no hay control de trabajos en este shell" @@ -1412,31 +1412,31 @@ msgstr "cprintf: `%c': car msgid "file descriptor out of range" msgstr "descriptor de fichero fuera de rango" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: redireccionamiento ambiguo" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: no se puede sobreescribir un fichero existente" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restringido: no se puede redirigir la salida" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "no se puede crear un fichero temporal para el documento here: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/anfitrion/puerto no tiene soporte sin red" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "error de redireccin: no se puede duplicar el df" @@ -1515,7 +1515,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use la orden `bashbug' para reportar bichos.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operacin invlida" @@ -1701,77 +1701,77 @@ msgstr "Se msgid "Unknown Signal #%d" msgstr "Seal Desconocida #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "sustitucin errnea: no hay un `%s' que cierre en %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: no se puede asignar una lista a un miembro de la matriz" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "no se puede crear la tubera para la sustitucin del proceso" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "no se puede crear un proceso hijo para la sustitucin del proceso" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "no se puede abrir la tubera llamada %s para lectura" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "no se puede abrir la tubera llamada %s para escritura" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "no se puede duplicar la tubera llamada %s como df %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "no se pueden crear la tubera para la sustitucin de la orden" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "no se puede crear un proceso hijo para la sustitucin de la orden" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: no se puede duplicar la tubera como df 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parmetro nulo o no establecido" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresin de subcadena < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: sustitucin errnea" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: no se puede asignar de esta forma" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sustitucin errnea: no hay un `%s' que cierre en %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "no hay coincidencia: %s" @@ -1815,16 +1815,16 @@ msgstr "%s: se esperaba un operador binario" msgid "missing `]'" msgstr "falta `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "nmero de seal invlido" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: valor errneo en trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" @@ -1832,7 +1832,7 @@ msgstr "" "run_pending_traps: el manejador de seal es SIG_DFL, reenviando %d (%s) a m " "mismo" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: seal errnea %d" @@ -1847,34 +1847,34 @@ msgstr "error al importar la definici msgid "shell level (%d) too high, resetting to 1" msgstr "el nivel de shell (%d) es demasiado alto, se reestablece a 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no hay contexto de funcin en el mbito actual" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no hay contexto de funcin en el mbito actual" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "carcter invlido %d en exportstr para %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "no hay `=' en exportstr para %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: la cabeza de shell_variables no es un contexto de funcin" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no es un contexto global_variables" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: la cabeza de shell_variables no es un mbito de ambiente temporal" @@ -3340,8 +3340,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3381,7 +3382,7 @@ msgstr "" " cero, a menos que se encuentre un final de lnea, read expire, o se\n" " proporcione un descriptor de fichero invlido como el argumento de -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3393,7 +3394,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3562,7 +3563,7 @@ msgstr "" "no\n" " se proporciona ningn ARG, se muestran todas las variables del shell." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3582,7 +3583,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3601,7 +3602,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3621,7 +3622,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3632,7 +3633,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3651,7 +3652,7 @@ msgstr "" " Si se proporciona cualquier ARGUMENTS, se convierten en los parmetros\n" " posicionales cuando se ejecuta FILENAME." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3665,7 +3666,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3818,7 +3819,7 @@ msgstr "" " Los operadores binarios aritmticos devuelven verdadero si ARG1 es\n" " igual, no igual, menor, menor o igual, mayor, mayor o igual que ARG2." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3829,7 +3830,7 @@ msgstr "" "Este es un sinnimo para la orden interna \"test\", pero el ltimo\n" " argumento debe ser un `]' literal, que coincida con el `[' inicial." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3841,7 +3842,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3895,7 +3896,7 @@ msgstr "" "con\n" " \"kill -signal $$\"." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3925,7 +3926,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -4003,7 +4004,7 @@ msgstr "" " -t, el cual es en segundos, -p, el cual es en incrementos de 512 bytes,\n" " y -u, el cual es un nmero de procesos sin escala." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4021,7 +4022,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -4038,7 +4039,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -4059,7 +4060,7 @@ msgstr "" " de trabajo, se espera a todos los procesos en la lnea de ejecucin\n" " del trabajo." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -4077,7 +4078,7 @@ msgstr "" " se asume `in \"$@\"'. Para cada elemento en WORDS, se define NAME\n" " como ese elemento, y se ejecutan COMMANDS." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -4103,7 +4104,7 @@ msgstr "" " EXP1, EXP2, y EXP3 son expresiones aritmticas. Si se omite\n" " cualquier expresin, se comporta como si se evaluara a 1." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -4137,7 +4138,7 @@ msgstr "" " COMMANDS despus de cada seleccin hasta que se ejecuta\n" " una orden break." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -4160,7 +4161,7 @@ msgstr "" " el resumen de tiempos en un formato ligeramente diferente, usando\n" " el valor de la variable TIMEFORMAT como el formato de salida." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -4174,7 +4175,7 @@ msgstr "" "Ejecuta RDENES selectivamente basado en coincidencias de la PALABRA con\n" " el PATRN. Se utiliza `|' para separar patrones mltiples." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4207,7 +4208,7 @@ msgstr "" "result\n" " verdadera." -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4221,7 +4222,7 @@ msgstr "" "Expande y ejecuta RDENES mientras la orden final en las RDENES\n" " `while' tenga un estado de salida de cero." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4235,7 +4236,7 @@ msgstr "" "Expande y ejecuta RDENES mientras la orden final en las RDENES\n" " `until' tengan un estado de salida que no sea cero." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4249,7 +4250,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4263,7 +4264,7 @@ msgstr "" "Corre un conjunto de rdenes en un grupo. Esta es una forma de redirigir\n" " un conjunto completo de rdenes." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4284,7 +4285,7 @@ msgstr "" " especificacin del trabajo se hubiera proporcionado como\n" " un argumento de `bg'." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4298,7 +4299,7 @@ msgstr "" "Se evalua EXPRESSION de acuerdo a las reglas de evaluacin\n" " aritmtica. Equivalente a \"let EXPRESSION\"." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4344,7 +4345,7 @@ msgstr "" " patrn. Los operadores && y || no evalan EXPR2 si EXPR1 es\n" " suficiente para determinar el valor de una expresin." -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4458,7 +4459,7 @@ msgstr "" " \t\tpara decidir cules rdenes se deben guardar en la lista de\n" " \t\thistoria.\n" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4509,7 +4510,7 @@ msgstr "" " \n" " Puede ver la pila de directorios con la orden `dirs'." -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4555,7 +4556,7 @@ msgstr "" " \n" " Puede ver la pila de directorios con la orden `dirs'." -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4603,7 +4604,7 @@ msgstr "" " -N\tmuestra la N-sima entrada contando desde la derecha de la lista\n" " mostrada por dirs cuando se invoca sin opciones, empezando de cero." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4624,7 +4625,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4667,7 +4668,7 @@ msgstr "" " -v, la salida se coloca en el valor de la variable de shell VAR\n" " en lugar de enviarla a la salida estndard." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4689,7 +4690,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4709,7 +4710,7 @@ msgstr "" "coincidencias\n" " contra WORD." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4738,7 +4739,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/et.gmo b/po/et.gmo index a3b0d6ee4268dd8cbcf196d42fe32d896c8f4b94..97827593a48e88c2e38ff20dacbd65cd00627956 100644 GIT binary patch delta 23 ecmaDD|1f^TJXtPFT_Y0(LqjVQ%grlfErkGVXa}wU delta 23 ecmaDD|1f^TJXtOaT_aNkLqjV=\n" "Language-Team: Estonian \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8-bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "vigane massiivi indeks" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: vigane tegevuse nimi" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: mitte-numbrilisele indeksile ei saa omistada" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -62,32 +62,32 @@ msgstr "sulgev `%c' puudub %s sees" msgid "%s: missing colon separator" msgstr "%s: puudub eraldav koolon" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: ei saa lugeda: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "`%s': ei saa lahti siduda" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s': tundmatu funktsiooni nimi" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s ei ole seotud hegi klahviga.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s saab kasutada lbi " @@ -236,12 +236,12 @@ msgstr "%s: ei ole sisek msgid "write error: %s" msgstr "kirjutamise viga: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: segane t" @@ -277,7 +277,7 @@ msgstr "saab kasutada ainult funktsioonis" msgid "cannot use `-f' to make functions" msgstr "vtit `-f' ei saa funktsiooni loomiseks kasutada" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funktsioon ei ole muudetav" @@ -316,7 +316,7 @@ msgstr "%s: pole d msgid "%s: cannot delete: %s" msgstr "%s: ei saa kustutada: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -332,7 +332,7 @@ msgstr "%s: ei ole tavaline fail" msgid "%s: file is too large" msgstr "%s: fail on liiga suur" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kahendfaili ei nnestu kivitada" @@ -445,7 +445,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "" @@ -472,12 +472,12 @@ msgstr "Tundmatu viga" msgid "expression expected" msgstr "oodati avaldist" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -611,17 +611,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "viga lugemisel: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -792,37 +792,37 @@ msgstr "%s: sidumata muutuja" msgid "\atimed out waiting for input: auto-logout\n" msgstr "" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "kirjutamise viga: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: piiratud: kskudes ei saa kasutada smboleid `/'" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: ksku ei ole" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: halb interpretaator" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -897,7 +897,7 @@ msgstr "%s: oodati t msgid "getcwd: cannot access parent directories" msgstr "getcwd: vanemkataloogidele ei ole juurdepsu" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -912,144 +912,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: pid puudub" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: t %d on peatatud" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: t on lpetatud" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: t %d on juba taustal" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: hoiatus: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "" @@ -1301,31 +1301,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "faili deskriptor on piiridest vljas" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: segane mbersuunamine" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: fail on olemas, ei kirjuta le" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: piiratud: vljundit ei saa mber suunata" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "viga mbersuunamisel: fd duplikaadi loomine ei nnestu" @@ -1392,7 +1392,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Vigadest teatamiseks kasutage ksku `bashbug'.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: vigane operatsioon" @@ -1568,77 +1568,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameeter on null vi pole seatud" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: halb asendus" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: sedasi ei saa omistada" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sulgev `%c' puudub %s sees" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "ei leitud: %s" @@ -1675,23 +1675,23 @@ msgstr "%s: eeldati binaarset operaatorit" msgid "missing `]'" msgstr "puudub `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "vigane signaali number" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: halb vrtus muutujas trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" "run_pending_traps: signaali ksitleja on SIG_DFL, saadan %d (%s) iseendale" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: vigane signaal %d" @@ -1706,33 +1706,33 @@ msgstr "" msgid "shell level (%d) too high, resetting to 1" msgstr "shelli tase (%d) on liiga krge, kasutan vrtust 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: praegune skoop pole funktsiooni kontekst" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: praegune skoop pole funktsiooni kontekst" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: pole global_variables kontekst" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2841,8 +2841,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2851,7 +2852,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2863,7 +2864,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -2945,7 +2946,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -2965,7 +2966,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -2984,7 +2985,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3004,7 +3005,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3015,7 +3016,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3029,7 +3030,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3043,7 +3044,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3120,7 +3121,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3128,7 +3129,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3140,7 +3141,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3176,7 +3177,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3206,7 +3207,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3250,7 +3251,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3268,7 +3269,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3285,7 +3286,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3299,7 +3300,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3312,7 +3313,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3329,7 +3330,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3349,7 +3350,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3365,7 +3366,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3376,7 +3377,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3397,7 +3398,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3408,7 +3409,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3419,7 +3420,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3433,7 +3434,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3444,7 +3445,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3458,7 +3459,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3469,7 +3470,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3497,7 +3498,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3551,7 +3552,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3582,7 +3583,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3609,7 +3610,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3638,7 +3639,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3659,7 +3660,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3689,7 +3690,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3711,7 +3712,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3724,7 +3725,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3753,7 +3754,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/fr.gmo b/po/fr.gmo index cc65ca6464ea5f88990e1d217fbf931bc22825f7..e732aea8e9c79bc6a65032d870785870dc876096 100644 GIT binary patch delta 25 hcmX?ho$=Up#tn>CT$Z{CTo$@UrV56JR))r#xvh2^0swX;2m$~A diff --git a/po/fr.po b/po/fr.po index 7faa01d4..0ea3bf48 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-03-13 13:10+0100\n" "Last-Translator: Christophe Combelles \n" "Language-Team: French \n" @@ -16,26 +16,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "mauvais indice de tableau" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s : nom d'action non valable" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s : impossible d'assigner à un index non numérique" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -66,32 +66,32 @@ msgstr "pas de « %c » de fermeture dans %s" msgid "%s: missing colon separator" msgstr "%s : virgule de séparation manquante" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "« %s » : nom du mappage clavier invalide" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s : impossible de lire : %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "%s : impossible à délier" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "%s : nom de fonction inconnu" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s n'est lié à aucune touche.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s peut être appelé via " @@ -241,12 +241,12 @@ msgstr "%s : ceci n'est pas une primitive du shell" msgid "write error: %s" msgstr "erreur d'écriture : %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s : erreur de détermination du répertoire actuel : %s : %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s : spécification de tâche ambiguë" @@ -286,7 +286,7 @@ msgstr "utilisable seulement dans une fonction" msgid "cannot use `-f' to make functions" msgstr "« -f » ne peut pas être utilisé pour fabriquer des fonctions" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s : fonction en lecture seule" @@ -325,7 +325,7 @@ msgstr "%s : non chargé dynamiquement" msgid "%s: cannot delete: %s" msgstr "%s : impossible d'effacer : %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -341,7 +341,7 @@ msgstr "%s : ceci n'est pas un fichier régulier" msgid "%s: file is too large" msgstr "%s : le fichier est trop grand" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s : fichier binaire impossible à lancer" @@ -465,7 +465,7 @@ msgstr "impossible d'utiliser plus d'une option parmi « -anrw »" msgid "history position" msgstr "position dans l'historique" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s : l'expansion de l'historique a échoué" @@ -493,12 +493,12 @@ msgstr "Erreur inconnue" msgid "expression expected" msgstr "une expression est attendue" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s : spécification de descripteur de fichier non valable" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d : descripteur de fichier non valable : %s" @@ -693,17 +693,17 @@ msgstr "" " \n" " Vous pouvez voir la pile des répertoires avec la commande « dirs »." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s : spécification de délai d'expiration non valable" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "Erreur de lecture : %d : %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "« return » n'est possible que depuis une fonction ou depuis un script exécuté " @@ -880,38 +880,38 @@ msgstr "%s : variable sans liaison" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aattente de données expirée : déconnexion automatique\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "l'entrée standard ne peut pas être redirigée depuis /dev/null : %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT : « %c » : caractère de format non valable" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "erreur d'écriture : %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" "%s : restriction : « / » ne peut pas être spécifié dans un nom de commande" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s : commande introuvable" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s : %s : mauvais interpréteur" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "Impossible de dupliquer le fd %d vers le fd %d" @@ -986,7 +986,7 @@ msgstr "%s : nombre entier attendu comme expression" msgid "getcwd: cannot access parent directories" msgstr "getcwd : ne peut accéder aux répertoires parents" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "Impossible de réinitialiser le mode « nodelay » pour le fd %d" @@ -1003,144 +1003,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input : le tampon existe déjà pour le nouveau fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "le processus cloné n°%d apparaît dans la tâche en fonctionnement %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "suppression de la tâche stoppée %d avec le groupe de processus %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid : %ld : n° de processus inexistant" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait : le processus n°%ld n'est pas un fils de ce shell." -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for : aucun enregistrement du processus n°%ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job : la tâche %d est stoppée" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s : la tâche s'est terminée" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s : la tâche %d est déjà en arrière plan" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s : avertissement :" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "pas de contrôle de tâche dans ce shell" @@ -1402,32 +1402,32 @@ msgstr "cprintf : « %c » : caractère de format invalide" msgid "file descriptor out of range" msgstr "descripteur de fichier hors plage" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s : redirection ambiguë" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s : impossible d'écraser le fichier existant" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s : restreint : impossible de rediriger la sortie" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "" "impossible de créer un fichier temporaire pour le « here-document » : %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port non pris en charge sans réseau" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "" "Erreur de redirection : impossible de dupliquer le descripteur de fichier" @@ -1497,7 +1497,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Utilisez la commande « bashbug » pour faire un rapport de bogue.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask : %d : operation non valable" @@ -1673,78 +1673,78 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s : impossible d'affecter une liste à un élément de tableau" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "Impossible de fabriquer un tube pour une substitution de processus" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "Impossible de fabriquer un fils pour une substitution de processus" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Impossible d'ouvrir le tube nommé « %s » en lecture" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Impossible d'ouvrir le tube nommé « %s » en écriture" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Impossible de dupliquer le tube nommé « %s » vers le fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "Impossible de fabriquer un tube pour une substitution de commande" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" "Impossible de fabriquer un processus fils pour une substitution de commande" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute : impossible de dupliquer le tube vers le fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s : paramètre vide ou non défini" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s : expression de sous-chaîne négative" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s : mauvaise substitution" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s : affectation impossible de cette façon" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "Pas de correspondance : %s" @@ -1781,16 +1781,16 @@ msgstr "%s : opérateur binaire attendu" msgid "missing `]'" msgstr "« ] » manquant" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "Numéro de signal non valable" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps : mauvaise valeur dans trap_list[%d] : %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" @@ -1798,7 +1798,7 @@ msgstr "" "run_pending_traps : le gestionnaire de signal est SIG_DFL, %d (%s) renvoyé à " "moi-même" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler : mauvais signal %d" @@ -1813,39 +1813,39 @@ msgstr "erreur lors de l'import de la définition de fonction pour « %s »" msgid "shell level (%d) too high, resetting to 1" msgstr "niveau de shell trop élevé (%d), initialisation à 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" "make_local_variable : aucun contexte de fonction dans le champ d'application " "actuel" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" "all_local_variables : aucun contexte de fonction dans le champ d'application " "actuel" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "caractère %d non valable dans « exportstr » pour %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "Pas de « = » dans « exportstr » pour %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context : le début de « shell_variables » n'est pas un contexte de " "fonction" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context : aucun contexte à « global_variables »" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope : le début de « shell_variables » n'est pas un champ d'application " @@ -3285,8 +3285,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3335,7 +3336,7 @@ msgstr "" "ne soit\n" " fourni pour l'argument « -u »." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3347,7 +3348,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3520,7 +3521,7 @@ msgstr "" "variables du shell\n" " sont affichées." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3540,7 +3541,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3559,7 +3560,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3579,7 +3580,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3590,7 +3591,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3611,7 +3612,7 @@ msgstr "" "position\n" " lorsque FILENAME est exécuté." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3625,7 +3626,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3773,7 +3774,7 @@ msgstr "" " non-égal, inférieur, inférieur ou égal, supérieur, supérieur ou égal à " "ARG2." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3784,7 +3785,7 @@ msgstr "" "Ceci est un synonyme de la primitive « test », mais le dernier argument\n" " doit être le caractère « ] », pour fermer le « [ » correspondant." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3796,7 +3797,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3855,7 +3856,7 @@ msgstr "" "au\n" " shell avec « kill -signal $$ »." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3885,7 +3886,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3967,7 +3968,7 @@ msgstr "" " « -p » qui prend un multiple de 512 octets et « -u » qui prend un nombre\n" " sans unité." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3985,7 +3986,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -4002,7 +4003,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -4022,7 +4023,7 @@ msgstr "" " spécificateur de tâche. Si c'est un spécificateur de tâche, tous les\n" " processus présents dans le tube de la tâche sont attendus." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -4040,7 +4041,7 @@ msgstr "" " utilisé. Pour chaque élément dans WORDS, NAME est défini à cet élément,\n" " et les COMMANDS sont exécutées." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -4067,7 +4068,7 @@ msgstr "" "expression\n" " omise, elle se comporte comme si elle s'évaluait à 1." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -4099,7 +4100,7 @@ msgstr "" " Les COMMANDS sont exécutées après chaque sélection jusqu'à ce qu'une\n" " commande « break » soit exécutée." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -4121,7 +4122,7 @@ msgstr "" " L'option « -p » affiche le résumé dans un format légèrement différent.\n" " Elle utilise la valeur de la variable TIMEFORMAT comme format de sortie." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -4136,7 +4137,7 @@ msgstr "" " motif PATTERN de correspondance des mots WORDS. Le caractère\n" " « | » est utilisé pour séparer les différents motifs." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4170,7 +4171,7 @@ msgstr "" "exécutée\n" " ou zéro si aucune condition n'était vraie. " -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4185,7 +4186,7 @@ msgstr "" " que la commande finale parmi celles de « while » se termine avec un\n" " code de retour de zéro." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4200,7 +4201,7 @@ msgstr "" " que les commandes de « until » se terminent avec un code de retour\n" " différent de zéro." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4214,7 +4215,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4228,7 +4229,7 @@ msgstr "" "Lance un ensemble de commandes d'un groupe. Ceci est une façon de\n" " rediriger tout un ensemble de commandes." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4249,7 +4250,7 @@ msgstr "" "avait\n" " été fournie comme argument de « bg »." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4263,7 +4264,7 @@ msgstr "" "L'EXPRESSION est évaluée selon les règles de l'évaluation arithmétique.\n" " C'est équivalent à « let EXPRESSION »." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4309,7 +4310,7 @@ msgstr "" " est effectuée. Les opérateurs « && » et « || » n'évaluent pas EXPR2 si\n" " EXPR1 est suffisant pour déterminer la valeur de l'expression." -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4432,7 +4433,7 @@ msgstr "" " \t\tdécider quelles commandes doivent être conservées dans la liste " "d'historique.\n" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4482,7 +4483,7 @@ msgstr "" " \n" " Vous pouvez voir la pile des répertoires avec la commande « dirs »." -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4526,7 +4527,7 @@ msgstr "" " \n" " Vous pouvez voir la pile des répertoires avec la commande « dirs »." -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4579,7 +4580,7 @@ msgstr "" "la\n" " liste affichée par « dirs » lorsque celle-ci est appelée sans option." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4600,7 +4601,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4650,7 +4651,7 @@ msgstr "" "placée dans\n" " la variable VAR plutôt que d'être envoyée vers la sortie standard." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4672,7 +4673,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4693,7 +4694,7 @@ msgstr "" "»\n" " sont générées." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4722,7 +4723,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/hu.gmo b/po/hu.gmo index fa0d67fdf51a242846844f8f30a6f5a99232ca21..2b8222dca14a8390f6dd117e6a7c97cf27125465 100644 GIT binary patch delta 23 ecmezF_1$a3D={uhT_Y0(LqjVQ%gtZJn)v{8N(g`e delta 23 ecmezF_1$a3D={t$T_aNkLqjV=\n" "Language-Team: Hungarian \n" @@ -15,26 +15,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "hibs tmb a tmbindexben" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: rossz opci" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nem lehet hozzrendelni nem szm indexet" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -63,32 +63,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: nem lehet ltrehozni: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: parancs nem tallhat" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s Csak olvashat funkci" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -241,12 +241,12 @@ msgstr "" msgid "write error: %s" msgstr "Cs (pipe)hiba %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: Nem egyrtelm tirnyts" @@ -283,7 +283,7 @@ msgstr "A local-t csak funkci msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s Csak olvashat funkci" @@ -322,7 +322,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: nem lehet ltrehozni: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -338,7 +338,7 @@ msgstr "%s: nem futtathat msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nem futtathat binris fjl" @@ -452,7 +452,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s egsz szm szksges" @@ -480,12 +480,12 @@ msgstr "Ismeretlen hiba %d" msgid "expression expected" msgstr "vrhat kifejezs" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -622,17 +622,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "Cs (pipe)hiba %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -812,37 +812,37 @@ msgstr "%s felszabad msgid "\atimed out waiting for input: auto-logout\n" msgstr "%c tl sokig nem csinlt semmit:automatikus kilps\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "Cs (pipe)hiba %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: fenntartva: parancs nem tartalmazhat '/' karaktert" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: parancs nem tallhat" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: egy knyvtr" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nem msolhat a fd %d fd 0: %s-re" @@ -921,7 +921,7 @@ msgstr "%s eg msgid "getcwd: cannot access parent directories" msgstr "getwd: nem elrhet a szl knyvtr" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nem msolhat a fd %d fd 0: %s-re" @@ -937,147 +937,147 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "check_bash_input: puffer mr ltezik az j fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Nem ltez pid (%d)!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Ismeretlen #%d Szignl" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Ksz" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Meglltva" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Meglltva" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Fut" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Ksz (%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Kilps %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Ismeretlen llapot" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(memria kirs)" -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(wd most: %s)\n" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "gyermek-folyamat setpgid (%d -rl %d-ra) hiba %d: %s\n" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "vrjon:a %d nem utda ennek a parancsrtelmeznek" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: munkafolyamat megszakadt" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "foglalat %3d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "(memria kirs)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd most: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp sikertelen: %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: sor fegyelem %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp sikertelen: %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "nincs munkafolyamat ellenrzs ezen a parancsrtelmezn" @@ -1336,31 +1336,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: Nem egyrtelm tirnyts" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: Nem lehet megsemmisteni ltez fjlt" -#: redir.c:155 +#: redir.c:156 #, fuzzy, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: fenntartva: parancs nem tartalmazhat '/' karaktert" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "nem lehet ltrehozni a pipe-ot feladat behelyettestshez: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "tirnytsi hiba" @@ -1433,7 +1433,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1608,84 +1608,84 @@ msgstr "Ismeretlen # Szign msgid "Unknown Signal #%d" msgstr "Ismeretlen #%d Szignl" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "rossz behelyettests: ne a %s be a %s-t" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nem lehet a listhoz rendelni az elemet" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "nem lehet ltrehozni a pipe-ot feladat behelyettestshez: %s" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "" "nem lehet ltrehozni a gyermekfolyamatott feladat behelyettestshez: %s" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "nem lehet ltrehozni a %s \"named pipe\"-ot a %s-nek: %s" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "nem lehet ltrehozni a %s \"named pipe\"-ot a %s-nek: %s" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nem lehet msolni a %s \"named pipe\"-ot mint fd %d :%s" -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "nem lehet ltrehozni a \"pipe\"-ot parancs behelyettestshez: %s" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "" "nem lehet ltrehozni a gyermekfolyamatot a parancs behelyettestshez: %s" -#: subst.c:4808 +#: subst.c:4811 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nem lehet msolni a \"pipe\"-ot mint fd 1: %s" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s paramter semmis vagy nincs belltva" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s szvegrsz kifejezs < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s rossz behelyettests" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s gy nem lehet hozzrendelni" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "rossz behelyettests: ne a %s be a %s-t" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1722,23 +1722,23 @@ msgstr "%s:bin msgid "missing `]'" msgstr "hinyz ']'" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "rossz jel(signal) szm" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, fuzzy, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Rossz jel(signal) %d" @@ -1753,33 +1753,33 @@ msgstr "hiba a %s funkci msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2945,8 +2945,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2955,7 +2956,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2967,7 +2968,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3049,7 +3050,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3069,7 +3070,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3088,7 +3089,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3108,7 +3109,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3119,7 +3120,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3133,7 +3134,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3147,7 +3148,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3224,7 +3225,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3234,7 +3235,7 @@ msgid "" msgstr "" "egy ']' szvegkonstansnak kell lennie, hogy prban legyen a nyit '['-val." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3246,7 +3247,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3282,7 +3283,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3312,7 +3313,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3356,7 +3357,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3374,7 +3375,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3391,7 +3392,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3405,7 +3406,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3418,7 +3419,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3435,7 +3436,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3455,7 +3456,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3471,7 +3472,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -3483,7 +3484,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Felttelesen futtatja a PARANCSOT ha a SZ megegyezik a MINTVAL. A" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3504,7 +3505,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -3516,7 +3517,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Kibontja s vgrehajtja a PARANCSOT amg az utols parancs a " -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -3528,7 +3529,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Kibontja s vgrehajtja a PARANCSOT amg az utols parancs a " -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3542,7 +3543,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -3554,7 +3555,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Parancsok halmazt futtatja egy csoportban. Ez az egyik mdja az" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3568,7 +3569,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3579,7 +3580,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3607,7 +3608,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3661,7 +3662,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3692,7 +3693,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3719,7 +3720,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3748,7 +3749,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3769,7 +3770,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3799,7 +3800,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3821,7 +3822,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3834,7 +3835,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3863,7 +3864,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/id.gmo b/po/id.gmo index 4d4943a42a2a055aee57daa127e2d0640dd9ddc4..5ae906b6f84142352ebc928cc815778190329e3d 100644 GIT binary patch literal 154986 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 z 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 delta 39753 zcmbt-33yc1+5bJmngFte5CS9@2qZveNLXW70|W?55+I@|NG8c788Vp(vw(47M6@oo zYCY9sU2E%(JJx9VT(H&Ft?sQGC~931sdcMM{r}$goO@@2w*CIkH_vnV-SsT*dG~Wp z`0#fb-|gy?+&`q}B^G|?3(Fb>Jhi`NjrLg9>p67SvTDaz)+FF+;1J-cz}dhHfd#-P zfdY8g-2W6f7uUYAmNgF;0?q{P0*(W|1)K%!jf**!m9*yJqyjfiG57#*I0C~y>TIIsjr1urwW30Q>dtw40bx(1j9d<008`zvq)@H2xWXIR!STrV_u9MFgB zFpxTO6)+q1TmOR-qV@~Gk-&q%(ZIf-8#QPGkSZ)U*BgO@aJ>ac@0|f02K*Ip3h-WY z{VtGt`Yq5490t-N*_oTVMADE5n@5?}c>T&kby5gxodT|Yqh9qFF6F~al z93WMA4R8do3rG!n4mbdK5J(O98b}?Zz z(Ml$90!Fv)2T~9B0s8?z1JZ}|&!irfH6M6hCP)iW$?k1gpRWL?3oz{(a5`Q)d#z=? zq9sg$C@}2oA*y4>mv~P?2b~ ztoL!fuNmWy7anVY%;WwU?YM{g-*xCMYujo=^=d_I0Dx%1MfvgJ_VkD?{2=zvZ`>u z*RL$=Vv_$FoLp_80N`rij%zLJ4&V#GO5o04gRy{*1JP;g-rwl4F1ij>K!MG`?YO`A zM$Id~2j=1W4d7us{}*r?u0OfOvW`PT$L&G~aDD2nmUS!Yw_e4`b$D?0Z6Fh_i&6U* zxV{EB2G^I~rRD!VAW6k*!25w80ZBDqf464BXMxnqvfyAw+?A4@x1XzRnuL0w@Kl%5T^(L-= z1zd>h9gpe;`~eui&}BZRrKRI3^c>H(14je@3Z#aA{uJon9|hP?gKL4_KeJJ=>Yss# z;DxJzLxFz*4hMb+91Qe4t4W*%9FOa1zyjcUAicjGNMnC7kcQ$`;27YOz)`@Dfg^#L z&w>8^aWdgKEq>F0g}7c0yci9N0*}UZuNSm&nGfuX>nh-2;2I!R+ypEIo(mib+yfj0 zd^Kl&m zQh^dU0k{W9-@j#Wz+bcqFEiKxB#NDHFnKplY}|MmNIm$c!O4HMtQol82qXv(90} z_$P5fEqVk<4fzmA6^wX8lXMBN1lR4rUcjq?MZoKTG{#RG+z%Xv>ra4Xz+P_}>j6G#pE4mbpu`L=H8 zXdqR%07%a_04sq(;B?>}z{S9Kfb)S9-_aBe0_nX=fn$KLzXSRIzylSD8)I?f{r7Z5 z{odD}OdgONkZK@F!%4sqz*~XD?T-Pc0zU>4v)Ui%iq-*1T6O}7l6!%fz!%K@{Xk;U zQ6GZ-RXC~sP`CUt;6z+M4J1;238aSg_(=D30+1@62BZp(2NFpy17-tv1BsWOFxQ^~ ziIN!yb;BkAsrjX*E( zFTh#Ao`EW1-uXauIB9j^gev|TNDayR z)Us9x6bz&u-0%-giC2I`p@TpwaLQ*o@K^&Z$8{Z$nCn8|GT=)<62rXDb%n6hBnmhHxEn|m+Y6-c zUj-5+z6KJH6!g*G&j-@?>wrU1ztxG8;lQ5(iMy`{+Q5hC1>l=NYQSeeqSTnaf;C;T<3~<>I4i4!7SE0DPMG9dNrfWdEo)PP}w1RI+Y;B;J90M`Jw z0?UDqoBKTn3+otM9}S!hybxFgd=j`6IBbaEaC{?>q#^kWoDfO>2s{e-I&c;6BjETR zC}^m#0{sv=Wee-Z-WcOC!a5J)*^b)=Pei3B2;+y3Sq@@{lzL2i05rJ!rBS^GcXF;uBjE)DY$-ggRm07ijDXl z<#hpf;Je9wVO<0Mvu@6b~pa238Q?i5xv?w@>$ur32W4&06Ut%g%UVqo@Z z=rQnAU=47=c42)Dya>1j_){<|joEj=ktnd_bWP%wX9)Ha{s|=cAHP#ri_z0#fk)%| z%AW{p8yfl-LR?p$gCPSx228$&2REE6IEXysr^1?#g8Q5=*i%`0fyNFXaqBOEuK;fV zlI}nKLd{gS18Z^p1#lB^=|#f22<6-egalh~{^dYYSY77&CEy%fe+s1cr`)M|=Qv;{u1`whgf!7kAhqmD;FD<3Gr+mH zzT$5E;w!*DxPAvX1b7fw4E)|;@oue}*8@o*MSvvEJApKG7X!%#TmxJJd;v&$C7FAV zZut!04BS`)tN@+^BR`HZ?$GS6-Wi%Xz(>4bztDVg1zO1K)Q~Z>l=Wi z=>BT1`*blyl2#c`NQ3!-q_M69(onn%q@IkrPaCHaAaVDxz*)d^fkc75Kw`c_zy-kh z_v^7f9XJ-(Hvx(CPXb9Le+HzE<^PWAgZx$DgbF%~Z$PmCsi%j4WY-J#Xx%>pNCngZ zY3!0f(>FycU>`>-&I1A$~6dC*b|xBiF|lGEM~YYHp? zQcq7c*S7o+f%9>FH;@|gDUekDus;VwLxVez6otW_AmZ-0>TL8%TQI#yS0VYv}fGvv~$Lf`6Ow?;0FY92q#)W8;%B?k2d#lYF&!sR2(PaxBqIi)z_fzvab0Mxe*%0H*DW~6tU5m;C;c|!AU*PTy1;KW-XDx(F^=u}mNgXTBoUwD z*oA|J1iz$pE&lxy$5OgX`;oXz#z+4HTn==8b8t?kcqfi`a0py)#X&ss2oC!F3diZ@ zn-aQ#-xyqHn0v(FgK$2F`o9ntU*TAT8zsN7pJdSU1l;fQ@ zfQ!t#hj4xe4pL0N$3d#q`F(~HxQ*5b9DU5qA;90@n1OpY0uSOy9)pWXIKIcly*Qj7 zDWSjM_}bhU5Bv!Zl9ap5J%WeL`9FYXqMR$uwF7rLCqRYcr&J$sBJg)K{&R71aoS6d z;ruX;y0m+z;GG`0t_7ZwcK<4zZ^hBy-0KT`6vtS+*NEd}od3c+`xmeP_kzIF&AlS> z|Fdv&3l5k9>jOO4U><%4?1`h?Tt5pOfOiUjZ{Z+|_XiyGYr|24XT5RIZxisB`jr12 zhJQ!mUZJ`7H{b+1r|};}C-|L(<7^xarjQWM7vP|u2ls;J{&<6Rz@O{K)*peN;5gA- zKL|VyM?2mjt>`u1Byj!$j&Q`MSKVT zp23BJV3O5kh2 z={QE=d@YWA9OvSCHI8{W=oiI3gosuIM>UR_`nJ^!JQ3H+aL_LgxC+O4I6lYqeBjN% z9XOuHu@TqY|4Lk}z(qUoPdGlp(Td|J+`A1(FP(Cyt+*8&mOo8P2y*(bI7894_|YI2PyhtJc7Ygt$3hfM+k_JP$`Mj`Pj^ z<8a?&&X?f47{{-1Jse2CMjY#Lezv(@X)qIb4Rx)TxlxN3KgN-d;|m;1aM15@4b~aJ z0XSyksKHT!?>6H&3C9z-o@dJGYY?}rFwQH0_v832j_Yuw|N4`eq~8GzRzS!HC;z6m zWz$cd*fFygpUS!G#>sz`Wt*#AkBpQxbMwvBse7k7ALN$jIj1Whaqk}W`&s5yd?YXE z=q(RFGOX|9l0sc}>Sm64ZP1*Ok^Ia)IS`FZw1Y9*AGhPJ0XrV)@LBTlzb%zVy*o|L ze|MQY>)jdhzIQ9-H}9^JOWvC=cfMC3uYYgaP}}xK>_|sE7zumB{`Np7`t#mGbqxiaH}B01%QA~mTGZZv+7D^K}gy1ea!CFFOl zxKPdQiznd^b5#qS{Nlr0dFzKoY7bq!iHom3ERuO2%~2~eaHIL7T(y->&i^P^UiVRv zd;-VekB*ni4pz%w99*ov&BViZ4lb9)ACK-`T2eC2H&s@DTqNTkkCT@G_ux42@gh0) zkS!M+S}iX;v`oHqXqB`-nIczxQZCQ>q(c7TlbQ0XPb%f?!_#Ew@N#+2;j!|?!wY5B z-Nqg}={|eLr0+mw&oy_a&cpiruFd4-)b&uW$EApGWLIZOWBGPATn@ zUzX03Kbu`7Qf!LAn`1+?mm0MDLg6#_^@k2hNx@3u1tOpOaUYT`s)xnzAKw-rTxO zZ#W~ZuACp%1@^G*3^{nt(Y?@u48MH+=;nUwBMH0FAGTwGfV?J>n?)R0kH@h>yD`$< z?hiMi%GVa1visP@gEHmpSLgQTV*GOZs}+6tG#-(Uy}C?hy*6o7LonQA`x_er9q}0R za&sgUifp4kN95wy#`mpn3v{;oI|_G4UVBBz*c)Z?Z*OdpH@z`ezP$emS+xI7xoqFd zM_CIy?WRDpKM{%-+fn(%A7&rLHB~ipq25+G_|{=F?9Gt|5}R-&Zbt*{k*$FyyEz(Z z*FxlP2nCAmhD02%@W<``Xj`C3-tnk+svT<$ghKeJF%aAufZ*{9Ypa$nJEqoW+jSs; z*KY)?*xuF}2+LC+%}Ey9?E!xn9gCRyY=0=kpQ0tPRNd6BIMqK}H#cgE`oZUsaH!Lc zCc?yg)SH;kTI5f}s6}>jBHT!VO|=D13dZeia@=!Sxpu50&=_nEqOT2|b~RcHqEu5O z5Ypk^5mF`2}$?u#zZt42**=j7282yz-QO{3U#|sf!z>j34&(Z zg7H@LDi-p`TJ54K6N{Zv!uF!YwH0;CoRLKLoAlS+8)OE$IU*mf=+EtuPgRU7piY5C z(M~4ywn!BGN91#QPu0i~3&$_gFE%z2J*nia{!k)dM~I{Rac+$BiNgW4&alP&ojmCB zmW2hn_vleP;BTVOQyd=aY;TB!f{k`47;cN1v0v#F(j194Vqm+!q=^s#kxV)0yR|6N z(HRZ4w8rhCMHB6*B_%WMCDA~@UK?qSZ&NpI6j`23Oa8w4=!}&$iz-%f50}-9Pl89< z{cWg2ch8J|b;YVmuBO$$H9&+3#)8BZvBpS80DK&aM}v)VuoKe-Cdg$xh`t?!95=QG zLroZHv@9C%$ElE5u)PCi7zJSm!&@V5NyCz;4C z+QBn1n>ZW8;1mIxq2N#ig21do&9?o~fZgGbfg{YQaT%!w#_WO;+vl?j(6+_H1C1g2 zz!^qxLAYs3Br31|tZ+4d*aBe>7gM!i@NBFj*e-o1xU*sj5>0T@lf<4d* z#NSRdaQjGRoro3cbV^x5UpUP_;=LjoGbW`raYO<;7D<5h?B*awjEb{^&0JPSQ=nmB zq6OmFGLeZMNyKIC=UMWyFQ!Y+muuvCU)u7cFRS|1hXV1!iFQ*Y9FVnN`NT!arl&&yMXkR8NG;G7x7wl@Wkt35H;jW2Cn_qQNjk$Z0jki+wV#FTLf^H;H%$OcIoV&CFv;aViIQ#361V zBUEBt<(g{nJ(mKJlb-cMNw>f3pOi#RD- zLjedtlYFgiL_rujCas(%ryLl0uvUQWvwWhVpg`N+dha&(jcw5&ULd-W+)^LqfyROf zvu(TH8!b$?s8Gk$9AQwEX1}Wkq9Q z2ER@YhCII!Hl=BpeA?en9%{;-gnCJvL3x51n89F!(rLqu3WQ<-IVG^P(s5%PKB2G3 za|^+$vwDI{6ZUEzvMbgsWmRJPJ30d4CRT;qx4li{#ycG6sHYS?Is#EJSv$YExM@Zn z+!*i(k V9LBxzhdblMZt~|%S=^gb0{i9u_C+|J2-Sg_-ViG@*Xy8ep_}#EL5!im zP!l^~ECTSW;HS2d(%Bk_#vsVr^#Zdwo(1^8SO?P8(Ll%_hgP=b{7Cj@?hRvzQDMH=!jE4n$$l;d4}yB?GHbV-XC%b&R*R z%Sdt9}^#i2g`77J5)aQ7}1>$2e5>T&FoSY?#w-yZH`%OXeI#2>!))LvU zb=nBN?Wj{YB4|b=O1f0uzI9p;Je3Ew4&VLl*10|9@>8ZvDWP^n1Mx&Oth;DO(DmrH zU@U;PhuO^~t^;S#xjb!4?ua@lCUVdt+cXn)BG5q(5;1xImTB6JbF{B38thwl5-*UI zLWt1ekGGOh0SiEC5znDa5^xq%?gW|t80Z3WGiOr$O|w(&)3%;nnE*GG%*2wxWB^X` z(+C+)SRRhmCvCe1kys~;R=ZXSI_$HXI?;$=qo!KKPu!{%1q`dv6YX$jFgmP#(9ICu zvcrLGDLdtaMqEg&m6Wp`Y1mAT$C9d*mDCTiE6kU8!WIll14PhT8YD6F;u63WTZ55A z3=s^~WsDFky(U#SlCH#vgj$OkA1o5(LNJK7*HvD@_33&rWp4kispT@mzUxs3>LFoR$aBr36JB##srI zpasHPgV9KsVgtj3WT*8|X;yS&Z}y;L0q)P%6G}EZ9vPLJQQm9e&NO;z<$vUQ)I z;ge%_PL#{f%#_#c9MmVUCE*YGGS%Q;im7ttnSF6{jC_z^$dTXeERy5Sq?b>WH=Mah zzIUci4n1q0ns5c$Q-9V}dC^(5a{pNmVF;UldNTi8DQ`S~GS0G&-%#W@ZU_Q2PwIhz zHK>nwb_6iI?B2&@azmb`d%Zst^v57+l=!0T1WskwhN;>v^21`oa`M{^Wtp1cqu?l6 zv2mz;a98h1e9Ni1Lpuyd)*HZZBcXZg38QspWcY^B!j|P5Cg{uh4O!aYImN)bkr#7h zF~+fCv*}0`YX{@@nWPZ62wsAg9X7tC;G67v60Sm)Ulbh-H--{Tr1wFCZ1696NIGbO z1~DG`f#Y+NEO#&iPMb(H{h=7yYR6mRD(lEvAmc(!HG zYV~I(3*)EwY8m2gf3&exHlI)|-2+6$gvn!7;*fY6Nu_hO_i+B zsWGZ|U*RjD@}amX%3>dfo29dwPI*3cLSHdC6M6tH8UkcXW`1*YHTTEiij*NvSKF|Z z!Dg5n!}HpVr?fg$V2o1JRFZ7}X8JrbYw)?KNl3-I@nAH-t_c)ZFpLn`D0#1&8`T-y zm@NG^Uo&m(x5MNKzsZu@zs*bftR+swOn!>?eY!bl4!b(}B=BDoLd$47B3Q%;n%gLC z8=%xb$LjyN+r%JL7YRwyX*&AE6#GHdx>aODKqzt=4R6ucCKTg3>xhMo2clI-S|qI* z86*Rjwvc^;UE~(a4;~yi(V-Z-_>Kblv9G1~!O2O@|4tXv6_zt}%#+w0-08hhY?fX^biA*Y~i^GFB176o_>pHqBAD2!00Ol zP{<>|{lHLlYmw9Ekm;{(j?O(8+s7P6ZWMV}_+F=W*mlaT4~~-a_x0|Dc7`MJp?kCC zz6YjdSxc*rftG-iueErr9O=~BI~VT0_Rf{P^DNGmvv(DUTU9!ZLf$Mi+!#y#YjaML z2hnK~dvnww?Q#U0kkz6#V5Wy+FK#i~NIeWwt3r5+KEqz)sYw#Mf=3b25oNKkaw+Hq z2OxcH?L^CcZF6$aP~>(Rxik(k3}xlewj%9#X!=Jv!{&8d+n6nDLnAp|h(pG(AgTipRiEb50`u=GMsFA+OGmP|Pkr2%R{|S{Z4fgadiH z#$99%_gTa%T924XnF()C)&?q;Xo$gr!wZBjEw%p;t29ma4{g0dF~jS-(|o`bvPSR&(srzllH z0kv_xK@3hUIjJ|T_Ryzdr#xaMsEoKy__8;bqKa<2Pj2|NcQ6mE;X5c`X!K|AC|Hji zAI~VGb#Mk7BTWd$Q?awps#&?X_SnVXMT8Gv@S28LgmQ2o?OMz+)HmrYdLdp!AkV2} z{@mXr=ii^xvlz6JqxR&2S{Me+S_wxP5e3{dmg7(B(1Ryt@EpnfU<+wvBNF;4YfmnW z#x{mn8j6%ZF|V0h{2nuM65c^1tdm-BYMbMj{fqJ^sXBClTJ&^26Kscm*1-HR6Ez|T zhQ&sv3K}FxQ80E$T;3lr5+0JJ}6LGwBJn zK&;WoNYuue0G|_|>)~=~pRa-|z8U^koU;OZ2{6Q4i;uMYg z@iQjEA4gIICKHd*cM)(d5JtlUSr<12X<80qS+QnK z#d_W`YrG|-$XlQ~5?*6G|d zw{#~kP9hCVO|YvMEvr~Ve5thv27>yg6JlWaX7I3ihYLz$?9?oPAz2;h5Y2nsmEOdK0!?D_v=rT? z5pyQMsc~oIsvpenO%A(`{vLL41?exj+s~LFCcP^_wRb8kYo;fCT`oP55nUpz;4| z`P~CuS<+kHufW8)Ot4x*uwuJoTa%6wn5Oc!g~R2f`$mmEVp#>3tXDnY137R}c0ZrB zhLj`8i@fN(Y`N>avAv376X70BzPKnarG|{uI~jgmP3OgP`?HgYnK3F`?!9=PUID~4 zIf-)Ww&R^reYE&UyJoWIAI2_Dxv9=7BKkl}nnQ~)R0e-WQ649PNG+N9Z)E7?*$>YZ z{BM8$M86%A&puolr}fnG+3SSlA)=KfPh3vyQRai!c~UGK7gR zm=)w@I^_IkN6WLH#fn?`hGqJu0VVlm>1D$ffG$q7ff0>&nxq6* zX$o`f7}3yqmsZ&XLd_WS!RHK5!sp`&+9UE>M)}h$mRZTe?clQAf*Qe05Zn3?r5uUX z>2=JKwNf+bp;i-mU7vZ4UI9J0AVeig?6GE0?NDs2wm8(-v}qcLl|d-SlDg)VlmQhb zGtZr@6MN7l;U+)UWhLNZA|~dA09ASk3KzVNjHP$$4{Z|0LHmpl9urL&BZ~Rp7H4IV zX7)O2B1+PB4JxQ9(U=bvM1coj7(HAezgh_T+q4D6E_S;p9k!c0Z zu^O+L8G!i(4oV~CSEvUZ!cd|z)ny85xfH_=b|XHBV+AE$BV$-d)&WWme8k4V_K$YH zrh9GFMn6163J)*^?2|YB)0Q{W8GuhA|8Y<3(qIs_A(`!-4#UxH8pO8Fd zm{+)t6kBuK8Ui%#-I58^M_8^P*4u4PV2&%6K#>?w=bAjL(H=w{{9d^L~ z>QG~PqS)tpitM2j9`Va={>-O7M3csGN(6Ju6e@GUuKgkxjsrb)R8LWu!}?6GWzuqi z_RwMi-S%F+#LOYcENF@0^a)j`R`wFJvg)ZM(7rIu&Z|&QF>5r+sE!~c(3uu)pbwS}9A*8d@c1gFI;zQy84H}^@b z2i~M_Qwb!bA#|mB7{Xd`k!ehlm#ke>qX4`OAnpdf}66z8@tL<$J(fCGy{USSJf=08mEvrY4+TbYHyOB->j0aZDt)w&aUqd3j5rzTDeFv%a1e zmdJCzAH93u_s0l%!r4AE$>*g0+M%E16=!>sb&-}9#Dmm0wws)Oa3WV?Ijon%x_M$a zJ@T+N4FRa%U?iGm?U1#inJ||t^eP6s2m>-vGe=Er9r1_pnG^hercGHDo_vB2OUr)D zTZZAhTXeB*;K%_jD5y)JtfCf3M2ZQbDH13!6tt>~S66f^lgAqT0S@3AxsK5gKE0~Z z@HOI7*!f08=^%-`;6R~?If%2o5t>gtmM6m8DJW*CRFvhU&%p%g@}-*@i1Si>LrFB4 zGh}+Qpjf_fV7OdyATx{KB@Mw8Ar1}1RY7lYejjZsJ7m`lC1YK4=}>^Pzwi@iDA^s8 z18y8Y(gYCvlIbE!WMw5IEyD-tCF7WOz(CmeM^@hGl^r)ulU zmnYq{Lhik(R35%*ww!qLL|J?DEP2+=w*1Y_^W~d2&yYiJ87rsVGD9}sQX+qG%LIAf zEggNiP@-eWuKB5pZM!b)!%wQ3*));x|2y^#|kXAN|C5wK-Fa(z`^e)!hD~xxSjp z^}GH;)#BN%+2*WLT4Y3ekr$jhZ&N}=N8sA;CMC5ERl${kDEq8`U#+NCzD$JoG_%2d zH_nEhEa4{jc@GKQrxxmF@U)xTRZx+tSitLTnk2Xer)TK&kDfJw<+p%8`=LL770 zQQ7kR`2N;`-DzkeGrFIS$zOJVSiw+U4=YX(K8&_nQox~7mfh;!(1AU)z z$ys&k+!h%a?k%XsrGS8@51dNTp(d$?x$7!c9)k=;Sk(>?+49rc-(f>p1+7MvPH zx;!~d5acbBou~yc-kgqNsCD!!7nsaP` zDudp>b5?~~I$HSDyQ76yh4Ms!dLU2Clrv8}2#VO=fX%DpFm|*|KPDG!nvJ9d{V)oc z?GL8K+qemDQtM=S;il2$`WfAZ$>i-r7*FOOEnLnT?$mox=kxuW?0n=l$PU28MWhcs z$qJ5mpH_5D^vNOhv-=S*7}rtO)gM$#@X;x_3-xiKm@wvlwRU&_TNcPLlUNNd!oaUB5_gaO zud91A9J|+{d=tea(Ja5XysV$Sq-M>kiaHj6`>)szTVHl%zC7;AnK--f$_Dw*EAz&& z&@~s8PGq0LPYc1uH<+cCrTNUlI@NynS8*Hx_PHfy6ps2FYAibsZN!{r3%x)z`MQ?;i+O`RmN zyE-R{Cee%1RGfI4);;lLMQN&*SAUq1#vNxr5l-Eti#j}6>{fleVoEPgnX6{67~h5U zjhBl>?Bmz}UzT`VvVGRPu~s}nzIeDZr7UqPJt?MMo+3tfU0os;dDI6}#lRd*JNmAL z9ct)D%&El!>X*~RNow+RQP*|tbnzRppf(zzb+X>7Cht1EuDzUIY_+kWHM6#+&dVF4 zpuoI~p$yA;&z85e#5;AGT{^3LYKgjIrpU`I^G=;o=o83eFqbFpCu+DQ)qqnzu!MseX>Nm7B427@`{uw9zI2^dXvn7LF&{;9s@{qMQA? zW?TKLNo3{IEVRGfkHu>pk&Y&Na%rKB9h8Y~FR4H86NAQh@d(<{AKsjZhdcdvjb@Jg zZLL9AXd6H3#&|WkMPy_zf_ocjEq4kvJET)D4DbGe*Suh>QOkvQqV5W4gdNji>PyJq zmS_Xn&@tXPO|@Y;qusTlhiCObk5zE#9Ff)ar!uizs9EJ=de>d$Vv6WmIY;#IsOEX% zMYVjsn4w;sFRJ>6BS;pZ+^(4mM3LxfuMm4Y!)eyi4-s*82d@gWCoo5-+LntVvop9| ztv*u}s@va&?sLbhx86alO7@8?jMi0e3wx;E9c)VAv5KoL%f(o;ZJ5icQqROhZ?ngk zzMh~?!tmop7(G*YOT^-|^Qr2Y*To?06V6qaEEcQB&q!pQB@+Zm+sbA%f!=N^~=Rfp+0*HgsEL3YSg7GL|{k-(s*Dp zB+Q}YLO~>q)W(3w84NaoI`X#~`|Gp1MywId{nT4uh?T1NOR-$VzXUlG>Z&irO!eHC zqB0+|y0lXm9Eoq+DM=m!H{!gFBDHW=-dEyyAuoGw74%8Pr;;|?nYg#v4`IdH#={3it{VNZ z7~?@=W$DMl)-$F}$R7C74-f=`l3LRCC=g;|1>*^)v$aaZ#W2yLUaA%2w3klrccAUYHw{N7EISwEYsXyp>q-_Ipl9AGXT%Y731`BpkD*< z&!~hpohdZ!iUpDl{uT^x+78@q8*tGh&}<5NlwewraHAAIB7LH2TY$&79kb_cpdpK+ zmN*)Ew+~FPH1T9^)Z;Kk55$i!nZqi2Jqq}jhfZzF@;K`vx!5Jho**n`PIhB)Z9OtH zBROLTrGmZoG>}D`NxI?uVp<(*zx13p>`im(3yf_mx(=oXxA10H8poJ_GtD0HiWct@ z_w5uzrN3N6+@_6@9viwg+j#YRw4Q*P!X2?`C$F=S7fPvvRUnu!rj--g7c@1hWy3sE zL{wD_^JERdJiXs*8pi#O)BOp(k(X@@6sm#Qp6p@Fz?EjHo31U>R%d2=yh(J?-6Te? zlpozJV!NQT&grSu_d~a}6jTD<$CH zJ=`Kj4$$ILtG5iRF|A_wIAUERat(fXcuWJVKBCw(jE#RdQ+2Ikd{Td;)jl(~mO?|! zCQLl|qne$~3?|78^_c9R(S{CHb%KPdCPhX=4z7sOyCe=ssRdy--F|X;3y_=O9yLZ9 zBQUpGhncRR0Hz$dU~T>w3c}nDNFVm&lqQwipbI;8h+*o=n7DeVHhR2I8J+A5H253T z&tqcfV3uYs$(VE1eul`U3^uurruFq+>`Nx%u)(Ld)pc<(Hrpu`>+kS1f&2Hg(8FXrOi^C3OQ``@} zg_RXE(!j@JHHK%M_)`;xgm67OFg>r077;;R5)p&CF4`t?g~zH>dmDv!2!t9O*W$Am zJ7JF6vO~OB3vJ)3Q!`=Y`(jvDNh6{4e7#N_A!tHC6r-WhLXh4x%pjv1yal_BdZwOj z6vL9}c59*mrW$1#-lgrx=%y26k&o!Z_FVRFi9whwZorFAk>Jq;Hbj8vv1Qdeo2Ov( znm1ueGa515o5^lrzMRS#Ow?mW*Af|xsr~!KDAgXoD7Wtv8A&bJc&o*~4X&G(L{^ch zCYpxRhGor|n!+4PYL?_SW0c|dn{cbuag(qCnud#9VvvW6&_O8Ea5#C;T(j1o+Qn_; z0CT>`R7W+7%V;?YM?QWvphZkr*-h^uX=HXWyY7xA8Fd&g69^y24c#x|R~q;@LK{3s zt1mrO+$XHAe&>msdZ@dO^&k@bnfOwu=Pwk?byAzffQQ@NNz4XA?<77#TVbR)zoG|} z6de{%lSngxXsA>6g!L32smsq2W2X?A!1+*qaORD2C69tX)Hxexg$S{}x-%%UlIA^U zi4vwILm}fUX~8ANA$5pq^gy$dg3&gCKJSLcZsat@-t7(OB-*a*vvtg^%PX%W3C`X8i_GI@OI7{dfnnQx#__ zNRb(OA@}a?UPh1FDrjYvQJ-GS{(~UY5UtA{dYi&pxC}NrATUf+J4rk|UD`5jWWhA@ z2aYKuM}7aO7!JeZPjETtndS)iN`5x$=}uJU@u*9I_A{Tkfyz=^m~z0 z2<6x2*HIt))LKJPq~Q)C6{((0irk6+ZF91&93)Z?HNshlA*JCrj)n7QO^hR>IS3(M zY^68=Nvi!&z@nzMC3BEXDq21N4&0fV2SsL*MT&R(>PFJy0;6$bnnD;oUaJ;F&Wv)l z&`#|Q@J+C10}6xOAv4bOXS&cwGY)2wfrOG0Q^t44969Y}=FouFh$nTtVuXixHK&R+ zMNj}jnKs?&Zcz^Ju%--}mQ_OsNAHom>&-0bf=E6Gx0tvfY1n`%&=hpcp~G6Koz8Y! zB!+EB-3v0Cp403pO@pG@yw#Za;d7Dydf^pfQ^hEskI2wo5w|ObqQ6aYV>*ok^3?QXY=Kc}3?B_6F;( zYS9{#Q_}gM<(L^=L(X2K8W<82M+NO%j$Ee~Qr46pQOI?(I< zLQ3MGMqe)U%!jokji;Y7f28jw)|om`kyH)}b(2T%Z1^*sEu|H7T1@pu;_jbmzgG9% z{Z6Za_CUESN;b0jx;Xeux-?g}Qg6Ycjgbbdp+v=8jXF@|!A3yVwbViNeG!rb`k6x; zQ>&Uf(KBHP(qoh<#{7`8?^wMx!n0%yQ-+yM3rIHuN-V0rcvRTIl>5gYq}dV8Y;icG zm^-AzbjrYL3*t0~Q^GtVY5p2|M2RQuZBWtbu3XQ^5pLR)I;<1Fdcf6%6=Ha1+UtRl zo-wLrsApI|+Q*|EKq+*=cz$oi(bhesSoN2JEzIH)r>$?gYig2nbF}};R(~pom6ogD!pMDG;u=> zty(mfL6TkJAdNsdR5kZiG0+VUc||ZW(SP}#zC@74DkV*)YAH{n1Zh)JGej|T)cq?x zWYp8X)9X$hr390i@KYbtIK|Mn0d64HBEq3Cc~R2jX?19)kU7w(^I|f!mFYzh`N@~W zGFcFZ_c6~%walSphzm)lgkzcv8#M*hHLr-g9>{hOOWMj);3-r?UlHYc-!j*afOs=v zT{iL1`?SpdbiowPMwf==qjQ zuJ%kQAQoX#xQJCD*l$3O5 z2h8VFQhPJl&r!w3iAmLguId;--LyyaU(JTl$d=wUj29^NuH^_GE_bFIXRbAt#!b~D zg~pwsJP%Kslo%DoCDM8+_E>dEppVX2r%lWH)RV$96>1DWE-C$)r3OABN|Uy!wv9Fp zySz!BGMq9>>|y4DW{%7@;&hf4 zIf|q%)0UrMyf}dth_zux2zp`3;#AIC4=dS6XIPoL*b8z@nEQ-|mdDUM(Ja94@`Seg zoc@Su0_hB5WGE6?eaZ&;9M?VNW8o2!C2V!r^#M(otWHIEu4ljPWjyglNvSs6bQG-d zy9^ibrekIgrZVj=Fv=XN88k;SRhN!*=enVu2}wgq!%>=?aJnc{W{O-`v9e-qMKyos zq};n%6G&@{bQDHH4rmNWr#hojk9(NdMR4WVB~*ni$4OfI;O;qgmI66Cj^}k>*L{}SO9UONv ztv@_aw9~kb2})c^{nANAN3|IuQfh&}cN91}%}$SF-7o-+;DNOImeatye3#-1-C!FJ zwL|Rmv@L)cTU3q+OK&%3{^kwG%5FiTC#`JqBTdmR)wPz;GgawP8hcf|mMrB3xUB}S zbFj)p>(+eDs%h0EwO^^pLw|enM>ZW}Dw?v|AWn;`27b8n*d0t}P3@g&syN)i;l9fq zdZX{8Ca}1Z#KSOPN|r|i0)rjNPNtD{jl%!bHxg4nv<4yNPNbMjci-K0OoD9GmfZsH zD5TZ4uEQ`u2wiH^dm5P4T=sXA8+TmmYrXwA3AUn1DnnIAzHGe*nRJ7*^;n0gBwmiK z;mn+gUiF_ihn+Utkd4x1EsKVm0f+K+0&nDcXd7}xY9BJQS|Vsh$LY5*QKp;D?qj1y zX=v1#hsAKpFOtW|w02w{XfUH&O{|QD7KQeG>!_ftuwFKUKVt!9N0X_TMM8#yqRx0w zJyhb!-;6Z5qvpHiAS<1m#sAkhu<^kcY2#t0z7T_6^ha?SG8j+&N#Os+taIb}ZLmj+eJjp zIwZ=w@XtvC#eUr-HbN)y@+Nc%Q671*4#j-dawq^^%;KnTovYTA*J(o5vXnU_Zi43L z#aKKqLxzj~xIhPuLTX@W{>ZG<;8KgV<$2B5*fGg-!h{FFmJ1I#?1G708tPJVJxa$sbMVkHB>Bs>4gk8r48BWt-y-heR zd?Lc(?`>#{MS{ZkD~)H)__>v%^t-4Bem2sF@29?Wb8p}|z{jp9r&>8^i>F*NOK zn1+=jZxaSB5~+>CM#=DeYT905A`N#6YyN2Wa4HpJCNP|>!!QTf3(V6cJ|`w~Of>yf zn;>RAN_FZyO(lXLEIsPo&qS#xRXLwyf#j^uv4qtBxzIa))XATV*5qciLytbb#@`Nt zAFdalX_3Fojhr zoa33KA~~L!${y`0^aR7Ia=YjEcp@@PSy%1cKqu5%L^- zNZl0_LuVmTvd!=8KKWlSBCu56xnk2Gi~c0{T6BmY@A1LNK}z=p7P<2 zcz~y>D^_kIexvbJ50CSdRit@x?j(#WS(?1A{PRX#_UK7hnDq{--*``c|1_ENDN*2= zFip#;PDiuoQt^7^-SVM7p@}tfK{_c7HED)Zu%iG?CQpkH2>~x3Ir4@D)vAAiXLKGbA!hXy>D`_ctIPI?Q8PFh<#vjjoj!`rlBU!eBr-6nq{x#ul3zAT z*Nu93&#}%e>5MB^o!(n(Z32He4CJGf7q<7L$Ay_zEvz#B);y9UX88!~Aa_@?Attq& z=IKF64xtM4o@Le(I?Vx6sLT{)#O#wx zPwqKyUrv$JEO3tLB}dv@fwx6VUXWwZt9eY=OJ8yk+R*x$)qP z7QJBUU8OOp~mJ%|89Le!W!Bu}+AGJHHpB7vj(M^BdaiQF(f9&1fQbqcrOW z8#|@(3QsmV)Sa!i?1o23Us9@vW;4k7fPKZ<4JZKCV5S(17;zeN7y)0ITHzD)n`cO{7np_Lx zMKE75MO@}EjZR~5H{8;$nA2^y&yaaDwM{+cBK6`zrp7Qhh*YCHl1vo!^9i17dmqDF zuhp#&i=XFfcGO~#YL?6M>XS}k4Ujx{@tSC{zitK834BmqlL6Ax zN;ee6Y^!tFBHe0H_daZSM0G*>_?NN6KA8w=NnrKu6_qz)|8o5jOr zVqMc9ILGx~&syxazSry7a8xyhlvV?vZD4u zG%&U6L38$UySuO*s-O|491^*Gj3QAN9};7SS`|MY+75JGn|cIdu|hR>nx~@cvT2?N zg?e$5IA1l@i&t{YX6SD8Wq$aRUsMdB)rXD%`qaJ|p7|NLVt*(6 zK~~yIPO-Ec2*+vpwZ%@f^=S_3POlZz;Orrd@TfiK84lg>wqM@c-7h z2^w|WPLYQ-UAN8kEKy_TV^8RZ$Kjv1j`j>wyXJf57o|iS{DVIaf!&s@(;aTp7bQNG zzrfRu{nqX3@)cryF5aV6G8{;dMYr6Hk2=3fOi^Di@JvxxS0FSPyU;UM#TI&IbuEmD zQ38LNEwve2#XCgpB;3IdW1fJm`_Zk~j;>exJA`+>bEU}%Ti9)zg`-w^h_uN->G&Jv z&Sz@w7IA5Btyz`04tu9|M6o?CYmuii7xYClNELJbhk9n>eD&lGF^_iPIibe?a`7yU zMH4g$*v8j&_aaY$=m!qNWHo#YIL!kpJ=2Dz_G2S&&w7F$ZCZkXl1n^ud*R(+OnqO6 z4QF>P^(<3G%RKAGrf_iYKK&2-vvXE>?iT7_D?KyRbB!X)tN$Y> zII^V7T@JE&Ei{FXIy+;?sHU#+%u}bV@;o*lL^D0qyJb?JngIGgEJ}v1R%cdwCJ)qJ z3@^1OWvCAA7L(I=aChB(5B!i3=^m+#ge05^3>I3f4*ph*%;nwN&Ooz@Wrc+Tv5R}G z>bzHs7_4Uo%~o#W7InqF;>4VkE7m{GX zq2|6WipJva_JRc9VK4}0JFtpN@0z!0tjYdc>i$DwR)2`9ZZU+7HdJS+uGOA<)eCDp z(@F8PvNBe)*J8N^Y^`dl zL~fp8T$d*Lk8IwQ#*BUtPT( Xs~$3r_nfbOd%S0R*D)t}dVBsKrtRT6 diff --git a/po/id.po b/po/id.po index 8851bb65..1f264d12 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-09-06 17:41+0700\n" "Last-Translator: Arif E. Nugroho \n" "Language-Team: Indonesian \n" @@ -16,26 +16,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "array subscript buruk" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: tidak dapat mengubah index ke array yang berassosiasi" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: kunci array assosiasi tidak valid" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: tidak dapat mengassign ke index tidak-numeric" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: harus menggunakan subscript ketika memberikan assosiasi array" @@ -64,32 +64,32 @@ msgstr "tidak menutup '%c' dalam %s" msgid "%s: missing colon separator" msgstr "%s: hilang pemisah colon" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "'%s': nama keymap tidak valid" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: tidak dapat membaca: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "'%s': tidak dapat melepaskan" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "'%s': nama fungsi tidak dikenal" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s tidak terikat ke kunci apapun.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s dapat dipanggil melalui " @@ -102,6 +102,14 @@ msgstr "jumlah loop" msgid "only meaningful in a `for', `while', or `until' loop" msgstr "hanya berarti dalam sebuah `for', `while', atau `until'loop" +#: builtins/caller.def:133 +#, fuzzy +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns " +msgstr "Mengembalikan context dari panggilan subroutine saat ini." + #: builtins/cd.def:215 msgid "HOME not set" msgstr "HOME tidak diset" @@ -228,12 +236,12 @@ msgstr "%s: bukan sebuah builtin shell" msgid "write error: %s" msgstr "gagal menulis: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: error mengambil direktori saat ini: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: spesifikasi pekerjaan ambigu" @@ -269,7 +277,7 @@ msgstr "hanya dapat digunakan dalam sebuah fungsi" msgid "cannot use `-f' to make functions" msgstr "tidak dapat menggunakan `-f' untuk membuat fungsi" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: fungsi baca-saja" @@ -308,7 +316,7 @@ msgstr "%s: bukan dinamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: tidak dapat menghapus: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -324,7 +332,7 @@ msgstr "%s: bukan sebuah file umum" msgid "%s: file is too large" msgstr "%s: file terlalu besar" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: tidak dapat menjalankan berkas binary" @@ -408,8 +416,11 @@ msgstr[1] "Perintah shell cocok dengan kata kunci `" #: builtins/help.def:168 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "tidak ada topik bantuan yang cocok dengan `%s'. Coba `help help' atau 'man -k %s' atau `info %s'." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "" +"tidak ada topik bantuan yang cocok dengan `%s'. Coba `help help' atau 'man -" +"k %s' atau `info %s'." #: builtins/help.def:185 #, c-format @@ -427,12 +438,16 @@ msgid "" "A star (*) next to a name means that the command is disabled.\n" "\n" msgstr "" -"Perintah shell ini didefinisikan secara internal. Ketik `help' untuk melihat daftar ini.\n" +"Perintah shell ini didefinisikan secara internal. Ketik `help' untuk melihat " +"daftar ini.\n" "Ketik `help nama' untuk informasi lebih lanjut mengenai fungsi `nama'.\n" -"Gunakan `info bash' untuk informasi lebih lanjut mengenasi shell secara umum.\n" -"Gunakan `man -k' atau `info' untuk informasi lebih lanjut mengenai perintah yang tidak ada dalam daftar ini.\n" +"Gunakan `info bash' untuk informasi lebih lanjut mengenasi shell secara " +"umum.\n" +"Gunakan `man -k' atau `info' untuk informasi lebih lanjut mengenai perintah " +"yang tidak ada dalam daftar ini.\n" "\n" -"Sebuah asterisk (*) disebelah dari nama berarti perintah tersebut tidak aktif.\n" +"Sebuah asterisk (*) disebelah dari nama berarti perintah tersebut tidak " +"aktif.\n" "\n" #: builtins/history.def:154 @@ -443,7 +458,7 @@ msgstr "tidak dapat menggunakan lebih dari satu opsi dari -anrw" msgid "history position" msgstr "posisi sejarah" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: expansi sejarah gagal" @@ -470,12 +485,12 @@ msgstr "Kesalahan tidak diketahui" msgid "expression expected" msgstr "diduga sebuah ekspresi" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: spesifikasi file deskripsi tidak valid" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: file deskriptor %s tidak valid" @@ -553,14 +568,17 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" "\tdirs when invoked without options, starting with zero." msgstr "" "Menampilkan daftar dari direktori yang diingat saat ini. Direktori\n" -" menemukan jalannya kedalam daftar dengan perintah `pushd'; anda dapat memperoleh\n" +" menemukan jalannya kedalam daftar dengan perintah `pushd'; anda dapat " +"memperoleh\n" " backup melalui daftar dengan perintah `popd'.\n" " \n" " Opsi:\n" @@ -572,10 +590,12 @@ msgstr "" " \tdengan posisnya dalam stack\n" " \n" " Argumen:\n" -" +N\tMenampilkan masukan ke N dihitung dari kiri dari daftar yang ditampilkan oleh\n" +" +N\tMenampilkan masukan ke N dihitung dari kiri dari daftar yang " +"ditampilkan oleh\n" " \tdirs ketika dipanggil tanpa opsi, dimulai dari nol.\n" " \n" -" -N\tMenampilkan masukan ke N dihitung dari kanan dari daftar yang ditampilkan oleh\n" +" -N\tMenampilkan masukan ke N dihitung dari kanan dari daftar yang " +"ditampilkan oleh\n" " \tdirs ketika dipanggil tanpa opsi, dimulai dari nol." #: builtins/pushd.def:705 @@ -607,7 +627,8 @@ msgstr "" " Tanpa argumen, menukar top dari dua direktori.\n" " \n" " Opsi:\n" -" -n\tmenekan perubahan normal dari direktori ketika menambahkan direktori\n" +" -n\tmenekan perubahan normal dari direktori ketika menambahkan " +"direktori\n" " \tke stack, jadi hanya stack yang dimanipulasi.\n" " \n" " Argumen:\n" @@ -654,22 +675,23 @@ msgstr "" " \n" " Argumen:\n" " -N\tmenghapus masukan ke N dihitung dari kiri dari daftar\n" -" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd +0'\n" +" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd " +"+0'\n" " \tmenghapus direktori terakhir, `popd -1' sebelum terakhir.\n" " \n" " Builtin `dirs' menampilkan direktori stack." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: spesifikasi timeout tidak valid" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "error baca: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "hanya dapat `return' dari sebuah fungsi atau script yang disource" @@ -840,36 +862,37 @@ msgstr "%s: variabel tidak terikat" msgid "\atimed out waiting for input: auto-logout\n" msgstr "kehabisan waktu menunggu masukan: otomatis-keluar\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "tidak dapat menyalurkan masukan standar dari /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': karakter format tidak valid" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" -msgstr "%s: dibatasi: tidak dapat menspesifikasikan '/' dalam nama nama perintah" +msgstr "" +"%s: dibatasi: tidak dapat menspesifikasikan '/' dalam nama nama perintah" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: perintah tidak ditemukan" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: interpreter buruk" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "tidak dapat menduplikasikan fd %d ke fd %d" @@ -944,7 +967,7 @@ msgstr "%s: expresi error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: tidak dapat mengakses direktori orang tua" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "tidak dapat mereset mode nodelay untuk fd %d" @@ -952,151 +975,153 @@ msgstr "tidak dapat mereset mode nodelay untuk fd %d" #: input.c:258 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "tidak dapat mengalokasikan berkas deskripsi bari untuk masukan bash dari fd %d" +msgstr "" +"tidak dapat mengalokasikan berkas deskripsi bari untuk masukan bash dari fd %" +"d" #: input.c:266 #, c-format msgid "save_bash_input: buffer already exists for new fd %d" msgstr "simpan bash_input: buffer telah ada untuk fd %d baru" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d terlihat dalam pekerjaan yang sedang berjalan %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "menghapus pekerjaan yang terhenti %d dengan proses grup %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) dalam the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) ditandai dengan tetap hidup" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: tidak ada pid seperti itu" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "sinyal %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Selesai" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Terhenti" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Terhenti(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Berjalan" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Selesai(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Keluar %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Status tidak diketahui" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(core didump) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "anak setpgid (%ld ke %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld bukan sebuah anak dari shell ini" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Tidak ada catatan untuk proses %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: pekerjaan %d terhenti" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: pekerjaan telah selesai" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: pekerjaan %d sudah berjalan di belakang (background)" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: baris %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (core didump)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd sekarang: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp gagal" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: baris disiplin" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "tidak dapat menset terminal proses grup (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "tidak ada pengontrol pekerjaan dalam shell ini" @@ -1158,7 +1183,8 @@ msgstr "register_alloc: tabel alokasi penuh dengan FIND_ALLOC?\n" #: lib/malloc/table.c:184 #, c-format msgid "register_alloc: %p already in table as allocated?\n" -msgstr "register_alloc: %p sudah berada dalam tabel sepertinya sudah dialokasikan?\n" +msgstr "" +"register_alloc: %p sudah berada dalam tabel sepertinya sudah dialokasikan?\n" #: lib/malloc/table.c:220 #, c-format @@ -1222,7 +1248,8 @@ msgstr "make_here_document: tipe instruksi buruk %d" #: make_cmd.c:651 #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" -msgstr "dokumen-disini di baris %d dibatasi oleh akhir-dari-berkas (diinginkan `%s')" +msgstr "" +"dokumen-disini di baris %d dibatasi oleh akhir-dari-berkas (diinginkan `%s')" #: make_cmd.c:746 #, c-format @@ -1349,31 +1376,31 @@ msgstr "cprintf: '%c': format karakter tidak valid" msgid "file descriptor out of range" msgstr "berkas deskripsi diluar dari jangkauan" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: redirect ambigu" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: tidak dapat menulis berkas yang sudah ada" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restricted: tidak dapat meredirect keluaran" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "tidak dapat membuat berkas sementara untuk dokumen disini: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port tidak dilayani tanpa jaringan" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "redirection error: tidak dapat menduplikasi fd" @@ -1428,19 +1455,23 @@ msgstr "\t-%s atau opsi -o\n" #: shell.c:1806 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "Ketik `%s -c \"help set\"' untuk informasi lebih lanjut mengenai opsi shell.\n" +msgstr "" +"Ketik `%s -c \"help set\"' untuk informasi lebih lanjut mengenai opsi " +"shell.\n" #: shell.c:1807 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "Ketik `%s -c help' untuk informasi lebih lanjut mengenai perintah builting shell.\n" +msgstr "" +"Ketik `%s -c help' untuk informasi lebih lanjut mengenai perintah builting " +"shell.\n" #: shell.c:1808 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Gunakan perintah 'bashbug' untuk melaporkan bugs.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operasi tidak valid" @@ -1614,77 +1645,77 @@ msgstr "Sinyal tidak diketahui #" msgid "Unknown Signal #%d" msgstr "Sinyal tidak diketahui #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substitusi buruk: tidak ada penutupan `%s' dalam %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: tidak dapat meng-assign daftar kedalam anggoya array" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "tidak dapat membuat pipe untuk proses substitusi" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "tidak dapat membuat anak untuk proses substitusi" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "tidak dapat membuka named pipe %s untuk membaca" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "tidak dapat membukan named pipe %s untuk menulis" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "tidak dapat menduplikasi nama pipe %s sebagai fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "tidak dapat membuat pipe untuk perintah substitusi" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "tidak dapat membuat anak untuk perintah substitusi" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: tidak dapat menduplikasikan pipe sebagi fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter kosong atau tidak diset" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expresi < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: substitusi buruk" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: tidak dapat meng-assign dengan cara ini" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substitusi buruk: tidak ada penutupan \"\" dalam %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "tidak cocok: %s" @@ -1721,21 +1752,24 @@ msgstr "%s: operator binary diduga" msgid "missing `]'" msgstr "hilang `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "nomor sinyal tidak valid" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: nilai buruk dalam trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "run_pending_traps: sinyal handler adalah SIG_DFL, mengirimkan kembali %d (%s) kediri sendiri" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "" +"run_pending_traps: sinyal handler adalah SIG_DFL, mengirimkan kembali %d (%" +"s) kediri sendiri" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: sinyal buruk %d" @@ -1750,43 +1784,50 @@ msgstr "error mengimpor definisi fungsi untuk `%s'" msgid "shell level (%d) too high, resetting to 1" msgstr "level shell (%d) terlalu tinggi, mereset ke 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: tidak ada context fungsi di scope ini" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: tidak ada context fungsi dalam scope ini" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "karakter %d tidak valid dalam exporstr untuk %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "bukan `=' dalam exportstr untuk %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" -msgstr "pop_var_context: kepala dari shell_variables bukan sebuah fungsi cbntext" +msgstr "" +"pop_var_context: kepala dari shell_variables bukan sebuah fungsi cbntext" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: bukan global_variable context" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "pop_scope: kepala dari shell_variables bukan sebuah scope lingkungan sementara" +msgstr "" +"pop_scope: kepala dari shell_variables bukan sebuah scope lingkungan " +"sementara" #: version.c:46 msgid "Copyright (C) 2008 Free Software Foundation, Inc." msgstr "Hak Cipta (C) 2008 Free Software Foundation, Inc." #: version.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Lisensi GPLv3+: GNU GPL versi 3 atau sesudahnya \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Lisensi GPLv3+: GNU GPL versi 3 atau sesudahnya \n" #: version.c:86 #, c-format @@ -1796,7 +1837,9 @@ msgstr "GNU bash, versi %s (%s)\n" #: version.c:91 #, c-format msgid "This is free software; you are free to change and redistribute it.\n" -msgstr "Ini adalah perangkat lunak bebas; anda bebas untuk mengubah dan mendistribusikannya.\n" +msgstr "" +"Ini adalah perangkat lunak bebas; anda bebas untuk mengubah dan " +"mendistribusikannya.\n" #: version.c:92 #, c-format @@ -1816,7 +1859,8 @@ msgstr "xmalloc: tidak dapat mengalokasikan %lu bytes" #: xmalloc.c:114 #, c-format msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "xrealloc: tidak dapat menrealokasikan %lu bytes (%lu bytes teralokasikan)" +msgstr "" +"xrealloc: tidak dapat menrealokasikan %lu bytes (%lu bytes teralokasikan)" #: xmalloc.c:116 #, c-format @@ -1826,7 +1870,8 @@ msgstr "xrealloc: tidak dapat mengalokasikan %lu bytes" #: xmalloc.c:150 #, c-format msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)" -msgstr "xmalloc: %s:%d: tidak dapat mengalokasikan %lu bytes (%lu bytes teralokasi)" +msgstr "" +"xmalloc: %s:%d: tidak dapat mengalokasikan %lu bytes (%lu bytes teralokasi)" #: xmalloc.c:152 #, c-format @@ -1836,7 +1881,9 @@ msgstr "xmalloc: %s: %d: tidak dapat teralokasi %lu bytes" #: xmalloc.c:174 #, c-format msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "xrealloc: %s: %d: tidak dapat melakukan reallokasi %lu bytes (%lu bytes teralokasi)" +msgstr "" +"xrealloc: %s: %d: tidak dapat melakukan reallokasi %lu bytes (%lu bytes " +"teralokasi)" #: xmalloc.c:176 #, c-format @@ -1852,8 +1899,12 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] name [nama ...]" #: builtins.c:51 -msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m keymap] [-f nama berkas] [-q nama] [-u nama] [-r keyseq] [-x keyseq:perintah-shell] [keyseq:readline-function atau readline-command]" +msgid "" +"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpvsPVS] [-m keymap] [-f nama berkas] [-q nama] [-u nama] [-r keyseq] " +"[-x keyseq:perintah-shell] [keyseq:readline-function atau readline-command]" #: builtins.c:54 msgid "break [n]" @@ -1941,7 +1992,8 @@ msgstr "logout [n]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e ename] [-lnr] [pertama] [terakhir] atau fc -s [pat=rep] [perintah]" +msgstr "" +"fc [-e ename] [-lnr] [pertama] [terakhir] atau fc -s [pat=rep] [perintah]" #: builtins.c:107 msgid "fg [job_spec]" @@ -1960,8 +2012,12 @@ msgid "help [-ds] [pattern ...]" msgstr "bantuan [-ds] [pola ...]" #: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "sejarah [-c] [-d ofset] [n] atau history -anrw [nama berkas] atau history -ps arg [arg...]" +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"sejarah [-c] [-d ofset] [n] atau history -anrw [nama berkas] atau history -" +"ps arg [arg...]" #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" @@ -1972,16 +2028,24 @@ msgid "disown [-h] [-ar] [jobspec ...]" msgstr "disown [-h] [-ar] [spesifikasi pekerjaan ...]" #: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s spesifikasi sinyal | -n nomor sinyal | -sigspec] pid | jobsepc ... atau kill -l [sigspec]" +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s spesifikasi sinyal | -n nomor sinyal | -sigspec] pid | jobsepc ... " +"atau kill -l [sigspec]" #: builtins.c:134 msgid "let arg [arg ...]" msgstr "biarkan arg [argumen ...]" #: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a array] [-d pembatas] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a array] [-d pembatas] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" #: builtins.c:138 msgid "return [n]" @@ -2076,8 +2140,12 @@ msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case WORD in [POLA [| POLA]...) PERINTAH ;;]... esac" #: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if PERINTAH; then PERINTAH; [ elif PERINTAH; then PERINTAH; ]... [ else PERINTAH; ] fi" +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if PERINTAH; then PERINTAH; [ elif PERINTAH; then PERINTAH; ]... [ else " +"PERINTAH; ] fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" @@ -2132,20 +2200,34 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v var] format [argumen]" #: builtins.c:227 -msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-o opsi] [-A action] [-G globpat] [-W daftar kata] [-F fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] [name ...]" +msgid "" +"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W " +"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o opsi] [-A action] [-G globpat] [-W daftar " +"kata] [-F fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" #: builtins.c:231 -msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-abcdefgjksuv] [-o opsi] [-A aksi] [-G globpat] [-W wordlist] [-F fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgid "" +"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "" +"compgen [-abcdefgjksuv] [-o opsi] [-A aksi] [-G globpat] [-W wordlist] [-F " +"fungsi] [-C perintah] [-X filterpat] [-P prefix] [-S suffix] [word]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" msgstr "compopt [-o|+o opsi] [nama ...]" #: builtins.c:238 -msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-n jumlah] [-O asal] [-s jumlah] [-t] [-u fd] [-C callback] [-c quantum] [array]" +msgid "" +"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"mapfile [-n jumlah] [-O asal] [-s jumlah] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" #: builtins.c:250 msgid "" @@ -2162,7 +2244,8 @@ msgid "" " -p\tPrint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has been\n" +" alias returns true unless a NAME is supplied for which no alias has " +"been\n" " defined." msgstr "" "Definisikan atau tampilkan aliases.\n" @@ -2170,15 +2253,19 @@ msgstr "" " `alias' dengan tanpa argumen atau dengan opsi -p menampilkan daftar\n" " dari aliases dalam bentuk alias NAMA=NILAI di keluaran standar.\n" " \n" -" Jika tidak, sebuah alias didefinisikan untuk setiap NAMA yang NILAI-nya diberikan.\n" -" sebuah tambahan spasi dalam NILAI menyebabkan kata selanjutnyan untuk diperikasi untuk\n" +" Jika tidak, sebuah alias didefinisikan untuk setiap NAMA yang NILAI-nya " +"diberikan.\n" +" sebuah tambahan spasi dalam NILAI menyebabkan kata selanjutnyan untuk " +"diperikasi untuk\n" " pengganti alias ketika alias diexpand.\n" " \n" " Opsi:\n" -" -p\tTampilkan seluruh alias yang terdefinisi dalam format yang berguna\n" +" -p\tTampilkan seluruh alias yang terdefinisi dalam format yang " +"berguna\n" " \n" " Status Keluar:\n" -" alias mengembalikan true sampai sebuah NAMA diberikan yang mana belum ada alias yang\n" +" alias mengembalikan true sampai sebuah NAMA diberikan yang mana belum " +"ada alias yang\n" " terdefinisi." #: builtins.c:272 @@ -2209,20 +2296,24 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their values\n" -" -s List key sequences that invoke macros and their values\n" +" -S List key sequences that invoke macros and their " +"values\n" +" -s List key sequences that invoke macros and their " +"values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named function.\n" +" -u function-name Unbind all keys which are bound to the named " +"function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" @@ -2235,32 +2326,44 @@ msgstr "" " \n" " Ikat sebuah urutan kunci ke fungsi readline atau sebuah macro, atau set\n" " sebuah variabel readline. Argumen bukan-opsi syntax yang equivalent\n" -" yang ditemukan dalam ~/.inputrc, tetapi harus dilewatkan sebagai sebuah argumen tunggal:\n" +" yang ditemukan dalam ~/.inputrc, tetapi harus dilewatkan sebagai sebuah " +"argumen tunggal:\n" " yang terikat '\"\\C-x\\C-r\": membaca kembali berkas inisialisasi.\n" " \n" " Opsi:\n" -" -m keymap Gunakan `keymap' sebagai keymap untuk durasi dari perintah\n" +" -m keymap Gunakan `keymap' sebagai keymap untuk durasi dari " +"perintah\n" " ini. Nama keymap yang diterima adalah emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, dan vi-insert.\n" " -l Daftar dari nama fungsi.\n" " -p Daftar dari nama fungsi dan bindings.\n" -" -p Daftar dari fungsi dan bindings dalam bentuk yang dapat digunakan sebagai\n" +" -p Daftar dari fungsi dan bindings dalam bentuk yang " +"dapat digunakan sebagai\n" " masukan.\n" -" -S Daftar urutan kunci yang memanggil macros dannilainya\n" -" -s Daftar urutan kunci yang memanggil macros dannilainya\n" -" dalam sebuah bentuk yang dapat digunakan sebagai sebuah masukan. -V Daftar nama variabel dan nilai\n" -" -v Daftar nama variabel dan nilai dalam bentuk yang dapat digunakan\n" +" -S Daftar urutan kunci yang memanggil macros " +"dannilainya\n" +" -s Daftar urutan kunci yang memanggil macros " +"dannilainya\n" +" dalam sebuah bentuk yang dapat digunakan sebagai " +"sebuah masukan. -V Daftar nama variabel dan nilai\n" +" -v Daftar nama variabel dan nilai dalam bentuk yang " +"dapat digunakan\n" " sebagai masukan.\n" -" -q nama-fungsi Minta tentang kunci mana yang dipanggil oleh fungsi yang disebut.\n" -" -u nama-fungsi Unbind semua kunci yang terikat dengan nama-fungsi.\n" +" -q nama-fungsi Minta tentang kunci mana yang dipanggil oleh fungsi " +"yang disebut.\n" +" -u nama-fungsi Unbind semua kunci yang terikat dengan nama-" +"fungsi.\n" " -r keyseq Hapus binding untuk KEYSEQ.\n" " -f namafile Baca kunci bindings dari NAMAFILE.\n" -" -x keyseq:shell-command\tMenyebabkan SHELL-COMMAND untuk dijalankan ketika\n" +" -x keyseq:shell-command\tMenyebabkan SHELL-COMMAND untuk dijalankan " +"ketika\n" " \t\t\t\tKEYSEQ dimasuki.\n" " \n" " Status Keluar:\n" -" bind memberikan kembalian 0 kecuali sebuah opsi tidak dikenal diberikan atau sebuah error terjadi." +" bind memberikan kembalian 0 kecuali sebuah opsi tidak dikenal " +"diberikan atau sebuah error terjadi." #: builtins.c:322 msgid "" @@ -2274,7 +2377,8 @@ msgid "" msgstr "" "Keluar dari for, while, atau until loops.\n" " \n" -" Keluar untuk FOR, WHILE atau UNTIL loop. Jika N dispesifikasikan, keluar N yang melingkupi\n" +" Keluar untuk FOR, WHILE atau UNTIL loop. Jika N dispesifikasikan, keluar " +"N yang melingkupi\n" " loops.\n" " \n" " Status Keluar:\n" @@ -2292,8 +2396,10 @@ msgid "" msgstr "" "Melanjutkan for, while, atau until loops.\n" " \n" -" Melanjutkan ke iterasi selanjutnya dari loop yang dilingkupi oleh FOR, WHILE, atau UNTIL.\n" -" Jika N dispesifikasikan, melanjutkan di posisi ke N dari loop yang dilingkupi. \n" +" Melanjutkan ke iterasi selanjutnya dari loop yang dilingkupi oleh FOR, " +"WHILE, atau UNTIL.\n" +" Jika N dispesifikasikan, melanjutkan di posisi ke N dari loop yang " +"dilingkupi. \n" " Status Keluar:\n" " Status keluar adalah 0 kecuali N tidak lebih besar atau sama dengan 1." @@ -2303,7 +2409,8 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the function.\n" +" as a shell function, but need to execute the builtin within the " +"function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2311,12 +2418,16 @@ msgid "" msgstr "" "Menjalankan shell builtins.\n" " \n" -" Menjalankan SHELL-BUILTIN dengan argumen ARGs tanpa menjalankan pencarian\n" -" perintah. Ini berguna ketika anda menginginkan untuk mengimplementasikan sebuah shell builtin\n" -" sebagai sebuah fungsi shell, tetapi butuh untuk menjalankan builtin dalah fungsi.\n" +" Menjalankan SHELL-BUILTIN dengan argumen ARGs tanpa menjalankan " +"pencarian\n" +" perintah. Ini berguna ketika anda menginginkan untuk mengimplementasikan " +"sebuah shell builtin\n" +" sebagai sebuah fungsi shell, tetapi butuh untuk menjalankan builtin " +"dalah fungsi.\n" " \n" " Status Keluar:\n" -" Mengembalikan status keluar dari SHELL-BUILTIN, atau salah jika SHELL-BUILTIN adalah\n" +" Mengembalikan status keluar dari SHELL-BUILTIN, atau salah jika SHELL-" +"BUILTIN adalah\n" " bukan sebuah shell builtin.." #: builtins.c:361 @@ -2340,26 +2451,34 @@ msgstr "" " mengembalikan \"$line $subroutine $filename\"; informasi extra ini\n" " dapat digunakan untuk menyediakan jejak stack.\n" " \n" -" Nilai dari EXPR mengindikasikan bagaimana banyak panggilan frames kembali sebelum\n" +" Nilai dari EXPR mengindikasikan bagaimana banyak panggilan frames " +"kembali sebelum\n" " yang ada; Top frame adalah frame 0. \n" " Status Keluar:\n" -" Mengembalikan 0 kecuali shell sedang tidak menjalankan sebuah fungsi shell atau EXPR\n" +" Mengembalikan 0 kecuali shell sedang tidak menjalankan sebuah fungsi " +"shell atau EXPR\n" " tidak valid." #: builtins.c:379 msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of the\n" +" Change the current directory to DIR. The default DIR is the value of " +"the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" -" A null directory name is the same as the current directory. If DIR begins\n" +" The variable CDPATH defines the search path for the directory " +"containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon " +"(:).\n" +" A null directory name is the same as the current directory. If DIR " +"begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is set,\n" -" the word is assumed to be a variable name. If that variable has a value,\n" +" If the directory is not found, and the shell option `cdable_vars' is " +"set,\n" +" the word is assumed to be a variable name. If that variable has a " +"value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2379,20 +2498,23 @@ msgstr "" " \n" " Variabel CDPATH mendefinisikan jalur pencarian untuk\n" " direktori yang berisi DIR. Alternatif nama direktori dalam CDPATH\n" -" dipisahkan oleh sebuah colon (:). Sebuah nama direktori kosong adalah sama dengan\n" +" dipisahkan oleh sebuah colon (:). Sebuah nama direktori kosong adalah " +"sama dengan\n" " direktori saat ini. i.e. `.'. Jika DIR dimulai dengan sebuah slash (/),\n" " maka CDPATH tidak digunakan.\n" " \n" " Jika direktori tidak ditemukan, dan\n" " opsi shell cdable_vars' diset, maka coba kata sebagai sebuah nama\n" -" variabel. Jika variabel itu memiliki sebuah nilai, maka nilai dari variabel itu yang digunakan\n" +" variabel. Jika variabel itu memiliki sebuah nilai, maka nilai dari " +"variabel itu yang digunakan\n" " \n" " Opsi:\n" " -L\tmemaksa link simbolik untuk diikuti\n" " -P\tgunakan struktur physical direktori tanpa mengikuti link\n" " symbolik\n" " \n" -" Default adalah mengikuti link simbolik, seperti dalam `-L' dispesifikasikan.\n" +" Default adalah mengikuti link simbolik, seperti dalam `-L' " +"dispesifikasikan.\n" " \n" " Status Keluar:\n" " Mengembalikan 0 jika direktori berubah; bukan nol jika tidak." @@ -2422,7 +2544,8 @@ msgstr "" " Secara default, `pwd' berlaku seperi jika opsi `-L' dispesifikasikan.\n" " \n" " Status Keluar:\n" -" Mengembalikan 0 kecuali jika sebuah opsi tidak valid diberikan atau direktori sekarang\n" +" Mengembalikan 0 kecuali jika sebuah opsi tidak valid diberikan atau " +"direktori sekarang\n" " tidak bisa dibaca." #: builtins.c:424 @@ -2470,7 +2593,8 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke commands\n" +" information about the specified COMMANDs. Can be used to invoke " +"commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2482,20 +2606,25 @@ msgid "" " Exit Status:\n" " Returns exit status of COMMAND, or failure if COMMAND is not found." msgstr "" -"Menjalankan sebuah perintah sederhana atau menampilkan informasi mengenai perintah.\n" +"Menjalankan sebuah perintah sederhana atau menampilkan informasi mengenai " +"perintah.\n" " \n" -" Menjalankan PERINTAH tanpa ARGS menekan fungsi pencarian shell, atau menampilkan\n" -" informasi mengenasi PERINTAH tertentu. Dapat digunakan untuk memanggil perintah\n" +" Menjalankan PERINTAH tanpa ARGS menekan fungsi pencarian shell, atau " +"menampilkan\n" +" informasi mengenasi PERINTAH tertentu. Dapat digunakan untuk memanggil " +"perintah\n" " dalam disk ketika sebuah fungsi dengan nama yang sama ada.\n" " \n" " Opsi:\n" -" -p\tgunakan sebuah nilai default untuk PATH yang menjamin untuk mencari seluruh\n" +" -p\tgunakan sebuah nilai default untuk PATH yang menjamin untuk " +"mencari seluruh\n" " \tpenggunaan stadar\n" " -v\tmenampilkan deskripsi dari PERINTAH sama dengan `type' builtin\n" " -V\tmenampilkan lebih jelas deskripsi dari setiap PERINTAH\n" " \n" " Status Keluar:\n" -" Mengembalikan status keluar dari PERINTAH, atau gagal jika PERINTAH tidak ditemukan." +" Mengembalikan status keluar dari PERINTAH, atau gagal jika PERINTAH " +"tidak ditemukan." #: builtins.c:472 msgid "" @@ -2525,7 +2654,8 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the `local'\n" +" When used in a function, `declare' makes NAMEs local, as with the " +"`local'\n" " command.\n" " \n" " Exit Status:\n" @@ -2533,7 +2663,8 @@ msgid "" msgstr "" "Menset nilai variabel dan atribut.\n" " \n" -" Variabel deklarasi dan memberikan atribut untuknya. Jika tidak ada NAMA yang diberikan,\n" +" Variabel deklarasi dan memberikan atribut untuknya. Jika tidak ada NAMA " +"yang diberikan,\n" " tampilkan atribut dan nilai dari seluruh variabel.\n" " \n" " Opsi:\n" @@ -2556,11 +2687,13 @@ msgstr "" " Variabel dengan atribut integer memiliki evaluasi aritmetic (lihat\n" " perintah `let') ditampilkan ketika variabel diberi sebuah nilai.\n" " \n" -" Ketika digunakan dalam sebuah fungsi, `declare' membuat NAMA lokal, seperti dengan\n" +" Ketika digunakan dalam sebuah fungsi, `declare' membuat NAMA lokal, " +"seperti dengan\n" " perintah `local'.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." #: builtins.c:508 msgid "" @@ -2588,14 +2721,16 @@ msgid "" msgstr "" "Mendefinisikan variabel lokal.\n" " \n" -" Membuat sebuah variabel locak dipanggil NAMA, dan memberikan kepadanya NILAI. OPSI dapat\n" +" Membuat sebuah variabel locak dipanggil NAMA, dan memberikan kepadanya " +"NILAI. OPSI dapat\n" " berupa semua opsi yang diterima oleh `declare'.\n" " \n" " Variabel lokal hanya dapat digunakan dalam sebuah fungsi; mereka hanya\n" " dapat dilihat ke fungsi dimana mereka terdefinisi dan anaknya.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan, sebuah error terjadi.\n" +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan, sebuah " +"error terjadi.\n" " atau shell tidak menjalankan sebuah fungsi." #: builtins.c:533 @@ -2647,7 +2782,8 @@ msgstr "" " \\r\tcarriage return\n" " \\t\thorizontal tab\n" " \\\\\tbackslash\n" -" \\0nnn\tkarakter yang memiliki kode ASCII NNN (oktal). NNN dapat berupa\n" +" \\0nnn\tkarakter yang memiliki kode ASCII NNN (oktal). NNN dapat " +"berupa\n" " \t0 sampai 3 oktal digit\n" " \\xHH\tdelapan-bit karakter yang nilainya adalah HH (hexadesimal). HH\n" " \tdapat satu dari dua bilangan hex\n" @@ -2705,13 +2841,17 @@ msgid "" msgstr "" "Aktifkan dan non-aktifkan shell builtins.\n" " \n" -" Aktifkan dan non-aktifkan perintah builtin shell. Menonaktifkan membolehkan anda untuk\n" -" menjalankan sebuah perintah disk yang memiliki nama yang sama dengan shell builtin\n" +" Aktifkan dan non-aktifkan perintah builtin shell. Menonaktifkan " +"membolehkan anda untuk\n" +" menjalankan sebuah perintah disk yang memiliki nama yang sama dengan " +"shell builtin\n" " tanpa menggunakan sebuah nama jalur yang lengkap.\n" " \n" " Opsi:\n" -" -a\ttampilkan daftar dari builtins memperlihatkan aktif atau tidak setiap diaktifkan\n" -" -n\tmenonaktifkan setiap NAMA atau tampilkan daftar dari builtin yang tidak aktif\n" +" -a\ttampilkan daftar dari builtins memperlihatkan aktif atau tidak " +"setiap diaktifkan\n" +" -n\tmenonaktifkan setiap NAMA atau tampilkan daftar dari builtin yang " +"tidak aktif\n" " -p\ttampilkan daftar dari builtins dalam format yang berguna\n" " -s\ttampilkan yang nama dari Posix `special' builtins\n" " \n" @@ -2721,17 +2861,20 @@ msgstr "" " \n" " Tanpa opsi, untuk setiap NAMA di aktifkan.\n" " \n" -" Untuk menggunakan `test' ditemukan dalam $PATH daripada dalam shell builtin\n" +" Untuk menggunakan `test' ditemukan dalam $PATH daripada dalam shell " +"builtin\n" " versi, ketik `enable -n test'.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali NAMA bukan sebuah shell builtin atau sebuah error terjadi." +" Mengembalikan sukses kecuali NAMA bukan sebuah shell builtin atau sebuah " +"error terjadi." #: builtins.c:610 msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the shell,\n" +" Combine ARGs into a single string, use the result as input to the " +"shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2739,11 +2882,13 @@ msgid "" msgstr "" "Menjalankan argumen sebagai sebuah perintah shell.\n" " \n" -" Mengkombinasikan ARG dalam sebuah string tunggal, gunakan hasil sebagai masukan dalam shell,\n" +" Mengkombinasikan ARG dalam sebuah string tunggal, gunakan hasil sebagai " +"masukan dalam shell,\n" " dan jalankan hasil dari perintah.\n" " \n" " Status Keluar:\n" -" Mengembalikan status keluar dari perintah atau sukses jika perintah adalah kosong." +" Mengembalikan status keluar dari perintah atau sukses jika perintah " +"adalah kosong." #: builtins.c:622 msgid "" @@ -2793,31 +2938,40 @@ msgstr "" " diikuti oleh sebuah colon, opsi diduga akan berupa argumen,\n" " yang seharusnya dipisahkan dari itu oleh spasi.\n" " \n" -" Setiap waktu ini dipanggil, getopts akan menempatkan opsi selanjutnya dalam\n" +" Setiap waktu ini dipanggil, getopts akan menempatkan opsi selanjutnya " +"dalam\n" " $name shell variabel, menginisialisasi nama jiki ini tidak ada, dan\n" " index dari argumen selanjutnya untuk diproses kedalam shell\n" " variabel OPTIND. OPTIND diinisialisasi ke 1 setiap shell atau\n" -" sebuah shell script dipanggil. Ketika sebuah opsi membutuhkan sebuah argumen,\n" +" sebuah shell script dipanggil. Ketika sebuah opsi membutuhkan sebuah " +"argumen,\n" " getopts menempatkan argumen itu kedalam variabel shell OPTARG.\n" " \n" -" getopts melaporkan error dalam satu dari dua cara. Jika karakter pertama\n" -" dari OPTSTRING adalah sebuah colon, getopts menggunakan silent error laporan. Dalam\n" -" Mode ini, tidak ada pesan error yang ditampilkan. Jika sebuah opsi tidak valid terlihat\n" +" getopts melaporkan error dalam satu dari dua cara. Jika karakter " +"pertama\n" +" dari OPTSTRING adalah sebuah colon, getopts menggunakan silent error " +"laporan. Dalam\n" +" Mode ini, tidak ada pesan error yang ditampilkan. Jika sebuah opsi tidak " +"valid terlihat\n" " getops menempatkan karakter opsi yang ditemukan ke OPTARG. Jika sebuah\n" -" argumen yang dibutuhkan tidak ditemukan, getopts menempatkan sebuah ':' kedalam NAME dan\n" +" argumen yang dibutuhkan tidak ditemukan, getopts menempatkan sebuah ':' " +"kedalam NAME dan\n" " menset OPTARG ke opsi karakter yang ditemukan. Jika getopts tidak dalam\n" -" mode silent, dan sebuah opsi tidak valid terlihat getopts menempatkan '?' kedalam\n" +" mode silent, dan sebuah opsi tidak valid terlihat getopts menempatkan " +"'?' kedalam\n" " variabel NAME, OPTARG tidak diset, dan sebuah pesan analisis\n" " tampilkan.\n" " \n" -" Jika sebuah variabel shell OPTERR memiliki sebuah nilai 0, getopts mendisable\n" +" Jika sebuah variabel shell OPTERR memiliki sebuah nilai 0, getopts " +"mendisable\n" " pencetakan dari pesan error, bahkan jika karakter pertama dari\n" " OPTSTRING bukan sebuah colon. OPTERR memiliki nilai 1 secara default.\n" " \n" " Getopts secara normal memparse parameter posisi ($0 - $9), tetapi jika\n" " lebih dari satu argumen diberikan, mereka diparse. \n" " Status Keluar:\n" -" Mengembalikan sukses jika sebuah opsi ditemukan; gagal jika akhir dari opsi\n" +" Mengembalikan sukses jika sebuah opsi ditemukan; gagal jika akhir dari " +"opsi\n" " ditemui atau sebuah error terjadi." #: builtins.c:664 @@ -2825,7 +2979,8 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " +"specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2833,16 +2988,20 @@ msgid "" " -c\t\texecute COMMAND with an empty environment\n" " -l\t\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, unless\n" +" If the command cannot be executed, a non-interactive shell exits, " +"unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error occurs." +" Returns success unless COMMAND is not found or a redirection error " +"occurs." msgstr "" "Mengganti shell dengan perintah yang diberikan.\n" " \n" -" Jalankan PERINTAH, ganti shell ini dengan aplikasi yang dispesifikaskan.\n" -" ARGUMEN menjadi argumen dari PERINTAH. Jika PERINTAH tidak dispesifikasikan,\n" +" Jalankan PERINTAH, ganti shell ini dengan aplikasi yang " +"dispesifikaskan.\n" +" ARGUMEN menjadi argumen dari PERINTAH. Jika PERINTAH tidak " +"dispesifikasikan,\n" " setiap redireksi akan memiliki afek dalam shell sekarang.\n" " \n" " Opsi:\n" @@ -2850,11 +3009,13 @@ msgstr "" " -c\t\tjalankan PERINTAH dengan sebuah environment kosong\n" " -l\t\ttempatkan sebuah dash dalam argumen ke nol ke PERINTAH\n" " \n" -" Jika perintah tidak dapat dijalankan, sebuah non-interaktif shell keluar, kecuali\n" +" Jika perintah tidak dapat dijalankan, sebuah non-interaktif shell " +"keluar, kecuali\n" " opsi shell `execfail' diset.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali PERINTAH tidak ditemukan atau sebuah redireksi error terjadi." +" Mengembalikan sukses kecuali PERINTAH tidak ditemukan atau sebuah " +"redireksi error terjadi." #: builtins.c:685 msgid "" @@ -2865,32 +3026,37 @@ msgid "" msgstr "" "Keluar dari shell.\n" " \n" -" Keluar dari shell dengan status dari N. Jika N diabaikan, status keluaran\n" +" Keluar dari shell dengan status dari N. Jika N diabaikan, status " +"keluaran\n" " adalah status dari perintah terakhir yang dijalankan." #: builtins.c:694 msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not executed\n" +" Exits a login shell with exit status N. Returns an error if not " +"executed\n" " in a login shell." msgstr "" "Keluar dari sebuah login shell.\n" " \n" -" Keluar sebuah login shell dengan status keluar N. Mengembalikan sebuah error jika tidak dijalankan\n" +" Keluar sebuah login shell dengan status keluar N. Mengembalikan sebuah " +"error jika tidak dijalankan\n" " dalam sebuah login shell." #: builtins.c:704 msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history list.\n" +" fc is used to list or edit and re-execute commands from the history " +"list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then " +"EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -2904,30 +3070,38 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error occurs." +" Returns success or status of executed command; non-zero if an error " +"occurs." msgstr "" "Tampilkan atau jalankan perintah dari daftar sejarah.\n" " \n" -" fc biasa digunakan untuk mendaftar atau mengubah dan menjalankan perintah dari daftar sejarah.\n" -" PERTAMA dan TERAKHIR dapat berupa nomor yang menspesifikasikan jangkauan, atau PERTAMA dapat berupa sebuah\n" +" fc biasa digunakan untuk mendaftar atau mengubah dan menjalankan " +"perintah dari daftar sejarah.\n" +" PERTAMA dan TERAKHIR dapat berupa nomor yang menspesifikasikan " +"jangkauan, atau PERTAMA dapat berupa sebuah\n" " string, yang berarti adalah perintah yang berawal dengan string.\n" " \n" " Opsi:\n" -" -e ENAME\tmemilih editor yang akan digunakan. Default adalah FCEDIT, kemudian EDITOR,\n" +" -e ENAME\tmemilih editor yang akan digunakan. Default adalah FCEDIT, " +"kemudian EDITOR,\n" " \t\tkemudian vi.\n" " -l \tdaftar baris daripada mengubahnya.\n" " -n \tabaikan nomor baris ketika MENDAFTAR.\n" -" -r \tmembalik urutan dari baris (membuat yang terbaru terdaftar pertama).\n" +" -r \tmembalik urutan dari baris (membuat yang terbaru terdaftar " +"pertama).\n" " \n" " Dengan `fc -s [pat=rep ...] [perintah]' format, perintah\n" " dijalankan setelah substitusi OLD=NEW dilakukan.\n" " \n" -" Sebuah alias yang berguna yang digunakan dengan ini r='fc -s', jadi mengetikan `r cc'\n" -" menjalankan perintah terakhir yang diawali dengan `cc' dan mengetikan 'r' menjalankan kembali\n" +" Sebuah alias yang berguna yang digunakan dengan ini r='fc -s', jadi " +"mengetikan `r cc'\n" +" menjalankan perintah terakhir yang diawali dengan `cc' dan mengetikan " +"'r' menjalankan kembali\n" " perintah terakhir.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses atau status dari perintah yang dijalankan; tidak-nol jika sebuah error terjadi." +" Mengembalikan sukses atau status dari perintah yang dijalankan; tidak-" +"nol jika sebuah error terjadi." #: builtins.c:734 msgid "" @@ -2947,14 +3121,17 @@ msgstr "" " yang digunakan.\n" " \n" " Status Keluar:\n" -" Status dari perintah yang ditempatkan di foreground, atau gagal jika sebuah error terjadi." +" Status dari perintah yang ditempatkan di foreground, atau gagal jika " +"sebuah error terjadi." #: builtins.c:749 msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if " +"they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's " +"notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -2962,19 +3139,22 @@ msgid "" msgstr "" "Pindahkan pekerjaan ke background.\n" " \n" -" Tempatkan setiap JOB_SPEC dalam background, seperti jika ini telah dimulai dengan\n" +" Tempatkan setiap JOB_SPEC dalam background, seperti jika ini telah " +"dimulai dengan\n" " `&'. Jika JOB_SPEC tidak ada, notion shell's dari pekerjaan\n" " yang saat berjalan digunakan.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau sebuah error terjadi." +" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau " +"sebuah error terjadi." #: builtins.c:763 msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is displayed.\n" +" no arguments are given, information about remembered commands is " +"displayed.\n" " \n" " Options:\n" " -d\t\tforget the remembered location of each NAME\n" @@ -2994,7 +3174,8 @@ msgstr "" "Ingat atau tampilkan lokasi aplikasi.\n" " \n" " Tentukan dan ingat nama jalur lengkap dari setiap NAMA perintah. Jika\n" -" tidak ada argumen yang diberikan, informasi mengenai perintah yang diingat akan ditampilkan.\n" +" tidak ada argumen yang diberikan, informasi mengenai perintah yang " +"diingat akan ditampilkan.\n" " \n" " Opsi:\n" " -d\t\tlupakan lokasi yang diingat untuk setiap NAMA\n" @@ -3005,11 +3186,13 @@ msgstr "" " \t\tuntuk setiap lokasi diberikan NAMA yang sesuai jika multiple\n" " \t\tNAMA diberikan\n" " Argumen:\n" -" NAMA\t\tSetiap NAMA yang ditemukan dalam $PATH dan ditambahkan dalam daftar\n" +" NAMA\t\tSetiap NAMA yang ditemukan dalam $PATH dan ditambahkan dalam " +"daftar\n" " \t\tdari perintah yang diingat.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali NAMA tidak ditemukan atau sebuah opsi tidak valid telah diberikan." +" Mengembalikan sukses kecuali NAMA tidak ditemukan atau sebuah opsi tidak " +"valid telah diberikan." #: builtins.c:788 msgid "" @@ -3029,12 +3212,14 @@ msgid "" " PATTERN\tPattern specifiying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is given." +" Returns success unless PATTERN is not found or an invalid option is " +"given." msgstr "" "Tampilkan informasi mengenai perintah builtin.\n" " \n" " Tampilkan ringkasan singkat dari perintah builtin. Jika POLA\n" -" dispesifikasikan, tampilkan bantuan lengkap di seluruh perintah yang cocok dengan POLA,\n" +" dispesifikasikan, tampilkan bantuan lengkap di seluruh perintah yang " +"cocok dengan POLA,\n" " jika tidak daftar dari topik bantuan ditampilkan.\n" " \n" " Opsi:\n" @@ -3047,7 +3232,8 @@ msgstr "" " POLA\tPola menspesifikasikan topik bantuan\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali POLA tidak ditemukan atau opsi tidak valid diberikan." +" Mengembalikan sukses kecuali POLA tidak ditemukan atau opsi tidak valid " +"diberikan." #: builtins.c:812 msgid "" @@ -3076,15 +3262,18 @@ msgid "" " \n" " If the $HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed otherwise.\n" +" with each displayed history entry. No time stamps are printed " +"otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." msgstr "" "Menampilkan atau memanipulasi daftar sejarah.\n" " \n" -" Menampilkan daftar sejarah dengan nomor baris. Baris yang ditampilkan dengan\n" -" sebuah `*' telah diubah. Argumen dari N mengatakan untuk menampilkan hanya\n" +" Menampilkan daftar sejarah dengan nomor baris. Baris yang ditampilkan " +"dengan\n" +" sebuah `*' telah diubah. Argumen dari N mengatakan untuk menampilkan " +"hanya\n" " N baris terakhir.\n" " \n" " Opsi:\n" @@ -3092,7 +3281,8 @@ msgstr "" " -d menghapus masukan sejarah di offset OFFSET.\n" " \n" " -a\tmenambahkan ke daftar sejarah dari sesi ini ke berkas sejarah.\n" -" -n\tmembaca seluruh baris sejarah yang belum dibaca dari berkas sejarah\n" +" -n\tmembaca seluruh baris sejarah yang belum dibaca dari berkas " +"sejarah\n" " -r\tmembaca berkas sejarah dan menambahkan isinya ke daftar\n" " \tsejarah\n" " -w menulis sejarah sekarang ke berkas sejarah\n" @@ -3103,16 +3293,22 @@ msgstr "" " -s\ttambahkan ARG ke daftar sejarah sebagai sebuah masukan tunggal\n" " \n" " \n" -" Jika NAMAFILE diberikan, maka itu digunakan sebagai berkas sejarah selain itu\n" -" jika $HISTFILE memiliki nilai, maka itu digunakan, selain itu ~/.bash_history.\n" +" Jika NAMAFILE diberikan, maka itu digunakan sebagai berkas sejarah " +"selain itu\n" +" jika $HISTFILE memiliki nilai, maka itu digunakan, selain itu ~/." +"bash_history.\n" " \n" " \n" -" Jika variabel $HISTTIMEFORMAT diset dan tidak kosong, nilai ini yang akan digunakan\n" -" sebagai format untuk string untuk strftime(3) untuk mencetak timestamp yang berhubungan\n" -" dengan setiap masukan sejarah yang ditampilkan. Tidak ada time stamp yang ditampilkan jika tidak.\n" +" Jika variabel $HISTTIMEFORMAT diset dan tidak kosong, nilai ini yang " +"akan digunakan\n" +" sebagai format untuk string untuk strftime(3) untuk mencetak timestamp " +"yang berhubungan\n" +" dengan setiap masukan sejarah yang ditampilkan. Tidak ada time stamp " +"yang ditampilkan jika tidak.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." #: builtins.c:848 msgid "" @@ -3139,7 +3335,8 @@ msgid "" msgstr "" "Menampilkan status dari pekerjaan.\n" " \n" -" Tampilkan pekerjaan yang aktif. JOBSPEC membatasi keluaran ke pekerjaan itu.\n" +" Tampilkan pekerjaan yang aktif. JOBSPEC membatasi keluaran ke pekerjaan " +"itu.\n" " Tanpa opsi, status dari seluruh aktif job ditampilkan.\n" " \n" " Opsi:\n" @@ -3150,12 +3347,15 @@ msgstr "" " -r membatasi keluaran ke pekerjaan yang sedang jalan\n" " -s membatasi keluaran ke pekerjaan yang berhenti\n" " \n" -" Jika opsi -x diberikan, PERINTAH dijalankan setelah semua spesifikasi pekerjaan\n" -" yang tampil di ARGS telah diganti dengan proses ID dari proses pekerjaan\n" +" Jika opsi -x diberikan, PERINTAH dijalankan setelah semua spesifikasi " +"pekerjaan\n" +" yang tampil di ARGS telah diganti dengan proses ID dari proses " +"pekerjaan\n" " grup leader.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecualis sebuah opsi tidak valid diberikan atau sebuah error terjadi.\n" +" Mengembalikan sukses kecualis sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi.\n" " Jika -x digunakan, mengembalikan status keluar dari PERINTAH." #: builtins.c:875 @@ -3181,12 +3381,14 @@ msgstr "" " \n" " Opsi:\n" " -a\thapus seluruh pekerjaan jika JOBSPEC tidak diberikan\n" -" -h\ttandai setiap JOBSPEC sehingga SIGHUP tidak dikirim ke pekerjaan jika\n" +" -h\ttandai setiap JOBSPEC sehingga SIGHUP tidak dikirim ke pekerjaan " +"jika\n" " \tshell menerima sebuah SIGHUP\n" " -r\thapus hanya pekerjaan yang sedang berjalan\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali ada sebuah opsi tidak valid atau JOBSPEC diberikan." +" Mengembalikan sukses kecuali ada sebuah opsi tidak valid atau JOBSPEC " +"diberikan." #: builtins.c:894 msgid "" @@ -3211,21 +3413,25 @@ msgid "" msgstr "" "Mengirim sebuah sinyal ke sebuah pekerjaan.\n" " \n" -" Mengirim ke sebuah proses yang diidentifikasikan oleh PID atau JOBSPEC dengan sinyal yang diberi name\n" +" Mengirim ke sebuah proses yang diidentifikasikan oleh PID atau JOBSPEC " +"dengan sinyal yang diberi name\n" " oleh SIGSPEC atau SIGNUM. Jika SIGSPEC atau SIGNUM tidak ada, maka\n" " SIGTERM diasumsikan.\n" " \n" " Opsi:\n" " -s sig\tSIG adalah sebuah nama sinyal\n" " -n sig\tSIG adalah sebuah nomor sinyal\n" -" -l\tdaftar dari nama sinyal; jika argumen diikuti dengan `-l' mereka mengasumsikan ke\n" +" -l\tdaftar dari nama sinyal; jika argumen diikuti dengan `-l' mereka " +"mengasumsikan ke\n" " \tnomor sinyal yang namanya ditampilkan.\n" -" Kill adalah sebuah shell builtin untuk dua alasan; ini membolehkan sebuah jobs ID untuk digunakan dari pada\n" +" Kill adalah sebuah shell builtin untuk dua alasan; ini membolehkan " +"sebuah jobs ID untuk digunakan dari pada\n" " proses IDs, dan memperbolehkan proses untuk dimatikan jika batas\n" " dari proses yang dibuat tercapai.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." #: builtins.c:917 msgid "" @@ -3234,7 +3440,8 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are listed\n" +" grouped into levels of equal-precedence operators. The levels are " +"listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -3273,9 +3480,11 @@ msgstr "" "Evaluasi ekspresi arithmetic.\n" " \n" " Setiap ARG adalah sebuah ekspresi arithmetic yang dievaluasi. Evaluasi\n" -" dilakukan dalam fixed-width integers dengan tidak ada pemeriksaan untuk overflow, walaupun\n" +" dilakukan dalam fixed-width integers dengan tidak ada pemeriksaan untuk " +"overflow, walaupun\n" " pembagian dengan 0 ditangkap dan ditandai sebagai error. Berikut\n" -" daftar dari operator yang dikelompokkan dalam tingkat tingkat dari equal precedence operators.\n" +" daftar dari operator yang dikelompokkan dalam tingkat tingkat dari equal " +"precedence operators.\n" " Tingkat yang ditampilkan dalam urutan dari decreasing precedence.\n" " \n" " \tid++, id--\tvariabel post-increment, post-decrement\n" @@ -3309,20 +3518,25 @@ msgstr "" " aturan diatasnya.\n" " \n" " Status Keluar:\n" -" Jika ARG terakhir dievaluasi ke 0, membiarkan kembali ke 1; 0 dikembalikan Jika tidak." +" Jika ARG terakhir dievaluasi ke 0, membiarkan kembali ke 1; 0 " +"dikembalikan Jika tidak." #: builtins.c:962 +#, fuzzy msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with word\n" +" if the -u option is supplied. The line is split into fields as with " +"word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as word\n" +" the last NAME. Only the characters found in $IFS are recognized as " +"word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY " +"variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3337,52 +3551,67 @@ msgid "" " \t\tattempting to read\n" " -r\t\tdo not allow backslashes to escape any characters\n" " -s\t\tdo not echo input coming from a terminal\n" -" -t timeout\ttime out and return failure if a complete line of input is\n" +" -t timeout\ttime out and return failure if a complete line of input " +"is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times out,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -"Membaca sebuah baris dari standar masukan dan membaginya dalam bagian bagian.\n" +"Membaca sebuah baris dari standar masukan dan membaginya dalam bagian " +"bagian.\n" " \n" -" Satu baris dibaca dari masukan standar, atau dari berkas deskripsi FD jika\n" +" Satu baris dibaca dari masukan standar, atau dari berkas deskripsi FD " +"jika\n" " opsi -u diberikan, dan kata pertama diberikan ke NAMA pertama,\n" -" kata kedua ke NAMA kedua, dan seterusnya. dengan kata yang tersisa ditempatkan\n" -" ke NAMA terakhir. Hanya karakter yang ditemukan dalam $IFS yang dikenal sebagai pembatas\n" +" kata kedua ke NAMA kedua, dan seterusnya. dengan kata yang tersisa " +"ditempatkan\n" +" ke NAMA terakhir. Hanya karakter yang ditemukan dalam $IFS yang dikenal " +"sebagai pembatas\n" " kata.\n" " \n" -" Jika tidak ada NAMA yang diberikan, baris yang dibaca disimpan dalam variabel BALASAN\n" +" Jika tidak ada NAMA yang diberikan, baris yang dibaca disimpan dalam " +"variabel BALASAN\n" " \n" " Opsi:\n" " -a array\tditempatkan kata dibaca secara berurutan indice dari array\n" " \t\tvariabel ARRAY, dimulai dari nol\n" -" -d delim\tdilanjutkan sampai karakter pertama dari PEMBATAS dibaca, daripada\n" +" -d delim\tdilanjutkan sampai karakter pertama dari PEMBATAS dibaca, " +"daripada\n" " \t\tbaris baru\n" -" -e\t\tgunakan Readline untuk memperoleh baris dalam sebuah shell interaktif\n" +" -e\t\tgunakan Readline untuk memperoleh baris dalam sebuah shell " +"interaktif\n" " -i text\tGunakan TEXT sebagai text inisial untuk Readline\n" -" -n nchars\tkembali setelah membaca NCHARS characters daripada menunggu\n" +" -n nchars\tkembali setelah membaca NCHARS characters daripada " +"menunggu\n" " \t\tuntuk sebuah baris baru\n" " -p prompt\tkeluarkan string PROMPT tanpa tambahan baris baru sebelum\n" " \t\tmencoba untuk membaca\n" " -r\t\tjangan ijinkan backslash untuk mengeluarkan karakter apapun\n" " -s\t\tjangan echo masukan yang datang dari sebuah terminal\n" -" -t menyebabkan pembacaan untuk time out dan kembali gagal jika sebuah baris lengkap\n" -" \t\tdari masukan tidak dibaca dalam TIMEOUT detik. Jika variabel TMOUT terset,\n" -" \t\tnilai ini akan menjadi nilai default timeout. TIMEOUT mungkin sebuah\n" +" -t menyebabkan pembacaan untuk time out dan kembali gagal jika sebuah " +"baris lengkap\n" +" \t\tdari masukan tidak dibaca dalam TIMEOUT detik. Jika variabel TMOUT " +"terset,\n" +" \t\tnilai ini akan menjadi nilai default timeout. TIMEOUT mungkin " +"sebuah\n" " \t\tbilangan fraksional. Status keluaran lebih besar dari 128 jika\n" " \t\ttimeout dilewati\n" " -u fd\t\tbaca dari berkas deskripsi FD daripada standar masukan\n" " \n" " Status Keluar:\n" -" Kode kembali adalah nol, kecuali akhir-dari-berkas ditemui, baca kehabisan waktu,\n" +" Kode kembali adalah nol, kecuali akhir-dari-berkas ditemui, baca " +"kehabisan waktu,\n" " atau sebuah berkas deskripsi disupply sebagai sebuah argumen ke opsi -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3395,14 +3624,16 @@ msgid "" msgstr "" "Kembali dari sebuah fungsi shell.\n" " \n" -" Menyebabkan sebuah fungsi atau sebuah script untuk keluar dengan nilai kembali\n" +" Menyebabkan sebuah fungsi atau sebuah script untuk keluar dengan nilai " +"kembali\n" " yang dispesifikasikan oleh N. Jika N diabaikan, status kembalian adalah\n" " perintah terakhir yang dijalankan dalam fungsi atau script.\n" " \n" " Status Keluar:\n" -" Mengembalikan N, atau gagal jika shell tidak menjalan sebuah fungsi atau script." +" Mengembalikan N, atau gagal jika shell tidak menjalan sebuah fungsi atau " +"script." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3445,7 +3676,8 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero status\n" +" or zero if no command exited with a non-zero " +"status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3488,12 +3720,15 @@ msgstr "" " tampilkan nama dan nilai dari variabel shell.\n" " \n" " Opsi:\n" -" -a Tandai variabel yang telah termodifikasi atau dibuat untuk export.\n" +" -a Tandai variabel yang telah termodifikasi atau dibuat untuk " +"export.\n" " -b Notifikasi penyelesaian pekerjaan secara langsung.\n" -" -e Keluar langsung jika sebuah perintah keluar dengan status tidak nol.\n" +" -e Keluar langsung jika sebuah perintah keluar dengan status tidak " +"nol.\n" " -f Menonaktifkan pembuatan nama berkas (globbing).\n" " -h Ingat lokasi dari perintah sebagai mereka dicari.\n" -" -k Semua argumen assignment ditempatkan dalam environment untuk sebuah\n" +" -k Semua argumen assignment ditempatkan dalam environment untuk " +"sebuah\n" " perintah, tidak hanya mengawali nama perintah.\n" " -m Pengendali pekerjaan diaktifkan.\n" " -n Baca perintah tapi jangan menjalankan perintah tersebut.\n" @@ -3510,7 +3745,8 @@ msgstr "" " history aktifkan sejarah perintah\n" " ignoreeof shell tidak akan keluar ketika membaca EOF\n" " interactive-comments\n" -" membolehkan komentar ada dalam perintah interaktif\n" +" membolehkan komentar ada dalam perintah " +"interaktif\n" " keyword sama seperti -k\n" " monitor sama seperti -m\n" " noclobber sama seperti -C\n" @@ -3521,31 +3757,40 @@ msgstr "" " nounset sama seperti -u\n" " onecmd sama seperti -t\n" " physical sama seperti -P\n" -" pipefail nilai kembalian dari sebuah pipelie adalah status dari\n" -" perintah terakhir yang keluar dengan sebuah status tidak nol,\n" -" atau nol jika tidak ada perintah yang keluar dengan status tidak nol\n" +" pipefail nilai kembalian dari sebuah pipelie adalah status " +"dari\n" +" perintah terakhir yang keluar dengan sebuah status " +"tidak nol,\n" +" atau nol jika tidak ada perintah yang keluar " +"dengan status tidak nol\n" " posix ubah perilaku dari bash dimana operasi\n" " default berbeda dari 1003.2 standar ke\n" " sesuai dengan standar\n" " privileged sama seperti -p\n" " verbose sama seperti -v\n" -" vi gunakan sebuah gaya vi dalam line editing interface.\n" +" vi gunakan sebuah gaya vi dalam line editing " +"interface.\n" " xtrace sama seperti -x\n" " -p Aktif ketika real dan efektif id pengguna tidak cocok.\n" -" Menonaktifkan pemrosesan dari berkas $ENV dan mengimpor dari fungsi\n" +" Menonaktifkan pemrosesan dari berkas $ENV dan mengimpor dari " +"fungsi\n" " shell. Mengubah opsi ini off menyebabkan efektif uid dan\n" " gid untuk diset ke real uid dan gid.\n" " -t Keluar setelah membaca dan menjalankan satu perintah.\n" -" -u Perlakukan variabel yang tidak diset sebagai error ketika mensubstitusi.\n" +" -u Perlakukan variabel yang tidak diset sebagai error ketika " +"mensubstitusi.\n" " -v Tampilkan baris masukan shell seperti ketika dibaca.\n" -" -x Tampilkan perintah dan argumennya ketika menjalankan perintah tersebut.\n" +" -x Tampilkan perintah dan argumennya ketika menjalankan perintah " +"tersebut.\n" " -B Shell akan melakukan expansi brace\n" -" -C Jika diset, melarang berkas regular yang telah ada untuk ditulis\n" +" -C Jika diset, melarang berkas regular yang telah ada untuk " +"ditulis\n" " oleh keluaran redirection.\n" " -E Jika diset, trap ERR diturunkan oleh fungsi shell.\n" " -H Mengaktifkan ! gaya pengubahan sejarah. Tanda ini aktif\n" " secara default ketika shell interaktif.\n" -" -P Jika diset, jangan ikuti symbolic link ketika menjalankan perintah\n" +" -P Jika diset, jangan ikuti symbolic link ketika menjalankan " +"perintah\n" " seperti cd ketika mengubah direktori kerja sekarang.\n" " -T Jika diset, Debug trap diturunkan oleh fungsi shell.\n" " - Assign argumen yang tersisa ke parameter posisi.\n" @@ -3560,7 +3805,7 @@ msgstr "" " Status Keluar:\n" " Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3570,7 +3815,8 @@ msgid "" " -f\ttreat each NAME as a shell function\n" " -v\ttreat each NAME as a shell variable\n" " \n" -" Without options, unset first tries to unset a variable, and if that fails,\n" +" Without options, unset first tries to unset a variable, and if that " +"fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3586,20 +3832,23 @@ msgstr "" " -f\tperlakukan setiap NAMA sebagai sebuah fungsi shell\n" " -v\tperlakukan setiap NAMA sebagai sebuah variabel shell\n" " \n" -" Tanpa opsi, unset pertama mencoba untuk menunset sebuah variabel, dan jika itu gagal,\n" +" Tanpa opsi, unset pertama mencoba untuk menunset sebuah variabel, dan " +"jika itu gagal,\n" " mencoba untuk menunset sebuah fungsi.\n" " \n" " Beberapa variabel tidak dapat diunset; Lihat juga `readonly'.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah NAMA adalah baca-saja." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah NAMA adalah baca-saja." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before " +"exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3614,7 +3863,8 @@ msgstr "" "Set export atribut untuk variabel shell.\n" " \n" " Tandai setiap NAMA untuk otomatis export ke environment setelah\n" -" perintah dijalankan. Jika NILAI diberikan, berikan NILAI sebelum export.\n" +" perintah dijalankan. Jika NILAI diberikan, berikan NILAI sebelum " +"export.\n" " \n" " Opsi:\n" " -f\tmerujuk ke fungsi shell\n" @@ -3624,9 +3874,10 @@ msgstr "" " Sebuah argumen dari `--' menonaktifkan pemrosesan opsi selanjutnya.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau NAMA tidak valid." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau NAMA " +"tidak valid." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3648,21 +3899,24 @@ msgstr "" "Tandai variabel shell sebagai tidak bisa diubah.\n" " \n" " Tandai setiap NAMA sebagai baca-saja; nilai dari NAMA ini tidak boleh\n" -" diubah untuk penggunaan selanjutnya. Jika NILAI diberikan, berikan NILAI\n" +" diubah untuk penggunaan selanjutnya. Jika NILAI diberikan, berikan " +"NILAI\n" " sebelum menandainya sebagai baca-saja.\n" " \n" " Opsi:\n" " -a\tmerujuk ke aray index variabel\n" " -A\tmerujuk ke variabel aray assosiasi\n" " -f\tmerujuk ke fungsi shell\n" -" -p\tmenampilkan sebuah daftar dari seluruh variabel dan fungsi baca-saja\n" +" -p\tmenampilkan sebuah daftar dari seluruh variabel dan fungsi baca-" +"saja\n" " \n" " Sebuah argumen dari `--' menonaktifkan pemrosesan opsi selanjutnya.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecual sebuah opsi tidak valid diberikan atau NAMA tidak valid." +" Mengembalikan sukses kecual sebuah opsi tidak valid diberikan atau NAMA " +"tidak valid." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3680,7 +3934,7 @@ msgstr "" " Status Keluar:\n" " Mengembalikan sukses kecuali N adalah negatif atau lebih besar dari $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3696,15 +3950,17 @@ msgstr "" "Jalankan perintah dari sebuah berkas dalam shell sekarang.\n" " \n" " Baca dan jalankan perintah dari FILENAME dan kembali. Nama jalur dalam\n" -" $PATH digunakan untuk mencari direktori yang berisi NAMABERKAS. Jika salah satu\n" +" $PATH digunakan untuk mencari direktori yang berisi NAMABERKAS. Jika " +"salah satu\n" " dari ARGUMENTS diberikan, mereka menjadi parameter posisi ketika\n" " NAMABERKAS dijalankan.\n" " \n" " Status Keluar:\n" -" Mengembalikan status dari perintah terakhir yang dijalankan dalam NAMA BERKAS; gagal jika\n" +" Mengembalikan status dari perintah terakhir yang dijalankan dalam NAMA " +"BERKAS; gagal jika\n" " NAMA BERKAS tidak dapat dibaca." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3723,12 +3979,14 @@ msgstr "" " Kecuali dipaksa, login shell tidak dapat disuspend.\n" " \n" " Opsi:\n" -" -f\tpaksa untuk suspend, walaupun jika shell adalah sebuah login shell\n" +" -f\tpaksa untuk suspend, walaupun jika shell adalah sebuah login " +"shell\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau sebuah error terjadi." +" Mengembalikan sukses kecuali pengontrol pekerjaan tidak aktif atau " +"sebuah error terjadi." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3759,7 +4017,8 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last read.\n" +" -N FILE True if the file has been modified since it was last " +"read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3780,7 +4039,8 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 lexicographically.\n" +" True if STRING1 sorts before STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3804,7 +4064,8 @@ msgid "" msgstr "" "Evaluasi ekspresi kondisi.\n" " \n" -" Keluar dengan sebuah status dari 0 (benar) atau 1 (salah) tergantung dari\n" +" Keluar dengan sebuah status dari 0 (benar) atau 1 (salah) tergantung " +"dari\n" " evaluasi dari EXPR. Expresi dapat berupa unary atau binary. Unary\n" " expresi sering digunakan untuk memeriksa status dari sebuah berkas.\n" " Terdapat operator string juga, dan operator pembanding numerik.\n" @@ -3816,7 +4077,8 @@ msgstr "" " -c BERKAS Benar jika berkas adalah karakter spesial.\n" " -d BERKAS Benar jika berkas adalah sebuah direktori.\n" " -e BERKAS Benar jika berkas ada.\n" -" -f BERKAS Benar jika berkas ada dan berupa sebuah berkas regular.\n" +" -f BERKAS Benar jika berkas ada dan berupa sebuah berkas " +"regular.\n" " -g BERKAS Benar jika berkas memiliki set-grup-id.\n" " -h BERKAS Benar jika berkas adalah symbolic link.\n" " -L BERKAS Benar jika berkas adalah symbolic link.\n" @@ -3829,9 +4091,12 @@ msgstr "" " -u BERKAS Benar jika berkas memiliki set-user-id.\n" " -w BERKAS Benar jika berkas dapat ditulis oleh anda.\n" " -x BERKAS Benar jika berkas dapat dijalankan oleh anda.\n" -" -O BERKAS Benar jika berkas secara efektif dimiliki oleh anda.\n" -" -G BERKAS Benar jika berkas secara efektif dimiliki oleh grup anda.\n" -" -N BERKAS Benar jika berkas telah dimodifikasi sejak terakhir ini dibaca.\n" +" -O BERKAS Benar jika berkas secara efektif dimiliki oleh " +"anda.\n" +" -G BERKAS Benar jika berkas secara efektif dimiliki oleh grup " +"anda.\n" +" -N BERKAS Benar jika berkas telah dimodifikasi sejak terakhir " +"ini dibaca.\n" " \n" " FILE1 -nt FILE2 Benar jika file1 lebih baru dari file2 (menurut \n" " tanggal modifikasi).\n" @@ -3852,29 +4117,36 @@ msgstr "" " STRING1 != STRING2\n" " Benar jika string tidak sama.\n" " STRING1 < STRING2\n" -" Benar jika STRING1 sorts sebelum STRING2 lexicographically.\n" +" Benar jika STRING1 sorts sebelum STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" -" Benar jika STRING1 sorts sesudah STRING2 lexicographically.\n" +" Benar jika STRING1 sorts sesudah STRING2 " +"lexicographically.\n" " \n" " Operator lain:\n" " \n" " -o Opsi Benar jika opsi shell OPSI diaktifkan.\n" " ! EXPR Benar jika expr salah.\n" " EXPR1 -a EXPR2 Benar jika kedua expr1 dan expr2 adalah benar.\n" -" EXPR1 -o EXPR2 Benar jika salah satu dari expr1 atau expr2 adalah benar.\n" +" EXPR1 -o EXPR2 Benar jika salah satu dari expr1 atau expr2 adalah " +"benar.\n" " \n" -" arg1 OP arg2 Pemeriksaan arithmetik. OP adalah salah satu dari -eq, -ne,\n" +" arg1 OP arg2 Pemeriksaan arithmetik. OP adalah salah satu dari -" +"eq, -ne,\n" " -lt, -le, -gt, atau -ge.\n" " \n" -" Arithmetic binary operator mengembalikan benar jika ARG1 adalah equal, not-equal,\n" -" less-than, less-than-or-equal, greater-than, atau greater-than-or-equal\n" +" Arithmetic binary operator mengembalikan benar jika ARG1 adalah " +"equal, not-equal,\n" +" less-than, less-than-or-equal, greater-than, atau greater-than-or-" +"equal\n" " than ARG2.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses jika EKSPR mengevaluasi ke benar; gagal jika EXPR mengevaluasi ke\n" +" Mengembalikan sukses jika EKSPR mengevaluasi ke benar; gagal jika " +"EXPR mengevaluasi ke\n" " salah atau sebuah argumen tidak valid diberikan." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3886,11 +4158,12 @@ msgstr "" " Ini sinonim untuk \"test\" builtin, tetapi argumen terakhir\n" " harus berupa sebuah literal `]', untuk mencocokan dengan pembukaan `['." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of its\n" +" Prints the accumulated user and system times for the shell and all of " +"its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -3898,17 +4171,19 @@ msgid "" msgstr "" "Tampilkan waktu pemrosesan.\n" " \n" -" Tampilkan akumulasi waktu penggunaan pengguna dan sistem untuk shell dan seluruh proses dari\n" +" Tampilkan akumulasi waktu penggunaan pengguna dan sistem untuk shell dan " +"seluruh proses dari\n" " anaknya.\n" " \n" " Status Keluar:\n" " Selalu sukses." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives signals\n" +" Defines and activates handlers to be run when the shell receives " +"signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -3917,52 +4192,66 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " +"If\n" " a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\n" " \n" -" If no arguments are supplied, trap prints the list of commands associated\n" +" If no arguments are supplied, trap prints the list of commands " +"associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal " +"number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is given." +" Returns success unless a SIGSPEC is invalid or an invalid option is " +"given." msgstr "" "Tangkap sinyal dan even lainnya.\n" " \n" -" Definisikan dan aktivasi handlers yang harus dijalankan ketika shell menerima sinyal\n" +" Definisikan dan aktivasi handlers yang harus dijalankan ketika shell " +"menerima sinyal\n" " atau kondisi lain.\n" " \n" " ARG perintah dibaca dan dijalankan ketika shell menerima\n" " sinyal SIGNAL_SPEC. Jika ARG tidak ada (dan sebuah sinyal SIGNAL_SPEC\n" -" diberikan) atau `-', setiap sinyal yang dispesifikasikan akan direset kenilai\n" -" original. Jika ARG adalah string kosong untuk setiap SIGNAL_SPEC diabaikan oleh\n" +" diberikan) atau `-', setiap sinyal yang dispesifikasikan akan direset " +"kenilai\n" +" original. Jika ARG adalah string kosong untuk setiap SIGNAL_SPEC " +"diabaikan oleh\n" " shell dan oleh perintah yang dipanggil.\n" " \n" -" Jika sebuah SIGNAL_SPEC adalah EXIT(0) perintah ARG dijalankan pada saat keluar dari shell. Jika\n" -" sebuah SIGNAL_SPEC adalah DEBUG, ARG dijalankan setiap perintah sederhana.\n" +" Jika sebuah SIGNAL_SPEC adalah EXIT(0) perintah ARG dijalankan pada saat " +"keluar dari shell. Jika\n" +" sebuah SIGNAL_SPEC adalah DEBUG, ARG dijalankan setiap perintah " +"sederhana.\n" " \n" -" Jika tidak ada argumen yang diberikan, trap menampilkan daftar dari perintah yang berasosiasi\n" +" Jika tidak ada argumen yang diberikan, trap menampilkan daftar dari " +"perintah yang berasosiasi\n" " dengan setiap sinyal.\n" " \n" " Opsi:\n" -" -l\tmenampilkan sebuah daftar dari nama sinyal dan nomor yang berhubungan\n" -" -p\tmenampilkan perintah trap yang berasosiasi dengan setiap SIGNAL_SPEC\n" +" -l\tmenampilkan sebuah daftar dari nama sinyal dan nomor yang " +"berhubungan\n" +" -p\tmenampilkan perintah trap yang berasosiasi dengan setiap " +"SIGNAL_SPEC\n" " \n" -" Setiap SIGNAL_SPEC yang ada di nama sinyal dalam atau nomor sinyal. Nama sinyal\n" +" Setiap SIGNAL_SPEC yang ada di nama sinyal dalam atau nomor " +"sinyal. Nama sinyal\n" " adalah case insensitive dan SIG prefix adalah opsional. sebuah\n" " sinyal dapat dikirim ke sebuah shell dengan \"kill -signal $$\".\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah SIGSPEC adalah tidak valid atau sebuah opsi tidak valid diberikan." +" Mengembalikan sukses kecuali sebuah SIGSPEC adalah tidak valid atau " +"sebuah opsi tidak valid diberikan." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3988,25 +4277,32 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not found." +" Returns success if all of the NAMEs are found; fails if any are not " +"found." msgstr "" "Tampilkan informasi tentang perintah yang diketik.\n" " \n" -" Untuk setiap NAMA, indikasikan bagaimana ini akan diinterpretasikan jika digunakan sebagai sebuah\n" +" Untuk setiap NAMA, indikasikan bagaimana ini akan diinterpretasikan jika " +"digunakan sebagai sebuah\n" " nama perintah.\n" " \n" " Opsi:\n" -" -a\tmenampilkan seluruh lokasi yang berisi sebuah nama NAMA yang dapat dijalankan;\n" +" -a\tmenampilkan seluruh lokasi yang berisi sebuah nama NAMA yang dapat " +"dijalankan;\n" " \tmeliputi aliases, builtins, dan fungsi, jika dan hanya jika\n" " \topsi `-p' juga sedang tidak digunakan\n" " -f\tmenekan pencarian fungsi shell\n" -" -P\tmemaksa sebuah JALUR pencarian untuk setiap NAMA, bahkan jika ini adalah sebuah alias,\n" +" -P\tmemaksa sebuah JALUR pencarian untuk setiap NAMA, bahkan jika ini " +"adalah sebuah alias,\n" " \tbuiltin, atau fungsi, dan mengembalikan nama dari berkas disk\n" " \tyang akan dijalankan\n" " -p\tmengembalikan baik nama dari berkas disk yang akan dijalankan,\n" -" \tatau tidak sama sekali jika `type -t NAME' akan mengembalikan `berkas'.\n" -" -t\tkeluarkan sebuah kata tunggal yang merupakan salah satu dari `alias', `keyword',\n" -" \t`fungsi', `builtin', `berkas', atau `', jika NAMA adalah sebuah alias, shell\n" +" \tatau tidak sama sekali jika `type -t NAME' akan mengembalikan " +"`berkas'.\n" +" -t\tkeluarkan sebuah kata tunggal yang merupakan salah satu dari " +"`alias', `keyword',\n" +" \t`fungsi', `builtin', `berkas', atau `', jika NAMA adalah sebuah alias, " +"shell\n" " \treserved word, fungsi shell, builtin shell, berkas disk, atau\n" " \ttidak ditemukan\n" " \n" @@ -4014,13 +4310,15 @@ msgstr "" " NAMA\tNama perintah yang akan diinterpretasikan.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses jika seluruh dari NAMA ditemukan; gagal jika ada yang tidak ditemukan." +" Mengembalikan sukses jika seluruh dari NAMA ditemukan; gagal jika ada " +"yang tidak ditemukan." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and processes\n" +" Provides control over the resources available to the shell and " +"processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -4061,7 +4359,8 @@ msgstr "" "Modifikasi batas sumber daya shell.\n" " \n" " memberikan kontrol terhadap sarana yang tersedia untuk proses\n" -" yang dimulai oleh shell, dalam sistem yang mengijinkan untuk kontrol tersebut.\n" +" yang dimulai oleh shell, dalam sistem yang mengijinkan untuk kontrol " +"tersebut.\n" " \n" " Opsi:\n" " -S\tgunakan `soft' batas sarana\n" @@ -4083,20 +4382,26 @@ msgstr "" " -v\tukuran dari memori virtual\n" " -x\tjumlah maksimum dari berkas pengunci\n" " \n" -" Jika BATAS diberikan, maka nilai baru yang dispesifikasikan untuk sarana;\n" +" Jika BATAS diberikan, maka nilai baru yang dispesifikasikan untuk " +"sarana;\n" " nilai spesial LIMIT `soft', `hard', dan `unlimited' berarti untuk\n" -" soft limit saat ini, jika hard limit saat ini dan no limit, respectively.\n" -" Jika tidak, nilai sekarang dari sarana yang dispesifikasikan ditampilkan.\n" +" soft limit saat ini, jika hard limit saat ini dan no limit, " +"respectively.\n" +" Jika tidak, nilai sekarang dari sarana yang dispesifikasikan " +"ditampilkan.\n" " Jika tidak ada opsi yang diberikan, maka -f diasumsikan.\n" " \n" -" Nilai adalah dalam 1024-byte increments, kecuali untuk -t, yang berarti dalam detik\n" -" -p, yang berarti increment dalam 512 bytes, dan -u, yang berarti unscaled dari\n" +" Nilai adalah dalam 1024-byte increments, kecuali untuk -t, yang berarti " +"dalam detik\n" +" -p, yang berarti increment dalam 512 bytes, dan -u, yang berarti " +"unscaled dari\n" " jumlah proses.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4115,46 +4420,58 @@ msgid "" msgstr "" "Tampilkan atau set mask mode dari berkas.\n" " \n" -" Set pembuatan berkas pengguna mask dengan MODE. Jika MODE diabaikan, tampilkan\n" +" Set pembuatan berkas pengguna mask dengan MODE. Jika MODE diabaikan, " +"tampilkan\n" " nilai dari mask sekarang.\n" " \n" -" Jika MODE diawali dengan sebuah digit, ini diinterpretasikan sebagai sebuah bilangan oktal;\n" -" jika tidak ini adalah sebuah mode simbolik seperti yang diterima oleh chmod(1).\n" +" Jika MODE diawali dengan sebuah digit, ini diinterpretasikan sebagai " +"sebuah bilangan oktal;\n" +" jika tidak ini adalah sebuah mode simbolik seperti yang diterima oleh " +"chmod(1).\n" " \n" " Opsi:\n" -" -p\tjika MODE diabaikan, keluarkan dalam sebuah format yang bisa digunakan sebagai masukan\n" -" -S\tmembuat keluaran simbolik; jika tidak sebuah bilangan oktal adalah keluarannya\n" +" -p\tjika MODE diabaikan, keluarkan dalam sebuah format yang bisa " +"digunakan sebagai masukan\n" +" -S\tmembuat keluaran simbolik; jika tidak sebuah bilangan oktal adalah " +"keluarannya\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali MODE tidak valid atau sebuah opsi tidak valid diberikan." +" Mengembalikan sukses kecuali MODE tidak valid atau sebuah opsi tidak " +"valid diberikan." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" " Waits for the process identified by ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" -" status is zero. If ID is a a job specification, waits for all processes\n" +" status is zero. If ID is a a job specification, waits for all " +"processes\n" " in the job's pipeline.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Tunggu untuk penyelesaian pekerjaan dan kembalikan status keluar.\n" " \n" -" Tunggu untuk proses yang diidentifikasikan oleh ID, yang mungkin sebuah proses ID atau sebuah\n" +" Tunggu untuk proses yang diidentifikasikan oleh ID, yang mungkin sebuah " +"proses ID atau sebuah\n" " spesifikasi pekerjaan, dan laporkan status selesainya. Jika ID tidak\n" -" diberikan, tunggu untuk seluruh proses anak yang aktif, dan status kembalian\n" -" adalah nol. Jika ID adalah sebuah spesifikasi pekerjaan, tunggu untuk seluruh proses\n" +" diberikan, tunggu untuk seluruh proses anak yang aktif, dan status " +"kembalian\n" +" adalah nol. Jika ID adalah sebuah spesifikasi pekerjaan, tunggu untuk " +"seluruh proses\n" " dalam pipeline pekerjaan.\n" " \n" " Status Keluar:\n" -" Mengembalikan status dari ID; gagal jika ID tidak valid atau sebuah opsi tidak\n" +" Mengembalikan status dari ID; gagal jika ID tidak valid atau sebuah opsi " +"tidak\n" " valid diberikan." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4163,20 +4480,23 @@ msgid "" " and the return code is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Tunggu untuk penyelesaian proses dan kembalikan status keluar.\n" " \n" -" Tunggu untuk proses yang dispesifikasikan dan laporkan status selesainya. Jika\n" +" Tunggu untuk proses yang dispesifikasikan dan laporkan status " +"selesainya. Jika\n" " PID tidak diberikan, maka semua aktif proses anak ditunggu,\n" " dan kode kembalian adalah nol. PID dapat berupa proses ID.\n" " \n" " Status Keluar:\n" -" Mengembalikan status dari ID; gagal jika ID tidak valid atau sebuah opsi tidak valid\n" +" Mengembalikan status dari ID; gagal jika ID tidak valid atau sebuah opsi " +"tidak valid\n" " diberikan." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4190,15 +4510,17 @@ msgid "" msgstr "" "Jalankan perintah untuk setiap anggota dalam sebuah daftar.\n" " \n" -" `for' loop menjalankan urutan dari perintah untuk setiap anggota dalam sebuah\n" +" `for' loop menjalankan urutan dari perintah untuk setiap anggota dalam " +"sebuah\n" " daftar dari items. Jika `in KATA ...;' tidak ada, maka `in \"$@\"' yang\n" -" menjadi asumsi. Untuk setiap elemen dalam KATA, NAMA di set untuk elemen tersebut, dan\n" +" menjadi asumsi. Untuk setiap elemen dalam KATA, NAMA di set untuk elemen " +"tersebut, dan\n" " PERINTAH dijalankan.\n" " \n" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4228,7 +4550,7 @@ msgstr "" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4251,19 +4573,21 @@ msgstr "" " \n" " WORDS diexpand, menghasilkan daftar dari kata.\n" " set dari kata yang diexpand ditampilkan dalam standar error, setiap\n" -" keluaran diawali dengan sebuah nomor. Jika `in WORDS' tidak ada, `in \"$@\"'\n" +" keluaran diawali dengan sebuah nomor. Jika `in WORDS' tidak ada, `in \"$@" +"\"'\n" " diasumsikan. Kemudian PS3 prompt ditampilkan dan sebuah baris dibaca\n" " dari standar masukan. Jika baris berisi dari nomor yang\n" " berhubungan dengan salah sata kata yang ditampilkan, maka NAMA diset\n" " ke WORD tersebut. Jika baris kosong, WORDS dan prompt\n" -" ditampilkan kembali. Jika EOF dibaca, perintah selesai. Baris yang dibaca disimpan\n" +" ditampilkan kembali. Jika EOF dibaca, perintah selesai. Baris yang " +"dibaca disimpan\n" " dalam variabel REPLY. PERINTAH dijalankan setelah setiap seleksi\n" " sampai perintah break dijalankan.\n" " \n" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4280,8 +4604,10 @@ msgid "" msgstr "" "Melaporkan waktu yang dihabiskan dalam menjalan eksekusi pipeline.\n" " \n" -" Jalankan PIPELINE dan tampilkan ringkasan dari real time, user CPU time,\n" -" dan sistem CPU time yang dihabiskan dalam menjalankan PIPELINE ketika ini selesai.\n" +" Jalankan PIPELINE dan tampilkan ringkasan dari real time, user CPU " +"time,\n" +" dan sistem CPU time yang dihabiskan dalam menjalankan PIPELINE ketika " +"ini selesai.\n" " \n" " Opsi:\n" " -p\tmenampilkan ringkasan waktu dalam format portable Posix\n" @@ -4289,7 +4615,7 @@ msgstr "" " Status Keluar:\n" " Status kembali adalah status kembali dari PIPELINE." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4301,21 +4627,27 @@ msgid "" msgstr "" "Menjalankan perintah berdasarkan pencocokan pola.\n" " \n" -" Secara selektif menjalankan PERINTAH berdasarkan dari KATA yang cocok dengan POLA.\n" +" Secara selektif menjalankan PERINTAH berdasarkan dari KATA yang cocok " +"dengan POLA.\n" " `|' digunakan untuk memisahkan beberapa pola. \n" " Status Keluar:\n" " Mengembalikan setatus dari perintah terakhir yang dijalankan." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then " +"the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " +"is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of the\n" -" entire construct is the exit status of the last command executed, or zero\n" +" `then COMMANDS' list is executed and the if command completes. " +"Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of " +"the\n" +" entire construct is the exit status of the last command executed, or " +"zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -4323,18 +4655,23 @@ msgid "" msgstr "" "Menjalankan perintah berdasarkan kondisi.\n" " \n" -" Daftar `if PERINTAH' dijalankan. Jika ini memberikan status keluaran nol, maka\n" -" daftar `then PERINTAH' dijalankan. Jika tidak, setiap daftar dari `elif PERINTAH' \n" -" dijalankan satu satu, dan jika ini memberikan status keluaran nol, untuk setiap\n" -" daftar dari `then PERINTAH' yang dijalankan maka perintah `if' selesai. Jika tidak,\n" +" Daftar `if PERINTAH' dijalankan. Jika ini memberikan status keluaran " +"nol, maka\n" +" daftar `then PERINTAH' dijalankan. Jika tidak, setiap daftar dari `elif " +"PERINTAH' \n" +" dijalankan satu satu, dan jika ini memberikan status keluaran nol, untuk " +"setiap\n" +" daftar dari `then PERINTAH' yang dijalankan maka perintah `if' selesai. " +"Jika tidak,\n" " daftar `else PERINTAH' dijalankan, jika ada. Status keluaran dari \n" -" seluruh construct adalah status keluaran dari perintah terakhir yang dijalankan, atau nol\n" +" seluruh construct adalah status keluaran dari perintah terakhir yang " +"dijalankan, atau nol\n" " jika tidak ada kondisi yang diperiksa benar.\n" " \n" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4352,7 +4689,7 @@ msgstr "" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4369,12 +4706,13 @@ msgstr "" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dijalankan." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is " +"invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4383,15 +4721,17 @@ msgid "" msgstr "" "Definisikan fungsi shell.\n" " \n" -" Buat sebuah fungsi shell dengan nama NAMA. Ketika dipanggil sebagai sebuah perintah sederhana,\n" -" NAMA menjalankan PERINTAH dalam context shell pemanggil. Ketika NAMA dipanggil,\n" +" Buat sebuah fungsi shell dengan nama NAMA. Ketika dipanggil sebagai " +"sebuah perintah sederhana,\n" +" NAMA menjalankan PERINTAH dalam context shell pemanggil. Ketika NAMA " +"dipanggil,\n" " argumen dilewatkan ke fungsi sebagai $1...$n, dan nama fungsi\n" " dalam $FUNCNAME.\n" " \n" " Status Keluar:\n" " Mengembalikan sukses kecuali NAMA adalah baca-saja." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4403,13 +4743,14 @@ msgid "" msgstr "" "Grup perintah sebagai sebuah unit.\n" " \n" -" Jalankan sebuah set dari perintah dalam grup. Ini adalah salah satu cara untuk meredirect\n" +" Jalankan sebuah set dari perintah dalam grup. Ini adalah salah satu cara " +"untuk meredirect\n" " seluruh set dari perintah.\n" " \n" " Status Keluar:\n" " Mengembalikan status dari perintah terakhir yang dieksekusi." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4425,15 +4766,18 @@ msgstr "" "Melanjutkan pekerjaan dalam foreground.\n" " \n" " Sama dengan JOB_SPEC argumen untuk perintah `fg'. Melanjutkan sebuah\n" -" pekerjaan yang telah berhenti atau menjadi background. JOB_SPEC dapat dispesifikasikan dengan nama job\n" -" atau nomor job. JOB_SPEC diikuti dengan sebuah `&' menempatkan job dalam\n" -" background, seperti dalam spesifikasi pekerjaan yang telah dispesifikasikan sebagai sebuah\n" +" pekerjaan yang telah berhenti atau menjadi background. JOB_SPEC dapat " +"dispesifikasikan dengan nama job\n" +" atau nomor job. JOB_SPEC diikuti dengan sebuah `&' menempatkan job " +"dalam\n" +" background, seperti dalam spesifikasi pekerjaan yang telah " +"dispesifikasikan sebagai sebuah\n" " argumen untuk `bg'.\n" " \n" " Status Keluar:\n" " Mengembalikan status dari pekerjaan yang dilanjutkan." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4451,13 +4795,16 @@ msgstr "" " Status Keluar:\n" " Mengembalikan 1 jika EXPRESI dievaluasi ke 0; mengembalikan 0 jika tidak." -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries used\n" -" by the `test' builtin, and may be combined using the following operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the " +"conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries " +"used\n" +" by the `test' builtin, and may be combined using the following " +"operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -4478,26 +4825,34 @@ msgstr "" "Menjalankan perintah kondisional.\n" " \n" " Mengembalikan sebuah status dari 0 atau 1 tergantung dari evaluasi dari\n" -" kondisi expresi EXPRESI. Expresi disusun dari primari yang sama dari yang digunakan\n" -" oleh `test' builtin, dan boleh dikombinasikan dengan menggunakan operator berikut\n" +" kondisi expresi EXPRESI. Expresi disusun dari primari yang sama dari " +"yang digunakan\n" +" oleh `test' builtin, dan boleh dikombinasikan dengan menggunakan " +"operator berikut\n" " \n" " ( EXPRESI )\tMengembalikan nilai dari EXPRESI\n" -" ! EXPRESI\t\tBenar jika kedua EXPR1 dan EXPR2 adalah benar; selain itu salah\n" -" EXPR1 && EXPR2\tBenar jika kedua EXPR1 dan EXPR2 adalah benar; selain itu salah\n" -" EXPR1 || EXPR2\tBenar jika salah satu EXPR1 atau EXPR2 adalah benar; selain itu salah\n" +" ! EXPRESI\t\tBenar jika kedua EXPR1 dan EXPR2 adalah benar; selain itu " +"salah\n" +" EXPR1 && EXPR2\tBenar jika kedua EXPR1 dan EXPR2 adalah benar; selain " +"itu salah\n" +" EXPR1 || EXPR2\tBenar jika salah satu EXPR1 atau EXPR2 adalah benar; " +"selain itu salah\n" " \n" -" Ketika operator `==' dan `!=' digunakan, string yang disebelah kanan dari \n" -" operator yang digunakan sebagai sebuah pola dan pencocokan pola dilakukan.\n" +" Ketika operator `==' dan `!=' digunakan, string yang disebelah kanan " +"dari \n" +" operator yang digunakan sebagai sebuah pola dan pencocokan pola " +"dilakukan.\n" " Ketika operator `=~' digunakan, string yang dikanan dari operator\n" " dicocokan sebagai sebuah ekspresi regular.\n" " \n" -" Operator && dan || tidak mengevaluasi EXPR2 jika EXPR1 tidak mencukupi untuk\n" +" Operator && dan || tidak mengevaluasi EXPR2 jika EXPR1 tidak mencukupi " +"untuk\n" " menentukan nilai dari expresi.\n" " \n" " Status Keluar:\n" " 0 atau 1 tergantun dari nilai dari EKSPRESI." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4553,9 +4908,11 @@ msgstr "" "Nama variabel shell umum dan penggunaannya.\n" " \n" " BASH_VERSION\tInformasi versi dari Bash ini.\n" -" CDPATH\tSebuah daftar yang dipisahkan oleh titik dua dari direktori untuk mencari\n" +" CDPATH\tSebuah daftar yang dipisahkan oleh titik dua dari direktori " +"untuk mencari\n" " \t\tdirektori yang diberikan sebagai argumen untuk `cd'.\n" -" GLOBIGNORE\tSebuah daftar pola yang dipisahkan dengan titik dua menjelaskan nama berkas yang\n" +" GLOBIGNORE\tSebuah daftar pola yang dipisahkan dengan titik dua " +"menjelaskan nama berkas yang\n" " \t\tdiabaikan oleh pathname expansion.\n" " HISTFILE\tNama dari berkas dimana sejara perintah anda disimpan.\n" " HISTFILESIZE\tJumlah maksimum dari baris dimana berkas ini berisi.\n" @@ -4569,14 +4926,18 @@ msgstr "" " \t\tdari jumlah karakter EOF yang bisa diterima\n" " \t\tdalam sebuah baris dalam baris kosong sebelum shell keluar\n" " \t\t(default 10). Ketika diunset, EOF menandakan akhir dari masukan.\n" -" MACHTYPE\tSebuah kata yang menjelaskan system yang berjalan ketika Bash berjalan.\n" +" MACHTYPE\tSebuah kata yang menjelaskan system yang berjalan ketika Bash " +"berjalan.\n" " MAILCHECK\tSeberapa sering, dalam detik, Bash memeriksa pesan baru.\n" -" MAILPATH\tDaftar dari nama berkas yang dipisahkan oleh titik-dua dimana Bash memeriksa\n" +" MAILPATH\tDaftar dari nama berkas yang dipisahkan oleh titik-dua dimana " +"Bash memeriksa\n" " \t\tpesan baru.\n" " OSTYPE\tVersi Unix dari Versi Bash yang sedang berjalan.\n" -" PATH\tDaftar direktori yang dipisahkan oleh titik-dua untuk mencari ketika\n" +" PATH\tDaftar direktori yang dipisahkan oleh titik-dua untuk mencari " +"ketika\n" " \t\tmencari perintah.\n" -" PROMPT_COMMAND\tSebuah perintah yang dijalankan sebelum menampilkan setiap\n" +" PROMPT_COMMAND\tSebuah perintah yang dijalankan sebelum menampilkan " +"setiap\n" " \t\tmasukan utama.\n" " PS1\t\tKata prompt utama.\n" " PS2\t\tKata prompt kedua.\n" @@ -4585,11 +4946,14 @@ msgstr "" " TERM\tNama dari tipe terminal sekarang.\n" " TIMEFORMAT\tFormat keluaran dari statistik waktu yang ditampilkan oleh\n" " \t\t`time' kata yang direserved.\n" -" auto_resume\tTidak kosong berarti sebuah kata perintah akan munncul di sebuah baris dengan\n" +" auto_resume\tTidak kosong berarti sebuah kata perintah akan munncul di " +"sebuah baris dengan\n" " \t\tsendirinya adalah pertama dicari dalam daftar dari\n" -" \t\tpekerjaan yang terhenti sekarang. Jika ditemukan disana, maka pekerjaan intu di foregroundkan.\n" +" \t\tpekerjaan yang terhenti sekarang. Jika ditemukan disana, maka " +"pekerjaan intu di foregroundkan.\n" " \t\tNila dari `exact' berarti kata perintah harus\n" -" \t\tcocok secara tepat dalam daftar dari pekerjaan yang terhenti. Sebuah\n" +" \t\tcocok secara tepat dalam daftar dari pekerjaan yang terhenti. " +"Sebuah\n" " \t\tNila dari `substring' berarti bahwa kata perintah harus cocok\n" " \t\tdengan substring dari pekerjaan. Nilai yang lain berarti\n" " \t\tperintah harus diawali dari sebuah pekerjaan yang terhenti.\n" @@ -4598,10 +4962,11 @@ msgstr "" " \t\tpengganti sejarah, biasanya `!'. Karakter kedua\n" " \t\tdari `quick substitution', biasanya `^'. Karakter\n" " \t\tketiga adalah karakter `history comment'. biasanya `#',\n" -" HISTIGNORE\tSebuah daftar pola yang dipisahkan oleh titik dua yang digunakan untuk menentukan dimana\n" +" HISTIGNORE\tSebuah daftar pola yang dipisahkan oleh titik dua yang " +"digunakan untuk menentukan dimana\n" " \t\tperintah seharusnya disimpan dalam daftar sejarah.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4638,7 +5003,8 @@ msgstr "" " Tanpa argumen, menukar top dari dua direktori.\n" " \n" " Opsi:\n" -" -n\tmenekan perubahan normal dari direktori ketika menambahkan direktori\n" +" -n\tmenekan perubahan normal dari direktori ketika menambahkan " +"direktori\n" " \tke stack, jadi hanya stack yang dimanipulasi.\n" " \n" " Argumen:\n" @@ -4656,10 +5022,11 @@ msgstr "" " Builtin `dirs' menampilkan direktori stack.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali ada sebuah argumen tidak valid diberikan atau pemindahan\n" +" Mengembalikan sukses kecuali ada sebuah argumen tidak valid diberikan " +"atau pemindahan\n" " direktori gagal." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4692,25 +5059,29 @@ msgstr "" " direktori baru.\n" " \n" " Opsi:\n" -" -n\tmenekan perubahan normal dari direktori ketika menghapus direktori\n" +" -n\tmenekan perubahan normal dari direktori ketika menghapus " +"direktori\n" " \tdari stack, jadi hanya stack yang dimanipulasi.\n" " \n" " Argumen:\n" " +N\tmenghapus masukan ke N dihitung dari kiri dari daftar\n" -" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd +0'\n" +" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd " +"+0'\n" " \tmenghapus direktori terakhir, `popd +1' sebelum terakhir.\n" " \n" " -N\tmenghapus masukan ke N dihitung dari kanan dari daftar\n" -" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd -0'\n" +" \tyang ditampilkan oleh `dirs', dimulai dari nol. Sebagai contoh: `popd -" +"0'\n" " \tmenghapus direktori terakhir, `popd -1' sebelum terakhir.\n" " \n" " Builtin `dirs' menampilkan direktori stack.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali ada sebuah argumen tidak valid diberikan atau pemindahan\n" +" Mengembalikan sukses kecuali ada sebuah argumen tidak valid diberikan " +"atau pemindahan\n" " direktori gagal." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4727,10 +5098,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" " Exit Status:\n" @@ -4739,31 +5112,38 @@ msgstr "" "Menampilkan direktori stack.\n" " \n" " Menampilkan daftar dari direktori yang diingat saat ini. Direktori\n" -" menemukan jalannya kedalam daftar dengan perintah `pushd'; anda dapat memperoleh\n" +" menemukan jalannya kedalam daftar dengan perintah `pushd'; anda dapat " +"memperoleh\n" " backup melalui daftar dengan perintah `popd'.\n" " \n" " Opsi:\n" " -c\tmenghapus direktori stack dengan menghapus seluruh elemen.\n" -" -l\tjangan menampilkan versi yang diawali tilde dari direktori yang relatif\n" +" -l\tjangan menampilkan versi yang diawali tilde dari direktori yang " +"relatif\n" " \tke direktori rumah anda\n" " -p\tmenampilkan direktori stack dengan satu masukan setiap baris\n" -" -v\tmenampilkan direktori stack dengan satu masukan setiap baris diawali\n" +" -v\tmenampilkan direktori stack dengan satu masukan setiap baris " +"diawali\n" " \tdengan posisinya dalam stack\n" " Argumen:\n" -" +N\tmenampilkan masukan ke N dihitung dari kiri dari daftar yang ditampilkan oleh\n" +" +N\tmenampilkan masukan ke N dihitung dari kiri dari daftar yang " +"ditampilkan oleh\n" " \tdirs ketika dijalankan tanpa opsi, dimulai dari nol.\n" " \n" -" -N\tmenampilkan masukan ke N dihitung dari kanan dari daftar yang ditampilkan oleh\n" +" -N\tmenampilkan masukan ke N dihitung dari kanan dari daftar yang " +"ditampilkan oleh\n" " \tdirs ketika dijalankan tanpa opsi, dimulai dari nol. \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali ada sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali ada sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" " Change the setting of each shell option OPTNAME. Without any option\n" -" arguments, list all shell options with an indication of whether or not each\n" +" arguments, list all shell options with an indication of whether or not " +"each\n" " is set.\n" " \n" " Options:\n" @@ -4791,10 +5171,11 @@ msgstr "" " -u\tnonaktifkan (unset) setiap OPTNAME\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses jika OPTNAME diaktifkan; gagal jika sebuah opsi tidak valid diberikan\n" +" Mengembalikan sukses jika OPTNAME diaktifkan; gagal jika sebuah opsi " +"tidak valid diberikan\n" " atau OPTNAME dinonaktifkan." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4802,20 +5183,25 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: plain\n" -" characters, which are simply copied to standard output; character escape\n" +" FORMAT is a character string which contains three types of objects: " +"plain\n" +" characters, which are simply copied to standard output; character " +"escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next successive\n" +" format specifications, each of which causes printing of the next " +"successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in printf(1)\n" +" In addition to the standard format specifications described in printf" +"(1)\n" " and printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or assignment\n" +" Returns success unless an invalid option is given or a write or " +"assignment\n" " error occurs." msgstr "" "Format dan tampilkan ARGUMEN dalam kontrol dari FORMAT.\n" @@ -4824,27 +5210,34 @@ msgstr "" " -v var\tkeluaran ditempatkan dalam sebuah nilai dari variabel\n" " shell VAR daripada dikirimkan ke keluaran standar.\n" " \n" -" FORMAT adalah sebuah karakter string yang berisi dari tiga tipe dari objects: plain\n" -" karakter, yang disalin secara sederhana dari keluaran standar, karakter escape\n" +" FORMAT adalah sebuah karakter string yang berisi dari tiga tipe dari " +"objects: plain\n" +" karakter, yang disalin secara sederhana dari keluaran standar, karakter " +"escape\n" " sequences yang mengubah dan menyalin keluaran standar, dan\n" " spesifikasi format, yang selalu menampilkan argumen\n" " \n" " Tambahan dari spesifikasi standar printf(1) formats dan\n" " printf(3), printf menginterprestasikan:\n" " \n" -" %b berarti untuk menexpand backslash escape sequences dalam argumen yang sesuai\n" -" %q berarti meng-quote argumen dalam sebuah cara yang dapat digunakan sebagai masukan shell.\n" +" %b berarti untuk menexpand backslash escape sequences dalam argumen " +"yang sesuai\n" +" %q berarti meng-quote argumen dalam sebuah cara yang dapat digunakan " +"sebagai masukan shell.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah penulisan atau penempatan\n" +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah penulisan atau penempatan\n" " error terjadi." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no options\n" -" are supplied, existing completion specifications are printed in a way that\n" +" For each NAME, specify how arguments are to be completed. If no " +"options\n" +" are supplied, existing completion specifications are printed in a way " +"that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -4860,27 +5253,33 @@ msgid "" msgstr "" "Spesifikasikan bagaimana argumen akan diselesaikan oleh Readline.\n" " \n" -" Untuk setiap NAMA, spesifikasikan bagaimana argumen akan diselesaikan. Jika tidak ada opsi\n" -" yang diberikan, spesifikasi penyelesaian yang sudah ada akan ditampilkan dalam cara\n" +" Untuk setiap NAMA, spesifikasikan bagaimana argumen akan diselesaikan. " +"Jika tidak ada opsi\n" +" yang diberikan, spesifikasi penyelesaian yang sudah ada akan ditampilkan " +"dalam cara\n" " yang diperbolehkan untuk digunakan sebagai masukan.\n" " \n" " Opsi:\n" -" -p\ttampilkan spesifikasi penyelesaian yang telah ada dalam format yang berguna\n" -" -r\thapus sebuah spesifikasi penyelesaian untuk setiap NAMA, atau jika tidak ada\n" +" -p\ttampilkan spesifikasi penyelesaian yang telah ada dalam format " +"yang berguna\n" +" -r\thapus sebuah spesifikasi penyelesaian untuk setiap NAMA, atau jika " +"tidak ada\n" " \tNAMA yang diberikan, seluruh spesifikasi penyelesaian\n" " \n" " Ketika penyelesaian dicoba, aksi yang dilakukan dalam urutan\n" " huruf besar opsi yang ditampilkan diatas.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches against\n" +" completions. If the optional WORD argument is supplied, matches " +"against\n" " WORD are generated.\n" " \n" " Exit Status:\n" @@ -4888,20 +5287,25 @@ msgid "" msgstr "" "Menampilkan kemungkinan penyelesaian tergantung dari opsi.\n" " \n" -" Ditujukan untuk digunakan dari dalam sebuah fungsi shell yang menghasilkan kemungkinan untuk completions.\n" +" Ditujukan untuk digunakan dari dalam sebuah fungsi shell yang " +"menghasilkan kemungkinan untuk completions.\n" " Jika argumen WORD opsional yang diberikan, cocok dengan WORD telah\n" " dihasilkan.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau sebuah error terjadi." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"sebuah error terjadi." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" -" the completion currently begin executed. If no OPTIONs are givenm, print\n" -" the completion options for each NAME or the current completion specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are " +"supplied,\n" +" the completion currently begin executed. If no OPTIONs are givenm, " +"print\n" +" the completion options for each NAME or the current completion " +"specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -4922,9 +5326,12 @@ msgid "" msgstr "" "Modifikasi atau tampilkan opsi penyelesaian.\n" " \n" -" Modifikasi opsi penyelesaian untuk setiap NAMA, atau, jika tidaka ada NAMA yang diberikan,\n" -" penyelesaian mulai dijalankan. Jika tidak ada OPSI yang diberikan, tampilkan\n" -" opsi penyelesaian untuk setiap NAMA atau spesifikasi penyelesaian sekarang.\n" +" Modifikasi opsi penyelesaian untuk setiap NAMA, atau, jika tidaka ada " +"NAMA yang diberikan,\n" +" penyelesaian mulai dijalankan. Jika tidak ada OPSI yang diberikan, " +"tampilkan\n" +" opsi penyelesaian untuk setiap NAMA atau spesifikasi penyelesaian " +"sekarang.\n" " \n" " Opsi:\n" " \t-o option\tSet opsi penyelesaian OPSI untuk setiap NAMA\n" @@ -4933,39 +5340,50 @@ msgstr "" " \n" " Argumen:\n" " \n" -" Setiap NAMA yang dirujuk dalam sebuah perintah untuk sebuah spesifikasi penyelesaian harus\n" -" sebelumnya telah didefinisikan dengan menggunakan builtin `complete'. Jika tidak ada NAMA\n" -" yang diberikan, compopt harus dipanggil oleh sebuah fungsi yang dibuat oleh penyelesaian sekarang,\n" +" Setiap NAMA yang dirujuk dalam sebuah perintah untuk sebuah spesifikasi " +"penyelesaian harus\n" +" sebelumnya telah didefinisikan dengan menggunakan builtin `complete'. " +"Jika tidak ada NAMA\n" +" yang diberikan, compopt harus dipanggil oleh sebuah fungsi yang dibuat " +"oleh penyelesaian sekarang,\n" " dan opsi untuk menjalankan penyelesaian sekarang\n" " telah dimodifikasi.\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau NAMA tidak memiliki\n" +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau NAMA " +"tidak memiliki\n" " spesifikasi penyelesaian yang terdefinisi." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" -" Read lines from the standard input into the array variable ARRAY, or from\n" -" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n" +" Read lines from the standard input into the array variable ARRAY, or " +"from\n" +" file descriptor FD if the -u option is supplied. The variable MAPFILE " +"is\n" " the default ARRAY.\n" " \n" " Options:\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied.\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0.\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " +"copied.\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " +"index is 0.\n" " -s count \tDiscard the first COUNT lines read.\n" " -t\t\tRemove a trailing newline from each line read.\n" -" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n" +" -u fd\t\tRead lines from file descriptor FD instead of the standard " +"input.\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read.\n" -" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n" +" -c quantum\tSpecify the number of lines read between each call to " +"CALLBACK.\n" " \n" " Arguments:\n" " ARRAY\t\tArray variable name to use for file data.\n" " \n" " If -C is supplied without -c, the default quantum is 5000.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY " +"before\n" " assigning to it.\n" " \n" " Exit Status:\n" @@ -4978,42 +5396,51 @@ msgstr "" " default ARRAY.\n" " \n" " Opsi:\n" -" -n count\tSalin di baris COUNT. Jika COUNT adalah 0, semua baris disalin.\n" -" -O origin\tAwal penempatan ke ARRAY di index ORIGIN. Default index adalah 0.\n" +" -n count\tSalin di baris COUNT. Jika COUNT adalah 0, semua baris " +"disalin.\n" +" -O origin\tAwal penempatan ke ARRAY di index ORIGIN. Default index " +"adalah 0.\n" " -s count \tAbaikan baris COUNT pertama yang dibaca.\n" " -t\t\tHapus sebuah akhiran baris baru dari setiap baris yang dibaca.\n" -" -u fd\t\tBaca baris dari berkas deskripsi FD daripada dari masukan standar.\n" -" -C callback\tEvaluasi CALLBACK untuk setiap waktu QUANTUM baris adalah baca.\n" -" -c quantum\tSpesifikasikan jumlah dari baris yang dibaca diantara setiap pemanggilan ke CALLBACK.\n" +" -u fd\t\tBaca baris dari berkas deskripsi FD daripada dari masukan " +"standar.\n" +" -C callback\tEvaluasi CALLBACK untuk setiap waktu QUANTUM baris adalah " +"baca.\n" +" -c quantum\tSpesifikasikan jumlah dari baris yang dibaca diantara " +"setiap pemanggilan ke CALLBACK.\n" " \n" " Argumen:\n" " ARRAY\t\tNama variabel array yang digunakan untuk berkas data.\n" " \n" " Jika -C Diberikan tanpa -c, default quantum adalah 5000.\n" " \n" -" Jika tidak diberikan dengan asal secara eksplisit, berkas peta akan menghapus ARRAY sebelum\n" +" Jika tidak diberikan dengan asal secara eksplisit, berkas peta akan " +"menghapus ARRAY sebelum\n" " ditempatkan kepadanya\n" " \n" " Status Keluar:\n" -" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau ARRAY adalah baca-saja." - -#~ msgid "Returns the context of the current subroutine call." -#~ msgstr "Mengembalikan context dari panggilan subroutine saat ini." +" Mengembalikan sukses kecuali sebuah opsi tidak valid diberikan atau " +"ARRAY adalah baca-saja." #~ msgid " " #~ msgstr " " #~ msgid "Without EXPR, returns returns \"$line $filename\". With EXPR," -#~ msgstr "Tanpa EXPR, mengembalikan kembalian \"$line $filename\". Dengan EXPR," +#~ msgstr "" +#~ "Tanpa EXPR, mengembalikan kembalian \"$line $filename\". Dengan EXPR," #~ msgid "returns \"$line $subroutine $filename\"; this extra information" -#~ msgstr "mengembalikan \"$line $subroutine $filename\"; informasi tambahan ini" +#~ msgstr "" +#~ "mengembalikan \"$line $subroutine $filename\"; informasi tambahan ini" #~ msgid "can be used used to provide a stack trace." #~ msgstr "dapat digunakan untuk menyediakan jejak sebuah stack." -#~ msgid "The value of EXPR indicates how many call frames to go back before the" -#~ msgstr "Nilai dari EXPR mengindikasikan berapa banyak call frames untuk kembali sebelum" +#~ msgid "" +#~ "The value of EXPR indicates how many call frames to go back before the" +#~ msgstr "" +#~ "Nilai dari EXPR mengindikasikan berapa banyak call frames untuk kembali " +#~ "sebelum" #~ msgid "current one; the top frame is frame 0." #~ msgstr "salah satu ini; top frame adalah frame 0." @@ -5028,43 +5455,63 @@ msgstr "" #~ msgstr "Tampilkan daftar dari direktori yang diingat sekarang. Direktori" #~ msgid "find their way onto the list with the `pushd' command; you can get" -#~ msgstr "menemukan jalannya sendiri kedalam daftar dengan perintah `pushd'; anda dapat memperoleh" +#~ msgstr "" +#~ "menemukan jalannya sendiri kedalam daftar dengan perintah `pushd'; anda " +#~ "dapat memperoleh" #~ msgid "back up through the list with the `popd' command." #~ msgstr "bantuan melalui daftar dari perintah `popd'." -#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions" -#~ msgstr "Flag -l menspesifikasikan bahwa `dirs' seharusnya tidak menampilkan versi pendek" +#~ msgid "" +#~ "The -l flag specifies that `dirs' should not print shorthand versions" +#~ msgstr "" +#~ "Flag -l menspesifikasikan bahwa `dirs' seharusnya tidak menampilkan versi " +#~ "pendek" -#~ msgid "of directories which are relative to your home directory. This means" +#~ msgid "" +#~ "of directories which are relative to your home directory. This means" #~ msgstr "dari direktori yang relatif dari direktori home anda. Ini berarti" #~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr "bahwa `~/bin' mungkin ditampilkan sebagai `/homes/bfox/bin'. Opsi -v" +#~ msgstr "" +#~ "bahwa `~/bin' mungkin ditampilkan sebagai `/homes/bfox/bin'. Opsi -v" #~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "menyebabkan `dirs' ditampilkan di stack direktori dengan satu masukan per baris," +#~ msgstr "" +#~ "menyebabkan `dirs' ditampilkan di stack direktori dengan satu masukan per " +#~ "baris," -#~ msgid "prepending the directory name with its position in the stack. The -p" +#~ msgid "" +#~ "prepending the directory name with its position in the stack. The -p" #~ msgstr "mendahului nama direktori dengan posisinya dalam stack. Opsi -p" #~ msgid "flag does the same thing, but the stack position is not prepended." #~ msgstr "melakukan hal yang sama, tetapi posisi stack tidak didahului." -#~ msgid "The -c flag clears the directory stack by deleting all of the elements." -#~ msgstr "Opsi -c menghapus direktori stack dengan cara menghapus seluruh elemen." +#~ msgid "" +#~ "The -c flag clears the directory stack by deleting all of the elements." +#~ msgstr "" +#~ "Opsi -c menghapus direktori stack dengan cara menghapus seluruh elemen." -#~ msgid "+N displays the Nth entry counting from the left of the list shown by" -#~ msgstr "+N menampilkan masukan ke N dihitung dari kiri dari daftar yang ditampilkan oleh" +#~ msgid "" +#~ "+N displays the Nth entry counting from the left of the list shown by" +#~ msgstr "" +#~ "+N menampilkan masukan ke N dihitung dari kiri dari daftar yang " +#~ "ditampilkan oleh" #~ msgid " dirs when invoked without options, starting with zero." #~ msgstr " dirs ketika dipanggil tanpa opsi, dimulai dengan nol." -#~ msgid "-N displays the Nth entry counting from the right of the list shown by" -#~ msgstr "-N menampilkan masukan ke N dihitung dari kanan dari daftar yang ditampilkan dengan" +#~ msgid "" +#~ "-N displays the Nth entry counting from the right of the list shown by" +#~ msgstr "" +#~ "-N menampilkan masukan ke N dihitung dari kanan dari daftar yang " +#~ "ditampilkan dengan" #~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "menambahkan sebuah direktori ke ujung atas dari direktori stack, atau memutar" +#~ msgstr "" +#~ "menambahkan sebuah direktori ke ujung atas dari direktori stack, atau " +#~ "memutar" #~ msgid "the stack, making the new top of the stack the current working" #~ msgstr "stack, membuat sebuah top baru dari stack direktori yang dipakai" @@ -5076,7 +5523,8 @@ msgstr "" #~ msgstr "+N Memutar stack sehingga direktori ke N (dihitung" #~ msgid " from the left of the list shown by `dirs', starting with" -#~ msgstr " dari kiri dari daftar yang ditampilkan oleh `dirs', dimulai dari" +#~ msgstr "" +#~ " dari kiri dari daftar yang ditampilkan oleh `dirs', dimulai dari" #~ msgid " zero) is at the top." #~ msgstr " nol) ini dilakukan di top." @@ -5085,10 +5533,12 @@ msgstr "" #~ msgstr "-N Memutar stact sehingga direktori ke N (dihitung" #~ msgid " from the right of the list shown by `dirs', starting with" -#~ msgstr " dari kanan dari daftar yang ditampilkan oleh `dirs', dimulai dengan" +#~ msgstr "" +#~ " dari kanan dari daftar yang ditampilkan oleh `dirs', dimulai dengan" #~ msgid "-n suppress the normal change of directory when adding directories" -#~ msgstr "-n menekan perubahan normal dari direktori ketika menambahkan direktori" +#~ msgstr "" +#~ "-n menekan perubahan normal dari direktori ketika menambahkan direktori" #~ msgid " to the stack, so only the stack is manipulated." #~ msgstr " ke stack, jadi hanya stack yang dimanipulasi." @@ -5127,10 +5577,13 @@ msgstr "" #~ msgstr " yang terlihat oleh `dirs', dimulai dari nol. Contoh: `popd -0'" #~ msgid " removes the last directory, `popd -1' the next to last." -#~ msgstr " menghapus direktori terakhir, `popd -1' selanjutnya ke terakhir." +#~ msgstr "" +#~ " menghapus direktori terakhir, `popd -1' selanjutnya ke terakhir." -#~ msgid "-n suppress the normal change of directory when removing directories" -#~ msgstr "-n menekan perubahan normal dari direktori ketika menghapus direktori" +#~ msgid "" +#~ "-n suppress the normal change of directory when removing directories" +#~ msgstr "" +#~ "-n menekan perubahan normal dari direktori ketika menghapus direktori" #~ msgid " from the stack, so only the stack is manipulated." #~ msgstr " dari stack, sehingga hanya stack yang dimanipulasi." @@ -5157,7 +5610,8 @@ msgstr "" #~ "Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" #~ " break N levels." #~ msgstr "" -#~ "Keluar dari dalam sebuah FOR, WHILE, atau UNTIL loop. jika N dispesifikasikan,\n" +#~ "Keluar dari dalam sebuah FOR, WHILE, atau UNTIL loop. jika N " +#~ "dispesifikasikan,\n" #~ " break N levels." #~ msgid "" @@ -5165,8 +5619,10 @@ msgstr "" #~ " shell builtin to be a function, but need the functionality of the\n" #~ " builtin within the function itself." #~ msgstr "" -#~ "Jalankan sebuah builtin shell. Ini akan berguna ketika anda mengharapkan untuk mengganti nama sebuah\n" -#~ " shell builting ke sebuah fungsi, tetapi membutuhkan sebuah fungsionalitas dari\n" +#~ "Jalankan sebuah builtin shell. Ini akan berguna ketika anda mengharapkan " +#~ "untuk mengganti nama sebuah\n" +#~ " shell builting ke sebuah fungsi, tetapi membutuhkan sebuah " +#~ "fungsionalitas dari\n" #~ " sebuah fungsi builtin itu sendiri." #~ msgid "" @@ -5174,7 +5630,8 @@ msgstr "" #~ " the physical directory, without any symbolic links; the -L option\n" #~ " makes pwd follow symbolic links." #~ msgstr "" -#~ "Tampilkan direktori yang sedang digunakan saat ini. Dengan opsi -P, pwd menampilkan\n" +#~ "Tampilkan direktori yang sedang digunakan saat ini. Dengan opsi -P, pwd " +#~ "menampilkan\n" #~ " direktori physical, tanpa symbolic link yang lain; dengan opsi -L\n" #~ " membuat pwd mengikuti symbolic links." @@ -5184,16 +5641,23 @@ msgstr "" #~ msgid "" #~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell\n" #~ " function called `ls', and you wish to call the command `ls', you can\n" -#~ " say \"command ls\". If the -p option is given, a default value is used\n" -#~ " for PATH that is guaranteed to find all of the standard utilities. If\n" -#~ " the -V or -v option is given, a string is printed describing COMMAND.\n" +#~ " say \"command ls\". If the -p option is given, a default value is " +#~ "used\n" +#~ " for PATH that is guaranteed to find all of the standard utilities. " +#~ "If\n" +#~ " the -V or -v option is given, a string is printed describing " +#~ "COMMAND.\n" #~ " The -V option produces a more verbose description." #~ msgstr "" -#~ "Menjalankan PERINTAH dengan ARGS mengabaikan fungsi shell. Jika anda memiliki sebuah shell\n" -#~ " fungsi yang memanggil `ls', dan anda berharap untuk memanggil perintah `ls', anda dapat\n" -#~ " mengatakan \"command ls\". Jika opsi -p diberikan, sebuah nilai default digunakan\n" +#~ "Menjalankan PERINTAH dengan ARGS mengabaikan fungsi shell. Jika anda " +#~ "memiliki sebuah shell\n" +#~ " fungsi yang memanggil `ls', dan anda berharap untuk memanggil " +#~ "perintah `ls', anda dapat\n" +#~ " mengatakan \"command ls\". Jika opsi -p diberikan, sebuah nilai " +#~ "default digunakan\n" #~ " untuk PATH yang menjamin untuk mencari semua utilitis standar. Jika\n" -#~ " opsi -V atau -v diberikan, sebuah string ditampilkan mendeskripsikan PERINTAH.\n" +#~ " opsi -V atau -v diberikan, sebuah string ditampilkan mendeskripsikan " +#~ "PERINTAH.\n" #~ " Opsi -V menghasilkan deskripsi yang lebih detail." #~ msgid "" @@ -5205,7 +5669,8 @@ msgstr "" #~ " \n" #~ " -a\tto make NAMEs arrays (if supported)\n" #~ " -f\tto select from among function names only\n" -#~ " -F\tto display function names (and line number and source file name if\n" +#~ " -F\tto display function names (and line number and source file name " +#~ "if\n" #~ " \tdebugging) without definitions\n" #~ " -i\tto make NAMEs have the `integer' attribute\n" #~ " -r\tto make NAMEs readonly\n" @@ -5219,10 +5684,12 @@ msgstr "" #~ " and definition. The -F option restricts the display to function\n" #~ " name only.\n" #~ " \n" -#~ " Using `+' instead of `-' turns off the given attribute instead. When\n" +#~ " Using `+' instead of `-' turns off the given attribute instead. " +#~ "When\n" #~ " used in a function, makes NAMEs local, as with the `local' command." #~ msgstr "" -#~ "Declare variabel dan/atau memberikan atribut kepada mereka. Jika tidak ada NAMA yang\n" +#~ "Declare variabel dan/atau memberikan atribut kepada mereka. Jika tidak " +#~ "ada NAMA yang\n" #~ " diberikan, maka menampilkan nilai dari variabel. Opsi -p\n" #~ " akan menampilkan atribut dan nilai dari setiap NAMA.\n" #~ " \n" @@ -5230,7 +5697,8 @@ msgstr "" #~ " \n" #~ " -a\tuntuk membuat aray NAMA (jika disupport)\n" #~ " -f\tuntuk memilih dari nama fungsi saja\n" -#~ " -F\tuntuk menampilkan nama fungsi (dan nomor baris dan source nama file jika\n" +#~ " -F\tuntuk menampilkan nama fungsi (dan nomor baris dan source nama " +#~ "file jika\n" #~ " \tdebugging) tanpa definisi\n" #~ " -i\tuntuk membuat NAMA memiliki atribut `integer'\n" #~ " -r\tuntuk membuat NAMA baca-saja\n" @@ -5240,12 +5708,15 @@ msgstr "" #~ " Variabel dengan atribut integer memiliki arithmetic evaluasi (lihat\n" #~ " `let') selesai ketika variabel diberikan ke.\n" #~ " \n" -#~ " Ketika menampilkan nilai dari variabel, -f menampilkan sebuah nama fungsi\n" +#~ " Ketika menampilkan nilai dari variabel, -f menampilkan sebuah nama " +#~ "fungsi\n" #~ " dan definisi. Opsi -F menekan untuk menampikan nama\n" #~ " fungsi saja.\n" #~ " \n" -#~ " Menggunakan `+' daripada `-' mematikan atribut yang diberikan. Ketika\n" -#~ " sedang digunkan dalam sebuah fungsi, membuat NAMA lokal, seperti dalam perintah 'local'." +#~ " Menggunakan `+' daripada `-' mematikan atribut yang diberikan. " +#~ "Ketika\n" +#~ " sedang digunkan dalam sebuah fungsi, membuat NAMA lokal, seperti " +#~ "dalam perintah 'local'." #~ msgid "Obsolete. See `declare'." #~ msgstr "Kadaluarsa. Lihat `declare'." @@ -5255,12 +5726,16 @@ msgstr "" #~ " can only be used within a function; it makes the variable NAME\n" #~ " have a visible scope restricted to that function and its children." #~ msgstr "" -#~ "Membuat sebuah variabel lokal yang disebut NAMA, dan menampilkan NILAI-nya. LOKAL\n" +#~ "Membuat sebuah variabel lokal yang disebut NAMA, dan menampilkan NILAI-" +#~ "nya. LOKAL\n" #~ " hanya dapat digunakan dalam sebuah fungsi; ini membuat NAMA variabel\n" #~ " memiliki scope visibel terbatas untuk fungsi itu dan anaknya." -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "Keluaran dari ARGs. Jika opsi -n dispesifikasikan, akhiran baris baru dihapus." +#~ msgid "" +#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." +#~ msgstr "" +#~ "Keluaran dari ARGs. Jika opsi -n dispesifikasikan, akhiran baris baru " +#~ "dihapus." #~ msgid "" #~ "Enable and disable builtin shell commands. This allows\n" @@ -5274,25 +5749,36 @@ msgstr "" #~ " previously loaded with -f. If no non-option names are given, or\n" #~ " the -p option is supplied, a list of builtins is printed. The\n" #~ " -a option means to print every builtin with an indication of whether\n" -#~ " or not it is enabled. The -s option restricts the output to the POSIX.2\n" -#~ " `special' builtins. The -n option displays a list of all disabled builtins." +#~ " or not it is enabled. The -s option restricts the output to the " +#~ "POSIX.2\n" +#~ " `special' builtins. The -n option displays a list of all disabled " +#~ "builtins." #~ msgstr "" #~ "Enable dan disable perintah builtin shell. Ini membolehkan\n" -#~ " anda untuk menggunakan perintah disk yang memiliki nama sama seperti sebuah NAMA\n" -#~ " shell builtin tanpa menspesifikasikan sebuah pathname full. Jika opsi -n digunakan,\n" +#~ " anda untuk menggunakan perintah disk yang memiliki nama sama seperti " +#~ "sebuah NAMA\n" +#~ " shell builtin tanpa menspesifikasikan sebuah pathname full. Jika opsi " +#~ "-n digunakan,\n" #~ " NAMA menjadi disabled; jika tidak NAMA menjadi enabled. Contoh,\n" #~ " gunakan `test' ditemukan dalam $PATH daripada dalam builtin versi\n" #~ " builtin shell, ketik `enable -n test'. Di system mensupport dynamic\n" -#~ " loading, opsi -f mungkin bisa digunakan untuk menload builtin baru dari\n" +#~ " loading, opsi -f mungkin bisa digunakan untuk menload builtin baru " +#~ "dari\n" #~ " shared object NAMAFILE. Opsi -d akan menghapus sebuah builting\n" -#~ " yang sebelumnya diload dengan opsi -f. Jika tidak ada nama opsi yang diberikan, atau\n" +#~ " yang sebelumnya diload dengan opsi -f. Jika tidak ada nama opsi yang " +#~ "diberikan, atau\n" #~ " opsi -p diberikan, daftar dari builtin ditampilkan.\n" -#~ " Opsi -a berarti menampilkan setiap builtin dengan sebuah indikasi apakah\n" +#~ " Opsi -a berarti menampilkan setiap builtin dengan sebuah indikasi " +#~ "apakah\n" #~ " atau tidak ini enabled. Opsi -s membatasi keluaran ke POSIX.2\n" -#~ " `special' builtins. Opsi -n menampilkan daftar dari semua yang builtins yang disabled." +#~ " `special' builtins. Opsi -n menampilkan daftar dari semua yang " +#~ "builtins yang disabled." -#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)." -#~ msgstr "Baca ARGs sebagai masukan ke shell dan jalankan untuk menghasilkan perintah(s)." +#~ msgid "" +#~ "Read ARGs as input to the shell and execute the resulting command(s)." +#~ msgstr "" +#~ "Baca ARGs sebagai masukan ke shell dan jalankan untuk menghasilkan " +#~ "perintah(s)." #~ msgid "" #~ "Exec FILE, replacing this shell with the specified program.\n" @@ -5306,8 +5792,10 @@ msgstr "" #~ msgstr "" #~ "Exec FILE, menimpa shell ini dengan aplikasi yang dispesifikasikan.\n" #~ " Jika FILE tidak dispesifikasikan, redirectiions mengambil efek dalam\n" -#~ " shell ini. Jika argumen pertama adalah `-l', maka tempatkan sebuah dash dalam\n" -#~ " argument ke nol yang dilewatkan ke FILE, seperti yang dilakukan oleh login. Jika opsi `-c'\n" +#~ " shell ini. Jika argumen pertama adalah `-l', maka tempatkan sebuah " +#~ "dash dalam\n" +#~ " argument ke nol yang dilewatkan ke FILE, seperti yang dilakukan oleh " +#~ "login. Jika opsi `-c'\n" #~ " diberikan, FILE dijalankan dengan environmen kosong. Jika opsi `-a'\n" #~ " berarti menset argv[0] dari proses yang dijalankan ke NAMA.\n" #~ " Jika berkas tidak dapat dijalankan dan shell bukan interaktif,\n" @@ -5321,23 +5809,32 @@ msgstr "" #~ " remembered. If the -p option is supplied, PATHNAME is used as the\n" #~ " full pathname of NAME, and no path search is performed. The -r\n" #~ " option causes the shell to forget all remembered locations. The -d\n" -#~ " option causes the shell to forget the remembered location of each NAME.\n" +#~ " option causes the shell to forget the remembered location of each " +#~ "NAME.\n" #~ " If the -t option is supplied the full pathname to which each NAME\n" -#~ " corresponds is printed. If multiple NAME arguments are supplied with\n" -#~ " -t, the NAME is printed before the hashed full pathname. The -l option\n" -#~ " causes output to be displayed in a format that may be reused as input.\n" -#~ " If no arguments are given, information about remembered commands is displayed." +#~ " corresponds is printed. If multiple NAME arguments are supplied " +#~ "with\n" +#~ " -t, the NAME is printed before the hashed full pathname. The -l " +#~ "option\n" +#~ " causes output to be displayed in a format that may be reused as " +#~ "input.\n" +#~ " If no arguments are given, information about remembered commands is " +#~ "displayed." #~ msgstr "" #~ "Untuk setiap NAMA, full pathname dari perintah ditentukan dan\n" #~ " diingat. Jika opsi -p diberikan, PATHNAME digunakan sebagai\n" -#~ " full pathname dari NAME, dan tidak ada jalur pencarian yang dilakukan. Opsi -r\n" +#~ " full pathname dari NAME, dan tidak ada jalur pencarian yang " +#~ "dilakukan. Opsi -r\n" #~ " menyebabkan shell untuk melupakan semua lokasi yang diingat. Opsi -d\n" #~ " menyebabkan shell untuk melupakan lokasi dari setiap NAMA.\n" #~ " Jika opsi -t diberikan ful pathname ke setiap NAMA\n" -#~ " yang bersesuaian ditampilkan. Jika beberapa argumen NAMA diberikan dengan\n" +#~ " yang bersesuaian ditampilkan. Jika beberapa argumen NAMA diberikan " +#~ "dengan\n" #~ " opsi -t, NAME ditampilkan sebelum hashed full pathname. Opsi -l\n" -#~ " menyebabkan keluaran untuk ditampilkan dalam format yang biasa digunakan sebagai masukan.\n" -#~ " Jika tidak ada argumen yang diberikan, informasi mengenai perintah yang diingat akan ditampilkan." +#~ " menyebabkan keluaran untuk ditampilkan dalam format yang biasa " +#~ "digunakan sebagai masukan.\n" +#~ " Jika tidak ada argumen yang diberikan, informasi mengenai perintah " +#~ "yang diingat akan ditampilkan." #~ msgid "" #~ "Display helpful information about builtin commands. If PATTERN is\n" @@ -5346,30 +5843,41 @@ msgstr "" #~ " restricts the output for each builtin command matching PATTERN to\n" #~ " a short usage synopsis." #~ msgstr "" -#~ "Menampilkan informasi yang berharga mengenai perintah builtin. Jika PATTERN\n" -#~ " dispesifikasikan, memberikan bantuan detail mengenail seluruh perintah yang cocok dengan PATTERN,\n" +#~ "Menampilkan informasi yang berharga mengenai perintah builtin. Jika " +#~ "PATTERN\n" +#~ " dispesifikasikan, memberikan bantuan detail mengenail seluruh " +#~ "perintah yang cocok dengan PATTERN,\n" #~ " jika tidak sebuah daftar dari builtings akan ditampilkan. Opsi -s\n" -#~ " membatasi keluaran dari setiap perintah builtin yang cocok dengan PATTERN ke\n" +#~ " membatasi keluaran dari setiap perintah builtin yang cocok dengan " +#~ "PATTERN ke\n" #~ " ringkasan penggunaan singkat." #~ msgid "" #~ "By default, removes each JOBSPEC argument from the table of active jobs.\n" -#~ " If the -h option is given, the job is not removed from the table, but is\n" +#~ " If the -h option is given, the job is not removed from the table, but " +#~ "is\n" #~ " marked so that SIGHUP is not sent to the job if the shell receives a\n" -#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove all\n" -#~ " jobs from the job table; the -r option means to remove only running jobs." +#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove " +#~ "all\n" +#~ " jobs from the job table; the -r option means to remove only running " +#~ "jobs." #~ msgstr "" #~ "Secara default, menghapus setiap JOBSPEC argumen dari tabel actif jobs.\n" -#~ " Jika opsi -n diberikan, pekerjaan tidak dihapus dari tabel, tetap ditandai\n" -#~ " sehingga ketika SIGHUP tidak terkirim ke job ketika shell menerima sebuah\n" -#~ " SIGHUP. Opsi -a, ketika JOBSPEC tidak diberikan, berarti menghapus seluruh\n" -#~ " pekerjaan dari job tabel; Opsi -r berarti hanya menghapus pekerjaan yang berjalan." +#~ " Jika opsi -n diberikan, pekerjaan tidak dihapus dari tabel, tetap " +#~ "ditandai\n" +#~ " sehingga ketika SIGHUP tidak terkirim ke job ketika shell menerima " +#~ "sebuah\n" +#~ " SIGHUP. Opsi -a, ketika JOBSPEC tidak diberikan, berarti menghapus " +#~ "seluruh\n" +#~ " pekerjaan dari job tabel; Opsi -r berarti hanya menghapus pekerjaan " +#~ "yang berjalan." #~ msgid "" #~ "Causes a function to exit with the return value specified by N. If N\n" #~ " is omitted, the return status is that of the last command." #~ msgstr "" -#~ "Menyebabkan sebuah fungsi untuk keluar dengan nilai kembalian dispesifikasikan oleh N. Jika N\n" +#~ "Menyebabkan sebuah fungsi untuk keluar dengan nilai kembalian " +#~ "dispesifikasikan oleh N. Jika N\n" #~ " diabaikan, maka status kembalian adalah status dari perintah terakhir." #~ msgid "" @@ -5381,9 +5889,12 @@ msgstr "" #~ msgstr "" #~ "Untuk setiap NAMA, hapus variabel atau fungsi yang berhubungan. Dengan\n" #~ " opsi `-v', unset hanya berlaku di variabel. Dengan opsi `-f',\n" -#~ " unset hanya berlaku untuk fungsi. Dengan tidak menggunakan dua opsi itu,\n" -#~ " pertama akan mencoba mengunset variabel, dan jika itu gagal maka akan\n" -#~ " mencoba untuk mengunset sebuah fungsi. Beberapa variabel tidak dapat diunset. Lihat readonly." +#~ " unset hanya berlaku untuk fungsi. Dengan tidak menggunakan dua opsi " +#~ "itu,\n" +#~ " pertama akan mencoba mengunset variabel, dan jika itu gagal maka " +#~ "akan\n" +#~ " mencoba untuk mengunset sebuah fungsi. Beberapa variabel tidak dapat " +#~ "diunset. Lihat readonly." #~ msgid "" #~ "NAMEs are marked for automatic export to the environment of\n" @@ -5396,27 +5907,34 @@ msgstr "" #~ msgstr "" #~ "NAMA ditandai untuk otomatis export ke environment dari\n" #~ " perintah yang akan dijalankan selanjutnya. Jika opsi -f diberikan,\n" -#~ " NAMA akan menunjuk ke fungsi. Jika tidak ada NAMA diberikan, atau jika opsi `-p'\n" +#~ " NAMA akan menunjuk ke fungsi. Jika tidak ada NAMA diberikan, atau " +#~ "jika opsi `-p'\n" #~ " diberikan, daftar dari seluruh nama yang diexport dalam shell ini\n" -#~ " ditampilkan. Sebuah argumen dari opsi `-n' mengatakan untuk menghapus expor properti\n" -#~ " dari NAMA selanjutnya. Sebuah argumen dari `--' menonaktifkan pemrosesan\n" +#~ " ditampilkan. Sebuah argumen dari opsi `-n' mengatakan untuk menghapus " +#~ "expor properti\n" +#~ " dari NAMA selanjutnya. Sebuah argumen dari `--' menonaktifkan " +#~ "pemrosesan\n" #~ " opsi selanjutnya." #~ msgid "" #~ "The given NAMEs are marked readonly and the values of these NAMEs may\n" #~ " not be changed by subsequent assignment. If the -f option is given,\n" #~ " then functions corresponding to the NAMEs are so marked. If no\n" -#~ " arguments are given, or if `-p' is given, a list of all readonly names\n" +#~ " arguments are given, or if `-p' is given, a list of all readonly " +#~ "names\n" #~ " is printed. The `-a' option means to treat each NAME as\n" #~ " an array variable. An argument of `--' disables further option\n" #~ " processing." #~ msgstr "" -#~ "NAMA yang diberikan ditandai secara baca-saja dan nilai dari NAMA ini tidak\n" +#~ "NAMA yang diberikan ditandai secara baca-saja dan nilai dari NAMA ini " +#~ "tidak\n" #~ " boleh diubah oleh assignmen selanjutnya. Jika opsi -f diberikan,\n" #~ " maka fungsi yang berhubungan dengan NAMA akan ditandai. Jika tidak\n" -#~ " ada argumen yang diberikan, atau jika opsi `-p' diberikan, sebuah daftar dari seluruh nama baca-saja\n" +#~ " ada argumen yang diberikan, atau jika opsi `-p' diberikan, sebuah " +#~ "daftar dari seluruh nama baca-saja\n" #~ " ditampilkan. Opsi `-a' berarti memperlakukan setiap NAMA sebagai\n" -#~ " sebuah variabel array. Sebuah argumen dari `--' menonaktifkan pemrosesan\n" +#~ " sebuah variabel array. Sebuah argumen dari `--' menonaktifkan " +#~ "pemrosesan\n" #~ " opsi selanjutnya." #~ msgid "" @@ -5431,73 +5949,96 @@ msgstr "" #~ " signal. The `-f' if specified says not to complain about this\n" #~ " being a login shell if it is; just suspend anyway." #~ msgstr "" -#~ "Suspend eksekusi dari shell ini sampai ini menerima sebuah sinyal SIGCONT\n" -#~ " Jika opsi `-f' dispesifikasikan maka tidak komplain tentang ini menjadi\n" +#~ "Suspend eksekusi dari shell ini sampai ini menerima sebuah sinyal " +#~ "SIGCONT\n" +#~ " Jika opsi `-f' dispesifikasikan maka tidak komplain tentang ini " +#~ "menjadi\n" #~ " sebuah login shell jika emang begitu. Hanya lakukan suspend saja." #~ msgid "" #~ "Print the accumulated user and system times for processes run from\n" #~ " the shell." #~ msgstr "" -#~ "Tampilkan waktu yang terakumulasi oleh pengguna dan system untuk proses yang berjalan dari\n" +#~ "Tampilkan waktu yang terakumulasi oleh pengguna dan system untuk proses " +#~ "yang berjalan dari\n" #~ " shell." #~ msgid "" #~ "For each NAME, indicate how it would be interpreted if used as a\n" #~ " command name.\n" #~ " \n" -#~ " If the -t option is used, `type' outputs a single word which is one of\n" -#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is an\n" -#~ " alias, shell reserved word, shell function, shell builtin, disk file,\n" +#~ " If the -t option is used, `type' outputs a single word which is one " +#~ "of\n" +#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is " +#~ "an\n" +#~ " alias, shell reserved word, shell function, shell builtin, disk " +#~ "file,\n" #~ " or unfound, respectively.\n" #~ " \n" #~ " If the -p flag is used, `type' either returns the name of the disk\n" #~ " file that would be executed, or nothing if `type -t NAME' would not\n" #~ " return `file'.\n" #~ " \n" -#~ " If the -a flag is used, `type' displays all of the places that contain\n" +#~ " If the -a flag is used, `type' displays all of the places that " +#~ "contain\n" #~ " an executable named `file'. This includes aliases, builtins, and\n" #~ " functions, if and only if the -p flag is not also used.\n" #~ " \n" #~ " The -f flag suppresses shell function lookup.\n" #~ " \n" -#~ " The -P flag forces a PATH search for each NAME, even if it is an alias,\n" -#~ " builtin, or function, and returns the name of the disk file that would\n" +#~ " The -P flag forces a PATH search for each NAME, even if it is an " +#~ "alias,\n" +#~ " builtin, or function, and returns the name of the disk file that " +#~ "would\n" #~ " be executed." #~ msgstr "" -#~ "Untuk setiap NAMA, mengindikasikan bagaimana ini akan diinterpretasikan jika digunakan sebagai sebuah\n" +#~ "Untuk setiap NAMA, mengindikasikan bagaimana ini akan diinterpretasikan " +#~ "jika digunakan sebagai sebuah\n" #~ " nama perintah.\n" #~ " \n" -#~ " Jika sebuah opsi -t digunakan, `type' mengeluarkan sebuah kata tunggal yang salah satu dari\n" -#~ " `alias', `keyword', `function', `builtin', `file', atau `', jika NAMA adalah sebuah\n" -#~ " alias, shell kata yang dipesan, shell fungsi, shell builtin, disk file,\n" +#~ " Jika sebuah opsi -t digunakan, `type' mengeluarkan sebuah kata " +#~ "tunggal yang salah satu dari\n" +#~ " `alias', `keyword', `function', `builtin', `file', atau `', jika NAMA " +#~ "adalah sebuah\n" +#~ " alias, shell kata yang dipesan, shell fungsi, shell builtin, disk " +#~ "file,\n" #~ " atau tidak ditemukan, respectively.\n" #~ " \n" -#~ " Jika flag -p digunakan, `type' menampilkan semua dari tempat yang berisi\n" +#~ " Jika flag -p digunakan, `type' menampilkan semua dari tempat yang " +#~ "berisi\n" #~ " nama executable `file'. Ini meliputi aliases, builtings, dan\n" #~ " fungsi, jika dan hanya jika flag -p juga tidak digunakan.\n" #~ " \n" #~ " Flag -f menekan seluruh fungsi shell lookup.\n" #~ " \n" -#~ " Flag -P memaksa sebuah JALUR pencarian untuk setiap NAMA, bahkan jika ini merupakan sebuah alias,\n" +#~ " Flag -P memaksa sebuah JALUR pencarian untuk setiap NAMA, bahkan jika " +#~ "ini merupakan sebuah alias,\n" #~ " builtin, atau fungsi, dan mengembalikan nama ke disk file yang akan\n" #~ " dijalankan." #~ msgid "" #~ "The user file-creation mask is set to MODE. If MODE is omitted, or if\n" -#~ " `-S' is supplied, the current value of the mask is printed. The `-S'\n" -#~ " option makes the output symbolic; otherwise an octal number is output.\n" +#~ " `-S' is supplied, the current value of the mask is printed. The `-" +#~ "S'\n" +#~ " option makes the output symbolic; otherwise an octal number is " +#~ "output.\n" #~ " If `-p' is supplied, and MODE is omitted, the output is in a form\n" #~ " that may be used as input. If MODE begins with a digit, it is\n" -#~ " interpreted as an octal number, otherwise it is a symbolic mode string\n" +#~ " interpreted as an octal number, otherwise it is a symbolic mode " +#~ "string\n" #~ " like that accepted by chmod(1)." #~ msgstr "" -#~ "File-creation mask pengguna diset ke MODE. Jika MODE diabaikan, atau jika\n" +#~ "File-creation mask pengguna diset ke MODE. Jika MODE diabaikan, atau " +#~ "jika\n" #~ " `-S' diberikan, nilai sekaran dari mask ditampilkan. Opsi `-S'\n" -#~ " membuah keluaran symbolic; jika tidak sebuah bilangan octal dikeluarkan.\n" -#~ " Jika opsi `-p' diberikan, dan MODE diabaikan, keluaran adalah dalam format\n" -#~ " yang bisa digunakan sebagai masukan. Jika MODE dimulai dengan sebuah digit, ini\n" -#~ " diinterpretasikan sebagai sebuah bilangan octal, jika tidak ini adalah sebuah symbolic mode string\n" +#~ " membuah keluaran symbolic; jika tidak sebuah bilangan octal " +#~ "dikeluarkan.\n" +#~ " Jika opsi `-p' diberikan, dan MODE diabaikan, keluaran adalah dalam " +#~ "format\n" +#~ " yang bisa digunakan sebagai masukan. Jika MODE dimulai dengan sebuah " +#~ "digit, ini\n" +#~ " diinterpretasikan sebagai sebuah bilangan octal, jika tidak ini " +#~ "adalah sebuah symbolic mode string\n" #~ " yang diterima oleh chmod(1)." #~ msgid "" @@ -5506,9 +6047,12 @@ msgstr "" #~ " and the return code is zero. N is a process ID; if it is not given,\n" #~ " all child processes of the shell are waited for." #~ msgstr "" -#~ "Menunggu sampai proses yang dispesifikasikan dan laporkan status selesainya. Jika\n" -#~ " N tidak diberikan, semua proses anak yang masih aktif ditunggu untuk,\n" -#~ " dan mengembalikan kode kembalian nol. N adalah sebuah proses ID; jika ini tidak diberikan,\n" +#~ "Menunggu sampai proses yang dispesifikasikan dan laporkan status " +#~ "selesainya. Jika\n" +#~ " N tidak diberikan, semua proses anak yang masih aktif ditunggu " +#~ "untuk,\n" +#~ " dan mengembalikan kode kembalian nol. N adalah sebuah proses ID; jika " +#~ "ini tidak diberikan,\n" #~ " semua proses anak dari shell ditunggu." #~ msgid "" @@ -5516,7 +6060,8 @@ msgstr "" #~ " Arguments on the command line along with NAME are passed to the\n" #~ " function as $0 .. $n." #~ msgstr "" -#~ "Buat sebuah perintah sederhana yang memanggil dengan NAMA yang menjalankan PERINTAH.\n" +#~ "Buat sebuah perintah sederhana yang memanggil dengan NAMA yang " +#~ "menjalankan PERINTAH.\n" #~ " Argumen dalam baris perintah dengan NAMA dilewatkan ke\n" #~ " fungsi sebagai $0 .. $n." @@ -5535,19 +6080,29 @@ msgstr "" #~ " mengunset setiap OPTNAME. tanda -q menekan keluaran; status keluaran\n" #~ " mengindikasikan apakah setiap OPTNAME diset atau diunset. Opsi -o\n" #~ " membatasi OPTNAME ke nilai yang didefinisikan untuk digunakan dengan\n" -#~ " `set -o'. Tanpa opsi, atau dengan opsi -p, sebuah daftar dari seluruh\n" -#~ " opsi yang bisa diset ditampilkan, tanpa sebuah indikasi apakah salah satu atau\n" +#~ " `set -o'. Tanpa opsi, atau dengan opsi -p, sebuah daftar dari " +#~ "seluruh\n" +#~ " opsi yang bisa diset ditampilkan, tanpa sebuah indikasi apakah salah " +#~ "satu atau\n" #~ " bukan setiap dari variabel diset." #~ msgid "" #~ "For each NAME, specify how arguments are to be completed.\n" -#~ " If the -p option is supplied, or if no options are supplied, existing\n" -#~ " completion specifications are printed in a way that allows them to be\n" -#~ " reused as input. The -r option removes a completion specification for\n" -#~ " each NAME, or, if no NAMEs are supplied, all completion specifications." +#~ " If the -p option is supplied, or if no options are supplied, " +#~ "existing\n" +#~ " completion specifications are printed in a way that allows them to " +#~ "be\n" +#~ " reused as input. The -r option removes a completion specification " +#~ "for\n" +#~ " each NAME, or, if no NAMEs are supplied, all completion " +#~ "specifications." #~ msgstr "" #~ "Untuk setiap NAMA, spesifikasikan bagaimana argumen akan diselesaikan.\n" -#~ " Jika opsi -p diberikan, atau tidak ada opsi yang diberikan, completion\n" -#~ " spesifikasi yang telah ada ditampilkan dalam sebuah cara yang membolehkan mereka untuk\n" -#~ " digunakan sebagai masukan. Opsi -r menghapus sebuah spesifikasi completion untuk\n" -#~ " setiap NAMA, atau jika tidak ada NAMA yang diberikan, untuk semua spesifikasi completion." +#~ " Jika opsi -p diberikan, atau tidak ada opsi yang diberikan, " +#~ "completion\n" +#~ " spesifikasi yang telah ada ditampilkan dalam sebuah cara yang " +#~ "membolehkan mereka untuk\n" +#~ " digunakan sebagai masukan. Opsi -r menghapus sebuah spesifikasi " +#~ "completion untuk\n" +#~ " setiap NAMA, atau jika tidak ada NAMA yang diberikan, untuk semua " +#~ "spesifikasi completion." diff --git a/po/ja.gmo b/po/ja.gmo index dcfec4c038b4ad9539ebaec8e9f0c16a1e92a64c..6d60ca097e210d28b5af2a30811eb4674eac29fd 100644 GIT binary patch delta 23 ecmexv|J{B=z6h74u91m?p`n$D<>pF}I&J`FwFhVb delta 23 ecmexv|J{B=z6h6vu92yNp`n$b@#adAI&J`Fc?Vwr diff --git a/po/ja.po b/po/ja.po index 5d09f172..860173ae 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2000-03-21 19:30+0900\n" "Last-Translator: Kyoichi Ozaki \n" "Language-Team: Japanese \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: ץ" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -62,32 +62,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: %s Ǥޤ" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: ޥɤĤޤ" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s: ɤ߹ߤΤߤδؿ" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -240,12 +240,12 @@ msgstr "" msgid "write error: %s" msgstr "ѥץ顼: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: ޤʥ쥯" @@ -281,7 +281,7 @@ msgstr "" msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: ɤ߹ߤΤߤδؿ" @@ -320,7 +320,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: %s Ǥޤ" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -336,7 +336,7 @@ msgstr "%s: msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: Хʥե¹ԤǤޤ" @@ -450,7 +450,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s: ؿɽ" @@ -478,12 +478,12 @@ msgstr "̤ msgid "expression expected" msgstr "ɽԤƤޤ" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -619,17 +619,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "ѥץ顼: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -807,37 +807,37 @@ msgstr "%s: Ÿ msgid "\atimed out waiting for input: auto-logout\n" msgstr "%cԤ饿ॢȤޤ: ư\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "ѥץ顼: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: : `/' 򥳥ޥ̾˵ҤǤޤ" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: ޥɤĤޤ" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: ϥǥ쥯ȥǤ" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "fd %d fd 0 ʣǤޤ: %s" @@ -916,7 +916,7 @@ msgstr "%s: msgid "getcwd: cannot access parent directories" msgstr "getwd: ̥ǥ쥯ȥ˥Ǥޤ" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "fd %d fd 0 ʣǤޤ: %s" @@ -931,147 +931,147 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "check_bash_input: fd %d ΤΥХåեϴ¸ߤޤ" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: ץID(%d)¸ߤޤ!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "̤ΤΥʥ #%d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "λ" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "¹" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "λ(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "λ %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "̤ΤΥơ" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "() " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "Ե: pid %d ΥλҥץǤϤޤ" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: ֤Ͻλޤ" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "å %3d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " ()" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp : %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: 饤 discipline: %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp : %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "Υˤϥ椬ޤ" @@ -1329,31 +1329,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: ޤʥ쥯" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: ¸ߤե񤭤Ǥޤ" -#: redir.c:155 +#: redir.c:156 #, fuzzy, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: : `/' 򥳥ޥ̾˵ҤǤޤ" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "ץ˥ѥפǤޤ: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "쥯󥨥顼" @@ -1422,7 +1422,7 @@ msgstr " msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1597,82 +1597,82 @@ msgstr "̤ msgid "Unknown Signal #%d" msgstr "̤ΤΥʥ #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr ": `%s' %s ˤϤޤ" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: ꥹȤС˳Ƥޤ" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "ץ˥ѥפǤޤ: %s" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "ץ˻ҤǤޤ: %s" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "named pipe %s %s سޤ: %s" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "named pipe %s %s سޤ: %s" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "named pipe %s fd %d Τʣ뤳ȤϤǤޤ: %s" -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "ޥɤ˥ѥפǤޤ: %s" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "ޥɤ˻ҤǤޤ: %s" -#: subst.c:4808 +#: subst.c:4811 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: ѥפ fd 1 ȤʣǤޤ: %s" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: ѥ᡼̥ϥåȤƤޤ" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: " -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: Τ褦˻Ǥޤ" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr ": `%s' %s ˤϤޤ" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1709,23 +1709,23 @@ msgstr "" msgid "missing `]'" msgstr "`]'ȴƤޤ" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "ʥֹ" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, fuzzy, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: ʥ %d" @@ -1740,33 +1740,33 @@ msgstr "" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2916,8 +2916,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2926,7 +2927,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2938,7 +2939,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3020,7 +3021,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3040,7 +3041,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3059,7 +3060,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3079,7 +3080,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3090,7 +3091,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3104,7 +3105,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3118,7 +3119,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3195,7 +3196,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3203,7 +3204,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3215,7 +3216,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3251,7 +3252,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3281,7 +3282,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3325,7 +3326,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3343,7 +3344,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3360,7 +3361,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3374,7 +3375,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3387,7 +3388,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3404,7 +3405,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3424,7 +3425,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3440,7 +3441,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3451,7 +3452,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3472,7 +3473,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3483,7 +3484,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3494,7 +3495,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3508,7 +3509,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3519,7 +3520,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3533,7 +3534,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3544,7 +3545,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3572,7 +3573,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3626,7 +3627,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3657,7 +3658,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3684,7 +3685,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3713,7 +3714,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3734,7 +3735,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3764,7 +3765,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3786,7 +3787,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3799,7 +3800,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3828,7 +3829,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/lt.gmo b/po/lt.gmo index a9ee99a1d7a3ad36bae3316b127922769e8a49fc..7e9b981f3111b941217d8c8c93c04113c9667476 100644 GIT binary patch delta 25 hcmeypoALK<#tr*Txh!>!OcV?atxPO8pENbn004>w2^|0c delta 25 hcmeypoALK<#tr*Txh!;zOce|btqhGfpENbn004=}2^0VT diff --git a/po/lt.po b/po/lt.po index fbc0a024..2b27b7cd 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-07-28 03:07-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -18,26 +18,26 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" "100<10 || n%100>=20) ? 1 : 2);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "blogas masyvo indeksas" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: netaisyklingas veiksmo pavadinimas" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nepavyko priskirti prie neskaitinio indekso" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -66,32 +66,32 @@ msgstr "nėra uždarančiojo „%c“ %s" msgid "%s: missing colon separator" msgstr "%s: trūksta dvitaškio skirtuko" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "„%s“: netaisyklingas keymap'o pavadinimas" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: nepavyko perskaityti: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "„%s“: nepavyko atjungti (unbind)" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "„%s“: nežinomas funkcijos pavadinimas" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s nėra priskirtas jokiam klavišui.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s gali būti iškviestas su " @@ -240,12 +240,12 @@ msgstr "%s: ne vidinė aplinkos komanda" msgid "write error: %s" msgstr "rašymo klaida: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: klaida skaitant esamą aplanką: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: dviprasmis darbo aprašymas" @@ -281,7 +281,7 @@ msgstr "galima naudoti tik funkcijoje" msgid "cannot use `-f' to make functions" msgstr "negalima naudoti „-f“ funkcijoms kurti" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funkcija tik skaitymui" @@ -320,7 +320,7 @@ msgstr "%s: nedinamiškai įkrauta" msgid "%s: cannot delete: %s" msgstr "%s: nepavyko ištrinti: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -336,7 +336,7 @@ msgstr "%s: ne paprastas failas" msgid "%s: file is too large" msgstr "%s: failas per didelis" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: negalima vykdyti dvejetainių failų" @@ -461,7 +461,7 @@ msgstr "negalima naudoti daugiau negu vieno parametro iš -anrw" msgid "history position" msgstr "istorijos pozicija" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: istorijos išskleidimas nesėkmingas" @@ -488,12 +488,12 @@ msgstr "Nežinoma klaida" msgid "expression expected" msgstr "tikėtasi išraiškos" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: netaisyklinga failo deskriptoriaus specifikacija" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: netaisyklingas failo deskriptorius: %s" @@ -628,17 +628,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: klaidinga laiko ribos (timeout) specifikacija" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "skaitymo klaida: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "galima grįžti (return) tik iš funkcijos ar scenarijaus" @@ -809,37 +809,37 @@ msgstr "%s: nepriskirtas kintamasis" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\alaukiant įvedimo baigėsi laikas: automatiškai atsijungta\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "nepavyko peradresuoti standartinio įvedimo iš /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: netaisyklingas formato simbolis" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "rašymo klaida: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: apribota: negalima naudoti „/“ komandų pavadinimuose" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: komanda nerasta" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: blogas interpretatorius" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nepavyko dublikuoti fd %d į fd %d" @@ -915,7 +915,7 @@ msgstr "%s: tikėtasi skaitinės išraiškos" msgid "getcwd: cannot access parent directories" msgstr "getcwd: nepavyko pasiekti aukštesnių aplankų" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nepavyko dublikuoti fd %d į fd %d" @@ -930,144 +930,144 @@ msgstr "nepavyko išskirti naujo failo deskriptoriaus bash įvedimui iš fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: naujam fd %d buferis jau egzistuoja" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "trinamas sustabdytas darbas %d procesų grupėje %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: tokio pid nėra" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld nėra šios aplinkos dukterinis procesas" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: nėra proceso %ld įrašo" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: darbas %d yra sustabdytas" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: darbas užsibaigė" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: darbas %d jau fone" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: įspėjimas: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "šioje aplinkoje nėra darbų valdymo" @@ -1321,31 +1321,31 @@ msgstr "cprintf: „%c“: netaisyklingas formato simbolis" msgid "file descriptor out of range" msgstr "failo deskriptorius už ribų" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: ambiguous redirect" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: negalima perrašyti egzistuojančio failo" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: apribota: negalima peradresuoti išvedimo" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "nepavyko sukurti laikino failo „here“ dokumentui: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/komp/prievadas nepalaikoma be tinklo" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "nukreipimo klaida: nepavyko dublikuoti fd" @@ -1415,7 +1415,7 @@ msgstr "Bandykite „ldd --help“, jei norite daugiau informacijos." msgid "Use the `bashbug' command to report bugs.\n" msgstr "Naudokite komandą „bashbug“ klaidoms pranešti.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: netaisyklinga operacija" @@ -1591,77 +1591,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "blogas keitinys: trūksta „%s“ %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: negalima priskirti sąrašo masyvo elementui" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametras tuščias arba nenustatytas" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: posekio išraiška < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: blogas keitinys" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: negalima tokiu būdu priskirti" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "blogas keitinys: trūksta „%s“ %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "nėra atitikmenų: %s" @@ -1698,22 +1698,22 @@ msgstr "%s: tikėtasi binarinio operatoriaus" msgid "missing `]'" msgstr "trūksta „]“" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "netaisyklingas signalo numeris" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: bloga trap_list[%d] reikšmė: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "run_pending_traps: signalo doroklė yra SIG_DFL, siunčiamas %d (%s) sau" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: blogas signalas %d" @@ -1728,33 +1728,33 @@ msgstr "klaida importuojant funkcijos apibrėžimą „%s“" msgid "shell level (%d) too high, resetting to 1" msgstr "aplinkos lygmuo (%d) per aukštas, nustatoma į 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "netaisyklingas simbolis %d %s exportstr'e" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s exportstr'e trūksta „=“" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: nėra global_variables konteksto" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2906,8 +2906,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2916,7 +2917,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2928,7 +2929,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3010,7 +3011,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3030,7 +3031,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3049,7 +3050,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3069,7 +3070,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3080,7 +3081,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3099,7 +3100,7 @@ msgstr "" " Jei nurodyta ARGUMENTŲ, jie tampa poziciniais parametrais iškvietus\n" " FAILĄ." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3113,7 +3114,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3190,7 +3191,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3198,7 +3199,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3210,7 +3211,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3246,7 +3247,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3276,7 +3277,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3320,7 +3321,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3338,7 +3339,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3355,7 +3356,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3369,7 +3370,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3382,7 +3383,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3399,7 +3400,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3419,7 +3420,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3435,7 +3436,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3446,7 +3447,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3467,7 +3468,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -3481,7 +3482,7 @@ msgstr "" "Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n" " „while“ komandų grąžina klaidos kodą 0." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -3495,7 +3496,7 @@ msgstr "" "Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n" " „until“ komandų grąžina klaidos kodą, nelygų 0." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3509,7 +3510,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -3523,7 +3524,7 @@ msgstr "" "Vykdyti eilę komandų grupėje. Tai yra vienas iš būdų nukreipti\n" " visos eilės komandų įvedimą/išvedimą." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3537,7 +3538,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3548,7 +3549,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3576,7 +3577,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3630,7 +3631,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3661,7 +3662,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3688,7 +3689,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3717,7 +3718,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3738,7 +3739,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -3780,7 +3781,7 @@ msgstr "" " Jei pateiktas parametras -v, išvedimas įrašomas į aplinkos kintamąjį\n" " KINT, užuot spausdinus į standartinį išvedimą." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3802,7 +3803,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -3820,7 +3821,7 @@ msgstr "" " Jei pateiktas nebūtinasis ŽODŽIO argumentas, išvedami įrašai,\n" " atitinkantys ŽODĮ." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3849,7 +3850,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/nl.gmo b/po/nl.gmo index edbd2e0a67d0eebff50bad1ee74d1220e0fc250b..6bc5de3e4244c064931c8719fabfa1925a5d1a95 100644 GIT binary patch literal 156402 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 b7f*gJyz&17jV2xd delta 7018 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 B6r}(F diff --git a/po/nl.po b/po/nl.po index 866c23c5..7655f664 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,45 +1,62 @@ -# Translation of bash-3.2 to Dutch. -# Copyright (C) 1996, 2004, 2006 Free Software Foundation, Inc. +# Dutch translations for bash-4.0-pre1. +# Copyright (C) 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the bash package. +# +# De vertaling van de ruim 70 laatste hulpteksten (65%) in dit bestand +# volgt niet helemaal het normale stramien van "onbepaalde wijs voor +# elke functieomschrijvende tekst". De hoofddocstring gebruikt wel +# de onbepaalde wijs, maar het begin de gedetailleerdere omschrijving +# stapt over op de derde persoon, om daarna een passieve vorm te +# gebruiken voor de rest van de preciseringen en uitzonderingen. +# Deze opzet is nog niet helemaal consequent doorgevoerd; voor de +# volgende vertaler is er dus nog ruimschoots werk. -- Benno, 2008 +# +# Opmerking over vocabulair: +# 'Stopped' wordt consequent vertaald met "Gepauzeerd", omdat "Gestopt" +# te veel zou doen denken aan "Beëindigd", terwijl het alleen maar gaat +# om stilstaan en niet om finale opgave. Een alternatieve vertaling +# zou "Stilstand" kunnen zijn. +# # Erick Branderhorst , 1996. # Julie Vermeersch , 2004. -# Benno Schulenberg , 2006. -# +# Benno Schulenberg , 2006, 2008. msgid "" msgstr "" -"Project-Id-Version: bash 3.2\n" +"Project-Id-Version: bash-4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" -"PO-Revision-Date: 2006-12-12 22:04+0100\n" -"Last-Translator: Benno Schulenberg \n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" +"PO-Revision-Date: 2008-09-21 19:58+0200\n" +"Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "ongeldige array-index" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" -msgstr "" +msgstr "%s: kan geïndexeerd array niet omzetten naar associatief array" -#: arrayfunc.c:478 -#, fuzzy, c-format +#: arrayfunc.c:479 +#, c-format msgid "%s: invalid associative array key" -msgstr "%s: ongeldige actienaam" +msgstr "%s: ongeldige sleutel voor associatief array" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: niet-numerieke index is niet mogelijk" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" -msgstr "" +msgstr "%s: %s: een index is nodig bij toekenning aan associatief array" #: bashhist.c:382 #, c-format @@ -66,39 +83,39 @@ msgstr "geen sluit-'%c' in %s" msgid "%s: missing colon separator" msgstr "%s: ontbrekend scheidingsteken (dubbele punt)" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "'%s': ongeldige naam voor toetsenkaart" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "Kan %s niet lezen: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "Kan %s niet losmaken" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "'%s': onbekende functienaam" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s is aan geen enkele toets gebonden\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s kan worden aangeroepen via " #: builtins/break.def:77 builtins/break.def:117 msgid "loop count" -msgstr "" +msgstr "herhalingsaantal" #: builtins/break.def:137 msgid "only meaningful in a `for', `while', or `until' loop" @@ -123,12 +140,12 @@ msgstr "OLDPWD is niet gedefinieerd" #: builtins/common.c:107 #, c-format msgid "line %d: " -msgstr "" +msgstr "regel %d: " #: builtins/common.c:124 -#, fuzzy, c-format +#, c-format msgid "%s: usage: " -msgstr "%s: waarschuwing: " +msgstr "%s: Gebruik: " #: builtins/common.c:137 test.c:822 msgid "too many arguments" @@ -165,14 +182,12 @@ msgid "`%s': not a valid identifier" msgstr "'%s': is geen geldige naam" #: builtins/common.c:209 -#, fuzzy msgid "invalid octal number" -msgstr "ongeldig signaalnummer" +msgstr "ongeldig octaal getal" #: builtins/common.c:211 -#, fuzzy msgid "invalid hex number" -msgstr "ongeldig getal" +msgstr "ongeldig hexadecimaal getal" #: builtins/common.c:213 expr.c:1255 msgid "invalid number" @@ -240,12 +255,12 @@ msgstr "%s: is geen ingebouwde opdracht van de shell" msgid "write error: %s" msgstr "schrijffout: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: fout tijdens bepalen van huidige map: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: taakaanduiding is niet eenduidig" @@ -271,7 +286,7 @@ msgstr "waarschuwing: optie -C functioneert mogelijk niet zoals verwacht" #: builtins/complete.def:786 msgid "not currently executing completion function" -msgstr "" +msgstr "er wordt momenteel geen completeringsfunctie uitgevoerd" #: builtins/declare.def:122 msgid "can only be used in a function" @@ -281,7 +296,7 @@ msgstr "kan alleen worden gebruikt binnen een functie" msgid "cannot use `-f' to make functions" msgstr "'-f' kan niet gebruikt worden om een functie te definiëren" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: is een alleen-lezen functie" @@ -294,7 +309,7 @@ msgstr "%s: kan array-variabelen niet op deze manier verwijderen" #: builtins/declare.def:461 #, c-format msgid "%s: cannot convert associative to indexed array" -msgstr "" +msgstr "%s: kan associatief array niet omzetten naar geïndexeerd array" #: builtins/enable.def:137 builtins/enable.def:145 msgid "dynamic loading not available" @@ -320,7 +335,7 @@ msgstr "%s: is niet dynamisch geladen" msgid "%s: cannot delete: %s" msgstr "Kan %s niet verwijderen: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -336,7 +351,7 @@ msgstr "%s: is geen normaal bestand" msgid "%s: file is too large" msgstr "%s: bestand is te groot" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kan een binair bestand niet uitvoeren" @@ -349,7 +364,7 @@ msgstr "Kan %s niet uitvoeren: %s" #: builtins/exit.def:65 #, c-format msgid "logout\n" -msgstr "" +msgstr "uitgelogd\n" #: builtins/exit.def:88 msgid "not login shell: use `exit'" @@ -361,9 +376,9 @@ msgid "There are stopped jobs.\n" msgstr "Er zijn nog gepauzeerde taken.\n" #: builtins/exit.def:122 -#, fuzzy, c-format +#, c-format msgid "There are running jobs.\n" -msgstr "Er zijn nog gepauzeerde taken.\n" +msgstr "Er zijn nog draaiende taken.\n" #: builtins/fc.def:261 msgid "no command found" @@ -380,7 +395,7 @@ msgstr "Kan tijdelijk bestand '%s' niet openen: %s" #: builtins/fg_bg.def:149 builtins/jobs.def:282 msgid "current" -msgstr "" +msgstr "huidige" #: builtins/fg_bg.def:158 #, c-format @@ -407,12 +422,12 @@ msgid "%s: hash table empty\n" msgstr "%s: de hash-tabel is leeg\n" #: builtins/hash.def:244 -#, fuzzy, c-format +#, c-format msgid "hits\tcommand\n" -msgstr "laatste opdracht: %s\n" +msgstr "treffers commando\n" #: builtins/help.def:130 -#, fuzzy, c-format +#, c-format msgid "Shell commands matching keyword `" msgid_plural "Shell commands matching keywords `" msgstr[0] "Shell-opdrachten die overeenkomen met '" @@ -461,15 +476,15 @@ msgstr "slechts één van '-a', '-n', '-r' of '-w' is mogelijk" msgid "history position" msgstr "geschiedenispositie" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: geschiedenisexpansie is mislukt" #: builtins/inlib.def:71 -#, fuzzy, c-format +#, c-format msgid "%s: inlib failed" -msgstr "%s: geschiedenisexpansie is mislukt" +msgstr "%s: 'inlib' is mislukt" #: builtins/jobs.def:109 msgid "no other options allowed with `-x'" @@ -488,39 +503,40 @@ msgstr "Onbekende fout" msgid "expression expected" msgstr "uitdrukking werd verwacht" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: ongeldige aanduiding van bestandsdescriptor" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: ongeldige bestandsdescriptor: %s" #: builtins/mapfile.def:232 builtins/mapfile.def:270 -#, fuzzy, c-format +#, c-format msgid "%s: invalid line count" -msgstr "%s: ongeldige optie" +msgstr "%s: ongeldig regelaantal" #: builtins/mapfile.def:243 -#, fuzzy, c-format +#, c-format msgid "%s: invalid array origin" -msgstr "%s: ongeldige optie" +msgstr "%s: ongeldig array-begin" +# Quantum is een hoeveelheid regels, een getal. +# Callback is de aan te roepen functie, maar onnodig in de vertaling. #: builtins/mapfile.def:260 -#, fuzzy, c-format +#, c-format msgid "%s: invalid callback quantum" -msgstr "%s: ongeldige actienaam" +msgstr "%s: ongeldige hoeveelheid" #: builtins/mapfile.def:292 -#, fuzzy msgid "empty array variable name" -msgstr "%s: is geen array-variabele" +msgstr "lege naam van array-variabele" #: builtins/mapfile.def:313 msgid "array variable support required" -msgstr "" +msgstr "ondersteuning van arrayvariabelen is vereist" #: builtins/printf.def:364 #, c-format @@ -533,9 +549,9 @@ msgid "`%c': invalid format character" msgstr "'%c': ongeldig opmaakteken" #: builtins/printf.def:568 -#, fuzzy, c-format +#, c-format msgid "warning: %s: %s" -msgstr "%s: waarschuwing: " +msgstr "waarschuwing: %s: %s" #: builtins/printf.def:747 msgid "missing hex digit for \\x" @@ -551,15 +567,13 @@ msgstr "" #: builtins/pushd.def:506 msgid "directory stack empty" -msgstr "" +msgstr "mappenstapel is leeg" #: builtins/pushd.def:508 -#, fuzzy msgid "directory stack index" -msgstr "recursiestapel-onderloop" +msgstr "mappenstapelindex" #: builtins/pushd.def:683 -#, fuzzy msgid "" "Display the list of currently remembered directories. Directories\n" " find their way onto the list with the `pushd' command; you can get\n" @@ -585,21 +599,21 @@ msgstr "" "Toont de huidige lijst van onthouden mappen. Mappen worden aan deze\n" " lijst toegevoegd met de opdracht 'pushd', en verwijderd met 'popd'.\n" "\n" -" Met de optie -l worden paden niet afgekort (relatief ten opzichte\n" -" van uw thuismap) maar volledig weergegeven. Dit betekent dat\n" -" '~/bin' zal worden weergegeven als bijvoorbeeld '/home/jansen/bin'.\n" -" Optie -v geeft de mappenstapel weer met één item per regel, waarbij\n" -" elk item voorafgegeaan wordt door zijn positie in de stapel. Optie\n" -" -p doet hetzelfde als -v, maar dan zonder de stapelpositie.\n" -" Optie -c wist de mappenstapel door alle elementen te verwijderen.\n" +" Opties:\n" +" -c de mappenstapel wissen door alle elementen te verwijderen\n" +" -l paden niet afkorten (relatief ten opzichte van uw thuismap)\n" +" maar volledig weergegeven\n" +" -p de mappenstapel tonen met één item per regel\n" +" -v als '-p' maar met elk item voorafgegaan wordt door diens positie\n" +" in de stapel\n" "\n" -" +N Het N-de item tonen, tellend vanaf links, van de lijst getoond\n" -" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.\n" -" -N Het N-de item tonen, tellend vanaf rechts, van de lijst getoond\n" -" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul." +" Argumenten:\n" +" +N Toont het N-de item, tellend vanaf links, van de lijst getoond\n" +" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.\n" +" -N Toont het N-de item, tellend vanaf rechts, van de lijst getoond\n" +" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul." #: builtins/pushd.def:705 -#, fuzzy msgid "" "Adds a directory to the top of the directory stack, or rotates\n" " the stack, making the new top of the stack the current working\n" @@ -627,19 +641,21 @@ msgstr "" " en maakt de huidige werkmap gelijk aan de nieuwe top van de stapel.\n" " Zonder argumenten worden de bovenste twee mappen verwisseld.\n" "\n" -" -n Onderdrukt de verandering van map bij het toevoegen van mappen\n" -" aan de stapel, zodat enkel de stapel wordt gemanipuleerd.\n" -" MAP Voegt deze map toe aan de top van de mappenstapel, het de nieuwe\n" -" werkmap makend.\n" -" +N Roteert de stapel zodat de N-de map (tellend vanaf links, van\n" -" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" -" -N Roteert de stapel zodat de N-de map (tellend vanaf rechts, van\n" -" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +" Optie:\n" +" -n de verandering van map onderdukken bij het toevoegen van mappen\n" +" aan de stapel, zodat alleen de stapel wordt gemanipuleerd\n" "\n" -" De opdracht 'dirs' geeft de huidige mappenstapel weer." +" Argumenten:\n" +" +N Roteert de stapel zodat de N-de map (tellend vanaf links, van\n" +" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +" -N Roteert de stapel zodat de N-de map (tellend vanaf rechts, van\n" +" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +" MAP Voegt deze map toe aan de top van de mappenstapel, het de nieuwe\n" +" werkmap makend.\n" +"\n" +" De opdracht 'dirs' toont de huidige mappenstapel." #: builtins/pushd.def:730 -#, fuzzy msgid "" "Removes entries from the directory stack. With no arguments, removes\n" " the top directory from the stack, and changes to the new top directory.\n" @@ -663,28 +679,31 @@ msgstr "" " het de bovenste map van de stapel, en maakt de huidige werkmap\n" " gelijk aan de nieuwe bovenste map.\n" "\n" -" -n Onderdrukt de verandering van map bij het toevoegen van mappen\n" -" aan de stapel, zodat enkel de stapel wordt gemanipuleerd.\n" -" +N Verwijdert het N-de item tellend vanaf links (van de lijst\n" -" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" -" 'popd +0' verwijdert de eerste map, 'popd +' de tweede.\n" -" -N Verwijdert het N-de item tellend vanaf rechts (van de lijst\n" -" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" -" 'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.\n" +" Optie:\n" +" -n de verandering van map onderdukken bij het toevoegen van mappen\n" +" aan de stapel, zodat alleen de stapel wordt gemanipuleerd\n" "\n" -" De opdracht 'dirs' geeft de huidige mappenstapel weer." +" Argumenten:\n" +" +N Verwijdert het N-de item tellend vanaf links (van de lijst\n" +" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" +" 'popd +0' verwijdert de eerste map, 'popd +' de tweede.\n" +" -N Verwijdert het N-de item tellend vanaf rechts (van de lijst\n" +" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" +" 'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.\n" +"\n" +" De opdracht 'dirs' toont de huidige mappenstapel." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: ongeldige aanduiding van tijdslimiet" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "leesfout: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "kan alleen een 'return' doen uit een functie of een uit script aangeroepen " @@ -791,7 +810,7 @@ msgstr "%s: kan de limiet niet bepalen: %s" #: builtins/ulimit.def:453 msgid "limit" -msgstr "" +msgstr "limiet" #: builtins/ulimit.def:465 builtins/ulimit.def:765 #, c-format @@ -814,7 +833,7 @@ msgstr "'%c': ongeldig teken in symbolische modus" #: error.c:89 error.c:320 error.c:322 error.c:324 msgid " line " -msgstr "" +msgstr " regel " #: error.c:164 #, c-format @@ -827,9 +846,9 @@ msgid "Aborting..." msgstr "Afbreken..." #: error.c:260 -#, fuzzy, c-format +#, c-format msgid "warning: " -msgstr "%s: waarschuwing: " +msgstr "waarschuwing: " #: error.c:405 msgid "unknown command error" @@ -857,37 +876,36 @@ msgstr "%s: ongebonden variabele" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\awachten op invoer duurde te lang -- automatisch afgemeld\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "kan standaardinvoer niet omleiden vanaf /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: '%c': ongeldig opmaakteken" -#: execute_cmd.c:1930 -#, fuzzy +#: execute_cmd.c:1933 msgid "pipe error" -msgstr "schrijffout: %s" +msgstr "pijpfout" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: beperkte modus: '/' in opdrachtnamen is niet toegestaan" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: opdracht niet gevonden" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: ongeldige interpreter" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "kan bestandsdescriptor %d niet dupliceren naar bestandsdescriptor %d" @@ -943,7 +961,7 @@ msgstr "syntaxfout: ongeldige rekenkundige operator" #: expr.c:1201 #, c-format msgid "%s%s%s: %s (error token is \"%s\")" -msgstr "" +msgstr "%s%s%s: %s (het onjuiste symbool is \"%s\")" #: expr.c:1259 msgid "invalid arithmetic base" @@ -954,16 +972,16 @@ msgid "value too great for base" msgstr "waarde is te groot voor basis" #: expr.c:1328 -#, fuzzy, c-format +#, c-format msgid "%s: expression error\n" -msgstr "%s: een geheel-getaluitdrukking werd verwacht" +msgstr "%s: expressiefout\n" #: general.c:61 msgid "getcwd: cannot access parent directories" msgstr "getwd(): kan geen geen toegang verkrijgen tot bovenliggende mappen" -#: input.c:94 subst.c:4551 -#, fuzzy, c-format +#: input.c:94 subst.c:4554 +#, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "kan 'nodelay'-modus niet uitschakelen voor bestandsdescriptor %d" @@ -980,146 +998,146 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" "check_bash_input(): buffer bestaat al voor nieuwe bestandsdescriptor %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" -msgstr "" +msgstr "start_pipeline(): procesgroep van pijp" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "afgesplitst PID %d hoort bij draaiende taak %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "verwijderen van gepauzeerde taak %d met procesgroep %ld..." -#: jobs.c:1102 -#, c-format -msgid "add_process: process %5ld (%s) in the_pipeline" -msgstr "" - #: jobs.c:1105 #, c-format -msgid "add_process: pid %5ld (%s) marked as still alive" -msgstr "" +msgid "add_process: process %5ld (%s) in the_pipeline" +msgstr "add_process(): proces %5ld (%s) in de pijplijn" -#: jobs.c:1393 +#: jobs.c:1108 +#, c-format +msgid "add_process: pid %5ld (%s) marked as still alive" +msgstr "add_process(): PID %5ld (%s) staat gemarkeerd als nog actief" + +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid(): PID %ld bestaat niet" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" -msgstr "" +msgstr "Signaal %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" -msgstr "" +msgstr "Klaar" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" -msgstr "" +msgstr "Gepauzeerd" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" -msgstr "" +msgstr "Gepauzeerd(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" -msgstr "" +msgstr "Wordt uitgevoerd" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" -msgstr "" - -#: jobs.c:1451 -#, c-format -msgid "Exit %d" -msgstr "" +msgstr "Klaar(%d)" #: jobs.c:1454 -msgid "Unknown status" -msgstr "" +#, c-format +msgid "Exit %d" +msgstr "Exit %d" -#: jobs.c:1541 +#: jobs.c:1457 +msgid "Unknown status" +msgstr "Onbekende afsluitwaarde" + +#: jobs.c:1544 #, c-format msgid "(core dumped) " -msgstr "" +msgstr "(geheugendump gemaakt) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" -msgstr "" +msgstr " (werkmap: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" -msgstr "" +msgstr "instellen van procesgroep %2$ld van dochter %1$ld" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait(): PID %ld is geen dochterproces van deze shell" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for(): proces %ld is nergens geregistreerd" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job(): taak %d is gepauzeerd" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: taak is afgesloten" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: taak %d draait al op de achtergrond" -#: jobs.c:3482 -#, fuzzy, c-format +#: jobs.c:3487 +#, c-format msgid "%s: line %d: " -msgstr "%s: waarschuwing: " +msgstr "%s: regel %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" -msgstr "" +msgstr " (geheugendump gemaakt)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" -msgstr "" +msgstr "(werkmap is nu: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" -msgstr "" +msgstr "initialize_job_control: getpgrp() is mislukt" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" -msgstr "" +msgstr "initialize_job_control: lijnprotocol" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" -msgstr "" - -#: jobs.c:3651 -#, c-format -msgid "cannot set terminal process group (%d)" -msgstr "" +msgstr "initialize_job_control: setpgid()" #: jobs.c:3656 +#, c-format +msgid "cannot set terminal process group (%d)" +msgstr "kan procesgroep (%d) van terminal niet instellen" + +#: jobs.c:3661 msgid "no job control in this shell" -msgstr "geen taakbesturing in deze shell" +msgstr "er is geen taakbesturing in deze shell" #: lib/malloc/malloc.c:296 #, c-format @@ -1136,9 +1154,8 @@ msgstr "" "malloc(): %s:%d: controletest is mislukt\r\n" #: lib/malloc/malloc.c:313 -#, fuzzy msgid "unknown" -msgstr "%s: onbekende host" +msgstr "onbekend" #: lib/malloc/malloc.c:797 msgid "malloc: block on free list clobbered" @@ -1245,6 +1262,8 @@ msgstr "make_here_document(): ongeldig instructietype %d" #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" msgstr "" +"regel %d van \"hier\"-document eindigt met einde van bestand (verwachtte '%" +"s')" #: make_cmd.c:746 #, c-format @@ -1372,31 +1391,31 @@ msgstr "cprintf(): '%c': ongeldig opmaakteken" msgid "file descriptor out of range" msgstr "bestandsdescriptor valt buiten bereik" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: omleiding is niet eenduidig" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: kan bestaand bestand niet overschrijven" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: beperkte modus: omleiden van uitvoer is niet toegestaan" -#: redir.c:160 -#, fuzzy, c-format +#: redir.c:161 +#, c-format msgid "cannot create temp file for here-document: %s" msgstr "kan geen tijdelijk bestand maken voor \"hier\"-document: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port is niet mogelijk zonder netwerk" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "omleidingsfout: kan bestandsdescriptor niet dupliceren" @@ -1420,7 +1439,7 @@ msgstr "Ik heb geen naam!" #: shell.c:1777 #, c-format msgid "GNU bash, version %s-(%s)\n" -msgstr "" +msgstr "GNU bash, versie %s-(%s)\n" #: shell.c:1778 #, c-format @@ -1464,261 +1483,261 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Gebruik de opdracht 'bashbug' om fouten in bash te rapporteren.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask(): %d: ongeldige operatie" #: siglist.c:47 msgid "Bogus signal" -msgstr "" +msgstr "Niet-bestaand signaal" +# Vroeger ging dit over het afsluiten van een modemverbinding, +# tegenwoordig over het afsluiten van een pseudoterminal. #: siglist.c:50 msgid "Hangup" -msgstr "" +msgstr "Opgehangen" #: siglist.c:54 msgid "Interrupt" -msgstr "" +msgstr "Onderbroken" #: siglist.c:58 msgid "Quit" -msgstr "" +msgstr "Afsluiten" #: siglist.c:62 msgid "Illegal instruction" -msgstr "" +msgstr "Ongeldige instructie" #: siglist.c:66 msgid "BPT trace/trap" -msgstr "" +msgstr "Traceer/breekpunt-instructie" #: siglist.c:74 msgid "ABORT instruction" -msgstr "" +msgstr "ABORT-instructie" #: siglist.c:78 msgid "EMT instruction" -msgstr "" +msgstr "EMT-instructie" #: siglist.c:82 msgid "Floating point exception" -msgstr "" +msgstr "Drijvende-komma-berekeningsfout" #: siglist.c:86 msgid "Killed" -msgstr "" +msgstr "Geëlimineerd" #: siglist.c:90 -#, fuzzy msgid "Bus error" -msgstr "syntaxfout" +msgstr "Busfout" #: siglist.c:94 msgid "Segmentation fault" -msgstr "" +msgstr "Segmentatiefout" #: siglist.c:98 msgid "Bad system call" -msgstr "" +msgstr "Onjuiste systeemaanroep" #: siglist.c:102 msgid "Broken pipe" -msgstr "" +msgstr "Gebroken pijp" #: siglist.c:106 msgid "Alarm clock" -msgstr "" +msgstr "Alarmklok" #: siglist.c:110 -#, fuzzy msgid "Terminated" -msgstr "beperkte modus" +msgstr "Afgesloten" #: siglist.c:114 msgid "Urgent IO condition" -msgstr "" +msgstr "Spoedeisende I/O-toestand" #: siglist.c:118 msgid "Stopped (signal)" -msgstr "" +msgstr "Gepauzeerd (signaal)" #: siglist.c:126 msgid "Continue" -msgstr "" +msgstr "Doorgaan" #: siglist.c:134 msgid "Child death or stop" -msgstr "" +msgstr "Dochter is geëlimineerd of gestopt" #: siglist.c:138 msgid "Stopped (tty input)" -msgstr "" +msgstr "Gepauzeerd (tty-invoer)" #: siglist.c:142 msgid "Stopped (tty output)" -msgstr "" +msgstr "Gepauzeerd (tty-uitvoer)" #: siglist.c:146 msgid "I/O ready" -msgstr "" +msgstr "I/O is mogelijk" #: siglist.c:150 msgid "CPU limit" -msgstr "" +msgstr "CPU-limiet" #: siglist.c:154 msgid "File limit" -msgstr "" +msgstr "Bestandslimiet" #: siglist.c:158 msgid "Alarm (virtual)" -msgstr "" +msgstr "Alarm (virtueel)" #: siglist.c:162 msgid "Alarm (profile)" -msgstr "" +msgstr "Alarm (profiel)" #: siglist.c:166 msgid "Window changed" -msgstr "" +msgstr "Venster is veranderd" #: siglist.c:170 msgid "Record lock" -msgstr "" +msgstr "Recordvergrendeling" #: siglist.c:174 msgid "User signal 1" -msgstr "" +msgstr "Gebruikerssignaal 1" #: siglist.c:178 msgid "User signal 2" -msgstr "" +msgstr "Gebruikerssignaal 2" #: siglist.c:182 msgid "HFT input data pending" -msgstr "" +msgstr "HFT-invoergegevens staan te wachten" #: siglist.c:186 msgid "power failure imminent" -msgstr "" +msgstr "stroomstoring dreigt" #: siglist.c:190 msgid "system crash imminent" -msgstr "" +msgstr "systeemcrash dreigt" #: siglist.c:194 msgid "migrate process to another CPU" -msgstr "" +msgstr "proces naar andere processor verplaatsen" #: siglist.c:198 msgid "programming error" -msgstr "" +msgstr "programmeerfout" #: siglist.c:202 msgid "HFT monitor mode granted" -msgstr "" +msgstr "HFT-monitormodus is gegeven" #: siglist.c:206 msgid "HFT monitor mode retracted" -msgstr "" +msgstr "HFT-monitormodus is herroepen" #: siglist.c:210 msgid "HFT sound sequence has completed" -msgstr "" +msgstr "HFT-geluidssequentie is afgespeeld" #: siglist.c:214 msgid "Information request" -msgstr "" +msgstr "Verzoek om informatie" #: siglist.c:222 msgid "Unknown Signal #" -msgstr "" +msgstr "Onbekend signaalnummer" #: siglist.c:224 #, c-format msgid "Unknown Signal #%d" -msgstr "" +msgstr "Onbekend signaal #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "ongeldige vervanging: geen sluit-'%s' in %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: kan geen lijst toewijzen aan een array-element" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "kan geen pijp maken voor procesvervanging" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "kan geen dochterproces maken voor procesvervanging" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "kan pijp genaamd %s niet openen om te lezen" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "kan pijp genaamd %s niet openen om te schrijven" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "kan pijp genaamd %s niet dupliceren als bestandsdescriptor %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "kan geen pijp maken voor opdrachtvervanging" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "kan geen dochterproces maken voor opdrachtvervanging" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute(): kan pijp niet dupliceren als bestandsdescriptor 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: lege parameter, of niet ingesteld" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: resultaat van deeltekenreeks is kleiner dan nul" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: ongeldige vervanging" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: kan niet op deze manier toewijzen" -#: subst.c:7441 -#, fuzzy, c-format +#: subst.c:7454 +#, c-format msgid "bad substitution: no closing \"`\" in %s" -msgstr "ongeldige vervanging: geen sluit-'%s' in %s" +msgstr "ongeldige vervanging: geen afsluitende '`' in %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "geen overeenkomst: %s" #: test.c:145 msgid "argument expected" -msgstr "argument verwacht" +msgstr "argument werd verwacht" #: test.c:154 #, c-format @@ -1737,27 +1756,27 @@ msgstr "')' werd verwacht; %s gevonden" #: test.c:279 test.c:688 test.c:691 #, c-format msgid "%s: unary operator expected" -msgstr "%s: eenzijdige operator verwacht" +msgstr "eenzijdige operator werd verwacht, %s gevonden" #: test.c:444 test.c:731 #, c-format msgid "%s: binary operator expected" -msgstr "%s: tweezijdige operator verwacht" +msgstr "tweezijdige operator werd verwacht, %s gevonden" #: test.c:806 msgid "missing `]'" msgstr "ontbrekende ']'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "ongeldig signaalnummer" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps(): ongeldige waarde in trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" @@ -1765,7 +1784,7 @@ msgstr "" "run_pending_traps: signaalverwerker is SIG_DFL, herzenden van %d (%s) aan " "mezelf..." -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler(): ongeldig signaal %d" @@ -1780,64 +1799,66 @@ msgstr "fout tijdens importeren van functiedefinitie voor '%s'" msgid "shell level (%d) too high, resetting to 1" msgstr "shell-niveau is te hoog (%d); teruggezet op 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" "make_local_variable(): er is geen functiecontext in huidige geldigheidsbereik" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" "all_local_variables(): er is geen functiecontext in huidige geldigheidsbereik" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "ongeldig teken '%d' in export-tekenreeks voor %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "geen '=' in export-tekenreeks voor %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context(): top van 'shell_variables' is geen functiecontext" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context(): er is geen 'global_variables'-context" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope(): top van 'shell_variables' is geen tijdelijk geldigheidsbereik" #: version.c:46 -#, fuzzy msgid "Copyright (C) 2008 Free Software Foundation, Inc." -msgstr "Copyright (C) 2006 Free Software Foundation, Inc.\n" +msgstr "Copyright (C) 2008 Free Software Foundation, Inc." #: version.c:47 msgid "" "License GPLv3+: GNU GPL version 3 or later \n" msgstr "" +"De licentie is GPLv3+: GNU GPL versie 3 of later.\n" +"Zie http://gnu.org/licenses/gpl.html voor de volledige tekst.\n" #: version.c:86 #, c-format msgid "GNU bash, version %s (%s)\n" -msgstr "" +msgstr "GNU bash, versie %s (%s)\n" #: version.c:91 #, c-format msgid "This is free software; you are free to change and redistribute it.\n" msgstr "" +"Dit is vrije software; u mag het vrijelijk wijzigen en verder verspreiden.\n" #: version.c:92 #, c-format msgid "There is NO WARRANTY, to the extent permitted by law.\n" -msgstr "" +msgstr "Er is GEEN GARANTIE, voor zover de wet dit toestaat.\n" #: xmalloc.c:92 #, c-format @@ -1885,306 +1906,317 @@ msgstr "xrealloc(): %s:%d: kan %lu bytes niet opnieuw reserveren" #: builtins.c:43 msgid "alias [-p] [name[=value] ... ]" -msgstr "" +msgstr "alias [-p] [NAAM[=WAARDE] ... ]" #: builtins.c:47 msgid "unalias [-a] name [name ...]" -msgstr "" +msgstr "unalias [-a] NAAM [NAAM...]" #: builtins.c:51 msgid "" "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" "x keyseq:shell-command] [keyseq:readline-function or readline-command]" msgstr "" +"bind [-lpvsPVS] [-m TOETSENKAART] [-f BESTANDSNAAM] [-q NAAM] [-u NAAM]\n" +" [-r TOETSENREEKS] [-x TOETSENREEKS:SHELL-OPDRACHT]\n" +" [TOETSENREEKS:READLINE-FUNCTIE | TOETSENREEKS:READLINE-OPDRACHT]" #: builtins.c:54 msgid "break [n]" -msgstr "" +msgstr "break [N]" #: builtins.c:56 msgid "continue [n]" -msgstr "" +msgstr "continue [N]" #: builtins.c:58 msgid "builtin [shell-builtin [arg ...]]" -msgstr "" +msgstr "builtin [INGEBOUWDE_SHELLFUNCTIE [ARGUMENT...]]" #: builtins.c:61 msgid "caller [expr]" -msgstr "" +msgstr "caller [EXPRESSIE]" #: builtins.c:64 msgid "cd [-L|-P] [dir]" -msgstr "" +msgstr "cd [-L|-P] [MAP]" #: builtins.c:66 msgid "pwd [-LP]" -msgstr "" +msgstr "pwd [-LP]" #: builtins.c:68 msgid ":" -msgstr "" +msgstr ":" #: builtins.c:70 msgid "true" -msgstr "" +msgstr "waar" #: builtins.c:72 msgid "false" -msgstr "" +msgstr "onwaar" #: builtins.c:74 msgid "command [-pVv] command [arg ...]" -msgstr "" +msgstr "command [-pVv] OPDRACHT [ARGUMENT...]" #: builtins.c:76 msgid "declare [-aAfFilrtux] [-p] [name[=value] ...]" -msgstr "" +msgstr "declare [-aAfFilrtux] [-p] [NAAM[=WAARDE]...]" #: builtins.c:78 msgid "typeset [-aAfFilrtux] [-p] name[=value] ..." -msgstr "" +msgstr "typeset [-aAfFilrtux] [-p] NAAM[=WAARDE]..." #: builtins.c:80 msgid "local [option] name[=value] ..." -msgstr "" +msgstr "local [OPTIE] NAAM[=WAARDE]..." #: builtins.c:83 msgid "echo [-neE] [arg ...]" -msgstr "" +msgstr "echo [-neE] [ARGUMENT...]" #: builtins.c:87 msgid "echo [-n] [arg ...]" -msgstr "" +msgstr "echo [-n] [ARGUMENT...]" #: builtins.c:90 msgid "enable [-a] [-dnps] [-f filename] [name ...]" -msgstr "" +msgstr "enable [-a] [-dnps] [-f BESTANDSNAAM] [NAAM...]" #: builtins.c:92 msgid "eval [arg ...]" -msgstr "" +msgstr "eval [ARGUMENT...]" #: builtins.c:94 msgid "getopts optstring name [arg]" -msgstr "" +msgstr "getopts OPTIETEKENREEKS NAAM [ARGUMENT]" #: builtins.c:96 msgid "exec [-cl] [-a name] [command [arguments ...]] [redirection ...]" -msgstr "" +msgstr "exec [-cl] [-a NAAM] [OPDRACHT [ARGUMENT...]] [OMLEIDING...]" #: builtins.c:98 msgid "exit [n]" -msgstr "" +msgstr "exit [N]" #: builtins.c:100 msgid "logout [n]" -msgstr "" +msgstr "logout [N]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" msgstr "" +"fc [-e EDITORNAAM] [-lnr] [EERSTE] [LAATSTE]\n" +"of: fc -s [PATROON=VERVANGING] [OPDRACHT]" #: builtins.c:107 msgid "fg [job_spec]" -msgstr "" +msgstr "fg [TAAKAANDUIDING]" #: builtins.c:111 msgid "bg [job_spec ...]" -msgstr "" +msgstr "bg [TAAKAANDUIDING...]" #: builtins.c:114 msgid "hash [-lr] [-p pathname] [-dt] [name ...]" -msgstr "" +msgstr "hash [-lr] [-p PADNAAM] [-dt] [NAAM...]" #: builtins.c:117 msgid "help [-ds] [pattern ...]" -msgstr "" +msgstr "help [-ds] [PATROON...]" #: builtins.c:121 msgid "" "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " "[arg...]" msgstr "" +"history [-c] [-d POSITIE] [N]\n" +" of: history -anrw [BESTANDSNAAM]\n" +" of: history -ps ARGUMENT..." #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" msgstr "" +"jobs [-lnprs] [TAAKAANDUIDING...] of jobs -x OPDRACHT [ARGUMENT...]" #: builtins.c:129 msgid "disown [-h] [-ar] [jobspec ...]" -msgstr "" +msgstr "disown [-h] [-ar] [TAAKAANDUIDING...]" #: builtins.c:132 msgid "" "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " "[sigspec]" msgstr "" +"kill [-s SIGNAALNAAM | -n SIGNAALNUMMER | -SIGNAAL] PID | TAAKAANDUIDING\n" +" of: kill -l [SIGNAAL]" #: builtins.c:134 msgid "let arg [arg ...]" -msgstr "" +msgstr "let ARGUMENT..." #: builtins.c:136 msgid "" "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " "timeout] [-u fd] [name ...]" msgstr "" +"read [-ers] [-a ARRAY] [-d SCHEIDINGSTEKEN] [-i TEKST] [-n AANTAL_TEKENS]\n" +" [-p PROMPT] [-t TIJDSLIMIET] [-u BESTANDSDESCRIPTOR] [NAAM...]" #: builtins.c:138 msgid "return [n]" -msgstr "" +msgstr "return [N]" #: builtins.c:140 msgid "set [--abefhkmnptuvxBCHP] [-o option-name] [arg ...]" -msgstr "" +msgstr "set [--abefhkmnptuvxBCHP] [-o OPTIENAAM] [ARGUMENT...]" #: builtins.c:142 msgid "unset [-f] [-v] [name ...]" -msgstr "" +msgstr "unset [-f] [-v] [NAAM...]" #: builtins.c:144 msgid "export [-fn] [name[=value] ...] or export -p" -msgstr "" +msgstr "export [-fn] [NAAM[=WAARDE] ...] of export -p" #: builtins.c:146 msgid "readonly [-af] [name[=value] ...] or readonly -p" -msgstr "" +msgstr "readonly [-af] [NAAM[=WAARDE] ...] of readonly -p" #: builtins.c:148 -#, fuzzy msgid "shift [n]" -msgstr "shift-aantal" +msgstr "shift [N]" #: builtins.c:150 -#, fuzzy msgid "source filename [arguments]" -msgstr "vereist een bestandsnaam als argument" +msgstr "source BESTANDSNAAM [ARGUMENTEN]" #: builtins.c:152 -#, fuzzy msgid ". filename [arguments]" -msgstr "vereist een bestandsnaam als argument" +msgstr ". BESTANDSNAAM [ARGUMENTEN]" #: builtins.c:155 msgid "suspend [-f]" -msgstr "" +msgstr "suspend [-f]" #: builtins.c:158 msgid "test [expr]" -msgstr "" +msgstr "test [EXPRESSIE]" #: builtins.c:160 msgid "[ arg... ]" -msgstr "" +msgstr "[ ARGUMENT... ]" #: builtins.c:162 msgid "times" -msgstr "" +msgstr "times" #: builtins.c:164 msgid "trap [-lp] [[arg] signal_spec ...]" -msgstr "" +msgstr "trap [-lp] [[ARGUMENT] SIGNAALAANDUIDING...]" #: builtins.c:166 msgid "type [-afptP] name [name ...]" -msgstr "" +msgstr "type [-afptP] NAAM..." #: builtins.c:169 msgid "ulimit [-SHacdefilmnpqrstuvx] [limit]" -msgstr "" +msgstr "ulimit [-SHacdefilmnpqrstuvx] [GRENSWAARDE]" #: builtins.c:172 msgid "umask [-p] [-S] [mode]" -msgstr "" +msgstr "umask [-p] [-S] [MODUS]" #: builtins.c:175 msgid "wait [id]" -msgstr "" +msgstr "wait [ID]" #: builtins.c:179 msgid "wait [pid]" -msgstr "" +msgstr "wait [PID]" #: builtins.c:182 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" -msgstr "" +msgstr "for NAAM [in WOORDEN...] ; do OPDRACHTEN; done" #: builtins.c:184 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" -msgstr "" +msgstr "for (( EXPR1; EXPR2; EXPR3 )); do OPDRACHTEN; done" #: builtins.c:186 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" -msgstr "" +msgstr "select NAAM [in WOORDEN... ;] do OPDRACHTEN; done" #: builtins.c:188 msgid "time [-p] pipeline" -msgstr "" +msgstr "time [-p] PIJPLIJN" #: builtins.c:190 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" -msgstr "" +msgstr "case WOORD in [PATROON [| PATROON]...) OPDRACHTEN ;;]... esac" #: builtins.c:192 msgid "" "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " "COMMANDS; ] fi" msgstr "" +"if OPDRACHTEN; then OPDRACHTEN;\n" +" [ elif OPDRACHTEN; then OPDRACHTEN; ]...\n" +" [ else OPDRACHTEN; ] fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" -msgstr "" +msgstr "while OPDRACHTEN; do OPDRACHTEN; done" #: builtins.c:196 msgid "until COMMANDS; do COMMANDS; done" -msgstr "" +msgstr "until OPDRACHTEN; do OPDRACHTEN; done" #: builtins.c:198 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" -msgstr "" +msgstr "function NAAM { OPDRACHTEN ; } of NAAM () { OPDRACHTEN ; }" #: builtins.c:200 msgid "{ COMMANDS ; }" -msgstr "" +msgstr "{ OPDRACHTEN ; }" #: builtins.c:202 msgid "job_spec [&]" -msgstr "" +msgstr "TAAKAANDUIDING [&]" #: builtins.c:204 -#, fuzzy msgid "(( expression ))" -msgstr "uitdrukking werd verwacht" +msgstr "(( EXPRESSIE ))" #: builtins.c:206 -#, fuzzy msgid "[[ expression ]]" -msgstr "uitdrukking werd verwacht" +msgstr "[[ EXPRESSIE ]]" #: builtins.c:208 msgid "variables - Names and meanings of some shell variables" -msgstr "" +msgstr "variables - enkele shell-variabelen" #: builtins.c:211 msgid "pushd [-n] [+N | -N | dir]" -msgstr "" +msgstr "pushd [-n] [+N | -N | MAP]" #: builtins.c:215 msgid "popd [-n] [+N | -N]" -msgstr "" +msgstr "popd [-n] [+N | -N]" #: builtins.c:219 msgid "dirs [-clpv] [+N] [-N]" -msgstr "" +msgstr "dirs [-clpv] [+N] [-N]" #: builtins.c:222 msgid "shopt [-pqsu] [-o] [optname ...]" -msgstr "" +msgstr "shopt [-pqsu] [-o] [OPTIENAAM...]" #: builtins.c:224 msgid "printf [-v var] format [arguments]" -msgstr "" +msgstr "printf [-v VARIABELE] OPMAAK [ARGUMENTEN]" #: builtins.c:227 msgid "" @@ -2192,25 +2224,32 @@ msgid "" "wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " "[name ...]" msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o OPTIE] [-A ACTIE] [-G PATROON]\n" +" [-W WOORDENLIJST] [-F FUNCTIE] [-C OPDRACHT]\n" +" [-X FILTERPATROON] [-P PREFIX] [-S SUFFIX] [NAAM...]" #: builtins.c:231 msgid "" "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " "[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" msgstr "" +"compgen [-abcdefgjksuv] [-pr] [-o OPTIE] [-A ACTIE] [-G PATROON]\n" +" [-W WOORDENLIJST] [-F FUNCTIE] [-C OPDRACHT]\n" +" [-X FILTERPATROON] [-P PREFIX] [-S SUFFIX] [WOORD]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" -msgstr "" +msgstr "compopt [-o|+o OPTIE] [NAAM...]" #: builtins.c:238 msgid "" "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " "quantum] [array]" msgstr "" +"mapfile [-n AANTAL] [-O BEGIN] [-s AANTAL] [-t] [-u BESTANDSDESCRIPTOR]\n" +" [-C FUNCTIE] [-c HOEVEELHEID] [ARRAY]" #: builtins.c:250 -#, fuzzy msgid "" "Define or display aliases.\n" " \n" @@ -2229,16 +2268,20 @@ msgid "" "been\n" " defined." msgstr "" -"Geeft met optie '-p', of zonder argumenten, op standaarduitvoer de\n" -" huidige lijst van aliassen weer in de vorm: alias NAAM='VERVANGING'.\n" -" Anders wordt er een alias gedefinieerd voor elke NAAM waarvoor er een\n" -" VERVANGING gegeven is. Als de VERVANGING eindigt op een spatie, dan\n" -" wordt bij aliasexpansie ook van het nakomende woord gecontroleerd of\n" -" het een alias is. De afsluitwaarde van 'alias' is 0, tenzij er een\n" -" NAAM gegeven is zonder een VERVANGING." +"Aliassen definiëren of tonen.\n" +"\n" +" Zonder argumenten, of met optie '-p', toont 'alias' op standaarduitvoer\n" +" de huidige lijst van aliassen in de vorm: alias NAAM='VERVANGING'.\n" +" Met argumenten, wordt er een alias gedefinieerd voor elke NAAM waarvoor\n" +" een VERVANGING gegeven is. Als de VERVANGING eindigt op een spatie, " +"dan\n" +" wordt bij aliasexpansie ook van het nakomende woord gecontroleerd of " +"het\n" +" een alias is.\n" +"\n" +" De afsluitwaarde is 0, tenzij er een NAAM zonder VERVANGING gegeven is." #: builtins.c:272 -#, fuzzy msgid "" "Remove each NAME from the list of defined aliases.\n" " \n" @@ -2247,11 +2290,13 @@ msgid "" " \n" " Return success unless a NAME is not an existing alias." msgstr "" -"Verwijdert de gegeven namen uit de lijst van gedefinieerde aliassen.\n" -" Met optie -a worden alle aliassen verwijderd." +"Elke gegeven NAAM verwijderen uit de lijst van gedefinieerde aliassen.\n" +"\n" +" Optie '-a' verwijdert alle aliassen.\n" +"\n" +" De afsluitwaarde is 0, tenzij NAAM geen bestaande alias is." #: builtins.c:285 -#, fuzzy msgid "" "Set Readline key bindings and variables.\n" " \n" @@ -2289,36 +2334,45 @@ msgid "" " Exit Status:\n" " bind returns 0 unless an unrecognized option is given or an error occurs." msgstr "" -"Verbindt een toetsenreeks aan een readline-functie of aan een makro,\n" -" of stelt een readline-variabele in. De syntax van argumenten die geen\n" +"Toetsbindingen en variabelen van 'readline' instellen.\n" +"\n" +" Een toetsenreeks verbinden aan een 'readline'-functie of aan een macro,\n" +" of een 'readline'-variabele instellen. De syntax van argumenten die " +"geen\n" " opties zijn is gelijkaardig aan die voor ~/.inputrc, maar zij dienen " "één\n" " geheel te zijn, bijvoorbeeld: bind '\"\\C-x\\C-r\": re-read-init-file'.\n" "\n" -"Opties:\n" -" -f bestandsnaam de toetsenbindingen uit dit bestand lezen\n" -" -l alle bekende functienamen opsommen\n" -" -m toetsenkaart deze toetsenkaart gebruiken voor de duur van deze\n" -" opdracht; mogelijke toetsenkaarten zijn 'emacs',\n" -" 'emacs-standard', 'emacs-meta', 'emacs-ctlx',\n" -" 'vi', 'vi-move', 'vi-insert' en 'vi-command'\n" -" -P functienamen en hun bindingen tonen\n" -" -p functienamen en hun bindingen tonen, in een vorm die\n" -" kan worden hergebruikt als invoer\n" -" -r toetsenreeks de binding voor deze toetsenreeks verwijderen\n" -" -q functienaam tonen welke toetsen deze functie aanroepen\n" -" -S toetsenreeksen tonen die makro's aanroepen\n" -" -s toetsenreeksen tonen die makro's aanroepen, in een\n" -" vorm die kan worden hergebruikt als invoer\n" -" -u functienaam verwijdert alle toetsenbindingen aan deze functie\n" -" -V variabelenamen en hun waarden tonen\n" -" -v variabelenamen en hun waarden tonen, in een vorm die\n" -" kan worden hergebruikt als invoer\n" -" -x toetsenreeks:shell-opdracht deze shell-opdracht uitvoeren als deze\n" -" toetsenreeks ingevoerd wordt" +" Opties:\n" +" -f BESTANDSNAAM de toetsbindingen uit dit bestand lezen\n" +" -l alle bekende functienamen opsommen\n" +" -m TOETSENKAART deze toetsenkaart gebruiken voor de duur van deze\n" +" opdracht; mogelijke toetsenkaarten zijn 'emacs',\n" +" 'emacs-standard', 'emacs-meta', 'emacs-ctlx',\n" +" 'vi', 'vi-move', 'vi-insert' en 'vi-command'\n" +" -P functienamen en hun bindingen tonen\n" +" -p functienamen en hun bindingen tonen, in een vorm " +"die\n" +" kan worden hergebruikt als invoer\n" +" -r TOETSENREEKS de binding voor deze toetsenreeks verwijderen\n" +" -q FUNCTIENAAM tonen welke toetsen deze functie aanroepen\n" +" -S toetsenreeksen tonen die macro's aanroepen\n" +" -s toetsenreeksen tonen die macro's aanroepen, in een\n" +" vorm die kan worden hergebruikt als invoer\n" +" -u FUNCTIENAAM verwijdert alle toetsbindingen aan deze functie\n" +" -V variabelenamen en hun waarden tonen\n" +" -v variabelenamen en hun waarden tonen, in een vorm " +"die\n" +" kan worden hergebruikt als invoer\n" +" -x TOETSENREEKS:SHELL_OPDRACHT deze shell-opdracht uitvoeren als " +"deze\n" +" toetsenreeks ingevoerd wordt \n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een " +"fout\n" +" optrad." #: builtins.c:322 -#, fuzzy msgid "" "Exit for, while, or until loops.\n" " \n" @@ -2328,11 +2382,11 @@ msgid "" " Exit Status:\n" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" -"Begint de volgende herhaling van huidige 'for'-, 'while'- of 'until'-lus.\n" -" Als N gegeven is, dan wordt N niveaus hoger doorgegaan." +"Een 'for'-, 'while'- of 'until'-lus beëindigen.\n" +" Als N gegeven is, dan worden N niveaus van lussen beëindigd.\n" +" De afsluitwaarde is 0, tenzij N kleiner dan 1 is." #: builtins.c:334 -#, fuzzy msgid "" "Resume for, while, or until loops.\n" " \n" @@ -2342,8 +2396,9 @@ msgid "" " Exit Status:\n" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" -"Begint de volgende herhaling van huidige 'for'-, 'while'- of 'until'-lus.\n" -" Als N gegeven is, dan wordt N niveaus hoger doorgegaan." +"De volgende herhaling van huidige 'for'-, 'while'- of 'until'-lus beginnen.\n" +" Als N gegeven is, dan wordt N niveaus hoger doorgegaan. De " +"afsluitwaarde is 0, tenzij N kleiner dan 1 is." #: builtins.c:346 msgid "" @@ -2358,9 +2413,18 @@ msgid "" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" " not a shell builtin.." msgstr "" +"Een ingebouwde shell-functie uitvoeren.\n" +"\n" +" Voert de gegeven ingebouwde shell-functie met de gegeven argumenten " +"uit.\n" +" Dit is handig als u de naam van een ingebouwde functie voor een eigen\n" +" functie wilt gebruiken, maar toch de functionaliteit van de ingebouwde\n" +" functie nodig hebt.\n" +"\n" +" De afsluitwaarde is die van de uitgevoerde shell-functie, of 1\n" +" of 1 als INGEBOUWDE_SHELLFUNCTIE geen ingebouwde shell-functie is." #: builtins.c:361 -#, fuzzy msgid "" "Return the context of the current subroutine call.\n" " \n" @@ -2375,16 +2439,18 @@ msgid "" " Returns 0 unless the shell is not executing a shell function or EXPR\n" " is invalid." msgstr "" -"Geeft de context van de huidige functie-aanroep.\n" +"De context van de aanroep van de huidige functie tonen.\n" "\n" " Zonder argument produceert het \"$regelnummer $bestandsnaam\"; met\n" " argument \"$regelnummer $functienaam $bestandsnaam\". Deze tweede\n" " vorm kan gebruikt worden om een 'stack trace' te produceren. De\n" " waarde van het argument geeft aan hoeveel frames er teruggegaan\n" -" moet worden; het huidige frame heeft nummer 0." +" moet worden; het huidige frame heeft nummer 0.\n" +"\n" +" De afsluitwaarde is 0, tenzij de shell momenteel geen functie uitvoert\n" +" of EXPRESSIE ongeldig is." #: builtins.c:379 -#, fuzzy msgid "" "Change the shell working directory.\n" " \n" @@ -2416,20 +2482,27 @@ msgid "" " Exit Status:\n" " Returns 0 if the directory is changed; non-zero otherwise." msgstr "" -"Verandert de huidige map naar DIR. Als er geen DIR gegeven is,\n" -" wordt de waarde van de variabele HOME gebruikt.\n" +"De huidige map wijzigen.\n" "\n" -" De variabele CDPATH definieert de mappen waarin naar DIR gezocht wordt.\n" +" Wijzigt de huidige map naar de gegeven MAP. Als geen MAP gegeven is,\n" +" dan wordt de waarde van de variabele HOME gebruikt.\n" +"\n" +" De variabele CDPATH definieert de mappen waarin naar MAP gezocht wordt.\n" " De mapnamen in CDPATH worden gescheiden door dubbele punten (:); een\n" -" lege mapnaam is hetzelfde als de huidige map (.). Als DIR begint met\n" +" lege mapnaam is hetzelfde als de huidige map (.). Als MAP begint met\n" " een slash (/), dan wordt CDPATH niet gebruikt.\n" "\n" " Als de gegeven map niet wordt gevonden, en shell-optie 'cdable_vars'\n" " is ingeschakeld, dan wordt het gegeven woord als een variabelenaam\n" " begrepen, en als die variabele een naam bevat, dan gaat 'cd' naar de\n" -" map met die naam. Met optie -P volgt 'cd' de fysieke mappenstructuur:\n" -" symbolische koppelingen worden eerst \"vertaald\". Met optie -L volgt\n" -" 'cd' symbolische koppelingen onvertaald (standaard)." +" map met die naam.\n" +"\n" +" Opties:\n" +" -L symbolische koppelingen volgen (standaard)\n" +" -P de fysieke mappenstructuur gebruiken;\n" +" symbolische koppelingen worden eerst \"vertaald\"\n" +"\n" +" De afsluitwaarde is 0 als de gewenste map ingesteld kon worden, anders 1." #: builtins.c:407 msgid "" @@ -2446,9 +2519,19 @@ msgid "" " Returns 0 unless an invalid option is given or the current directory\n" " cannot be read." msgstr "" +"De naam van de huidige werkmap tonen.\n" +"\n" +" Opties:\n" +" -P het werkelijke, fysieke pad tonen, zonder symbolische " +"koppelingen\n" +" -L het pad tonen zoals dat gevolgd is, inclusief eventuele " +"symbolische\n" +" koppelingen (standaard)\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd\n" +" of de huidige map niet bepaald kon worden." #: builtins.c:424 -#, fuzzy msgid "" "Null command.\n" " \n" @@ -2464,10 +2547,9 @@ msgid "" " \n" " Exit Status:\n" " Always succeeds." -msgstr "" +msgstr "Geeft afsluitwaarde 0, horend bij \"gelukt\"." #: builtins.c:444 -#, fuzzy msgid "" "Return an unsuccessful result.\n" " \n" @@ -2493,9 +2575,23 @@ msgid "" " Exit Status:\n" " Returns exit status of COMMAND, or failure if COMMAND is not found." msgstr "" +"Een opdracht uitvoeren of informatie over een opdracht tonen.\n" +"\n" +" Voert de gegeven opdracht uit met de gegeven argumenten, waarbij een\n" +" eventueel gelijknamige shell-functie genegeerd wordt. Dit kan gebruikt\n" +" worden om een programma op schijf uit te voeren wanneer er een functie\n" +" met dezelfde naam bestaat.\n" +"\n" +" Opties:\n" +" -p een standaardwaarde voor PATH gebruiken, zodat alle\n" +" standaardprogramma's gegarandeerd gevonden worden\n" +" -v tonen welke opdracht er uitgevoerd zou worden\n" +" -V als '-v' maar gedetailleerder\n" +"\n" +" De afsluitwaarde is die van de uitgevoerde OPDRACHT,\n" +" of 1 als de OPDRACHT niet gevonden is." #: builtins.c:472 -#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" @@ -2530,7 +2626,9 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Declareert de gegeven variabelen en/of kent hen attributen toe.\n" +"Waarden en attributen van variabelen instellen.\n" +"\n" +" Declareert de gegeven variabelen en/of kent hen attributen toe.\n" " Als er geen namen van variabelen gegeven zijn, dan worden de\n" " bestaande variabelen en hun waarden getoond.\n" "\n" @@ -2540,18 +2638,28 @@ msgstr "" " -p van elke gegeven variabele de attributen en waarde tonen\n" "\n" " Attributen:\n" -" -a arrays maken van de gegeven variabelen (indien mogelijk)\n" +" -a van gegeven variabelen arrays maken (indien mogelijk)\n" +" -A van gegeven variabelen associatieve arrays maken (indien " +"mogelijk)\n" " -i aan gegeven variabelen het 'geheel getal'-attribuut toekennen\n" +" -l gegeven variabelen bij toekenning omzetten naar kleine letters\n" " -r de gegeven variabelen alleen-lezen maken\n" " -t aan gegeven variabelen het 'trace'-attribuut toekennen\n" +" -u gegeven variabelen bij toekenning omzetten naar hoofdletters\n" " -x de gegeven variabelen exporteren\n" "\n" " Een '+' in plaats van een '-' voor de letter schakelt het betreffende\n" -" attribuut uit. Als 'declare' wordt gebruikt in een functie, dan maakt\n" -" het elke gegeven naam lokaal, net zoals de opdracht 'local'.\n" +" attribuut uit.\n" "\n" " Bij variabelen met het 'geheel getal'-attribuut wordt bij toewijzingen\n" -" een rekenkundige evaluatie gedaan (zie 'let')." +" een rekenkundige evaluatie gedaan (zie 'let').\n" +"\n" +" Als 'declare' wordt gebruikt in een functie, dan maakt het elke gegeven\n" +" naam lokaal, net zoals de opdracht 'local'.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." #: builtins.c:508 msgid "" @@ -2559,6 +2667,8 @@ msgid "" " \n" " Obsolete. See `help declare'." msgstr "" +"Waarden en attributen van variabelen instellen.\n" +" Verouderd. Zie 'help declare'." #: builtins.c:516 msgid "" @@ -2574,9 +2684,18 @@ msgid "" " Returns success unless an invalid option is supplied, an error occurs,\n" " or the shell is not executing a function." msgstr "" +"Lokale variabelen definiëren.\n" +"\n" +" Maakt een lokale variabele NAAM aan, en kent deze de waarde WAARDE toe.\n" +" OPTIE kan elke optie zijn die ook door 'declare' geaccepteerd wordt.\n" +"\n" +" 'local' kan alleen binnen een functie gebruikt worden, en zorgt ervoor\n" +" dat het geldigheidsbereik van de variabele NAAM beperkt wordt tot de\n" +" betreffende functie en diens dochters.\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd, er een\n" +" fout optrad, of de shell geen functie aan het uitvoeren is." #: builtins.c:533 -#, fuzzy msgid "" "Write arguments to the standard output.\n" " \n" @@ -2606,23 +2725,27 @@ msgid "" " Exit Status:\n" " Returns success unless a write error occurs." msgstr "" -"Schrijft de gegeven argumenten naar standaarduitvoer. Optie -n\n" -" onderdrukt de afsluitende nieuwe regel. Optie -e zorgt ervoor\n" -" dat de volgende backslash-stuurcodes geïnterpreteerd worden:\n" +"De gegeven argumenten naar standaarduitvoer schrijven.\n" "\n" -" \\a attentie (belletje)\n" -" \\b backspace\n" -" \\c onderdrukken van afsluitende nieuwe regel\n" -" \\E escapecode\n" -" \\f nieuwe pagina\n" -" \\n nieuwe regel\n" -" \\r naar begin van huidige regel\n" -" \\t horizontale tab\n" -" \\v verticale tab\n" -" \\\\ backslash\n" -" \\num het teken dat deze octale ASCII-code heeft\n" +" Opties:\n" +" -n de afsluitende nieuwe regel onderdrukken\n" +" -e onderstaande backslash-stuurcodes interpreteren\n" +" -E onderstaande backslash-stuurcodes niet interpreteren\n" "\n" -" Optie -E schakelt interpretatie van deze stuurcodes uit." +" 'echo' kent de volgende stuurcodes: \\a geluidssignaal\n" +" \\b backspace\n" +" \\c geen verdere uitvoer produceren\n" +" \\E escapecode\n" +" \\f nieuwe pagina (FF-teken)\n" +" \\n nieuwe regel (LF-teken)\n" +" \\r naar begin van huidige regel (CR-teken)\n" +" \\t horizontale tab\n" +" \\v verticale tab\n" +" \\\\ een backslash (\\)\n" +" \\0NNN het teken met ASCII-code NNN (octaal, 1 tot 3 cijfers)\n" +" \\xHH het teken met code HH (hexadecimaal, 1 of 2 cijfers)\n" +"\n" +" De afsluitwaarde is 0, tenzij een schrijffout optreedt." #: builtins.c:567 msgid "" @@ -2636,6 +2759,12 @@ msgid "" " Exit Status:\n" " Returns success unless a write error occurs." msgstr "" +"De gegeven argumenten naar standaarduitvoer schrijven.\n" +"\n" +" Schrijft de gegeven argumenten naar standaarduitvoer, gevolgd door.\n" +" een nieuwe regel. Optie -n onderdrukt de afsluitende nieuwe regel.\n" +"\n" +" De afsluitwaarde is 0, tenzij een schrijffout optreedt." #: builtins.c:582 msgid "" @@ -2663,6 +2792,35 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is not a shell builtin or an error occurs." msgstr "" +"Ingebouwde shell-opdrachten in- of uitschakelen.\n" +"\n" +" Schakelt ingebouwde opdrachten in of uit. Dit laatste maakt het " +"mogelijk\n" +" om een bestand op schijf uit te voeren dat dezelfde naam heeft als een\n" +" ingebouwde opdracht, zonder het volledige pad op te moeten geven.\n" +"\n" +" Opties:\n" +" -a de ingebouwde opdrachten tonen en of ze in- of uitgeschakeld " +"zijn\n" +" -n genoemde opdrachten uitschakelen of uitgeschakelde opdrachten " +"tonen\n" +" -p uitvoer produceren die hergebruikt kan worden als invoer " +"(standaard)\n" +" -s alleen de speciale POSIX ingebouwde opdrachten tonen\n" +"\n" +" Opties die het dynamisch laden besturen:\n" +" -f ingebouwde opdracht NAAM laden uit gedeeld object BESTANDSNAAM\n" +" -d opdracht die geladen is met '-f' verwijderen.\n" +"\n" +" Zonder opties wordt elke gegeven NAAM ingeschakeld. Zonder namen " +"worden\n" +" de ingeschakelde opdrachten getoond (of met '-n' de uitgeschakelde).\n" +"\n" +" Voorbeeld: om in plaats van de ingebouwde 'test' het bestand 'test' te\n" +" gebruiken dat zich in uw zoekpad PATH bevindt, typt u 'enable -n test'.\n" +"\n" +" De afsluitwaarde is 0, tenzij NAAM geen ingebouwde shell-opdracht is of\n" +"  een fout optreedt." #: builtins.c:610 msgid "" @@ -2675,9 +2833,17 @@ msgid "" " Exit Status:\n" " Returns exit status of command or success if command is null." msgstr "" +"Argumenten uitvoeren als een shell-opdracht.\n" +"\n" +" Combineert de gegeven argumenten tot een enkele tekenreeks, gebruikt " +"deze\n" +" als invoer voor de shell, en voert de resulterende opdrachten uit.\n" +"\n" +" De afsluitwaarde is die van de uitgevoerde opdracht, of 0 als de " +"opdracht\n" +" leeg is." #: builtins.c:622 -#, fuzzy msgid "" "Parse option arguments.\n" " \n" @@ -2717,17 +2883,20 @@ msgid "" " Returns success if an option is found; fails if the end of options is\n" " encountered or an error occurs." msgstr "" -"Ontleedt een reeks opties -- in de meegegeven argumenten, of anders\n" -" in de positionele parameters van het huidige script.\n" +"Opties ontleden.\n" "\n" -" De optietekenreeks bevat de te herkennen optieletters; als een letter\n" +" 'getopts' kan door shell-scripts gebruikt worden om positionele " +"parameters\n" +" als opties te ontleden.\n" +"\n" +" De OPTIETEKENREEKS bevat de te herkennen optieletters; als een letter\n" " gevolgd wordt door een dubbele punt, dan hoort de optie een argument\n" -" te hebben, ervan gescheiden door een spatie.\n" +" te hebben, ervan gescheiden door witruimte.\n" "\n" " Elke keer dat 'getopts' wordt aangeroepen, plaatst het de volgende\n" " gevonden optie in de gegeven shell-variabele NAAM, en het nummer van\n" " het daarna te behandelen argument in de variabele OPTIND. Deze OPTIND\n" -" wordt geïnitialiseerd op 1 elke keer als de shell of een shellscript\n" +" wordt geïnitialiseerd op 1 elke keer als de shell of een shell-script\n" " wordt aangeroepen. Als een optie een argument heeft, dan wordt dat\n" " argument in de shell-variabele OPTARG geplaatst.\n" "\n" @@ -2772,16 +2941,35 @@ msgid "" " Returns success unless COMMAND is not found or a redirection error " "occurs." msgstr "" +"De shell vervangen door de gegeven opdracht.\n" +"\n" +" Voert de gegeven OPDRACHT uit, daarbij deze shell vervangend door dat\n" +" programma. Eventuele ARGUMENTen worden de argumenten van OPDRACHT.\n" +" Als er geen OPDRACHT gegeven is, dan worden eventuele omleidingen van\n" +" kracht voor deze shell zelf.\n" +"\n" +" Opties:\n" +" -a NAAM deze naam als nulde argument aan OPDRACHT meegeven\n" +" -c de opdracht uitvoeren met een lege omgeving\n" +" -l een koppelteken als nulde argument aan OPDRACHT meegeven\n" +"\n" +" Als de opdracht niet kan worden uitgevoerd, dan sluit een niet-" +"interactieve\n" +" shell af, tenzij de shell-optie 'execfail' aan staat.\n" +"\n" +" De afsluitwaarde is 0, tenzij OPDRACHT niet gevonden wordt of er een\n" +" omleidingsfout optreedt." #: builtins.c:685 -#, fuzzy msgid "" "Exit the shell.\n" " \n" " Exits the shell with a status of N. If N is omitted, the exit status\n" " is that of the last command executed." msgstr "" -"Beëindigt de shell met een afsluitwaarde van N. Zonder N is de\n" +"De shell beëindigen.\n" +"\n" +" Beëindigt de shell met een afsluitwaarde van N. Zonder N is de\n" " afsluitwaarde die van de laatst uitgevoerde opdracht." #: builtins.c:694 @@ -2792,9 +2980,12 @@ msgid "" "executed\n" " in a login shell." msgstr "" +"Een login-shell beëindigen.\n" +"\n" +" Beëindigt een login-shell met een afsluitwaarde van N. Geeft een\n" +" foutmelding als de huidige shell geen login-shell is." #: builtins.c:704 -#, fuzzy msgid "" "Display or execute commands from the history list.\n" " \n" @@ -2823,33 +3014,33 @@ msgid "" " Returns success or status of executed command; non-zero if an error " "occurs." msgstr "" -"Opent een editor en laat de gebruiker oude opdrachten bewerken; bij het\n" -" afsluiten van de editor worden de bewerkte opdrachten uitgevoerd.\n" +"Opdrachten uit de geschiedenis tonen of uitvoeren.\n" "\n" -" Als er geen argumenten gegeven zijn, wordt de laatst gegeven opdracht\n" -" genomen. Als het argument uit letters bestaat, wordt de meest recente\n" -" opdracht genomen die met die letters begint. Als het argument een " -"getal\n" -" is, wordt de opdracht met dat nummer genomen (zie 'fc -l'); met twee\n" -" getallen wordt de aangeduide reeks opdrachten genomen. Met optie -e\n" -" kan de te gebruiken editor opgegeven worden; standaard wordt de waarde\n" -" van FCEDIT gebruikt, anders die van EDITOR, anders 'vi'.\n" +" Kan gebruikt worden om oude opdrachten te tonen, of om deze te bewerken\n" +" en opnieuw uit te voeren. EERSTE en LAATSTE kunnen getallen zijn die " +"een\n" +" bereik opgeven, of EERSTE kan een tekenreeksje zijn waarmee de " +"recentste\n" +" opdracht wordt bedoeld die met die letters begint.\n" "\n" -" Andere opties:\n" -" -l een lijst met opdrachten tonen (in plaats van ze te bewerken)\n" -" -n de lijst zonder nummers weergeven\n" -" -r de volgorde van de lijst omdraaien\n" +" Opties:\n" +" -e EDITORNAAM de te gebruiken editor; standaard wordt de waarde van\n" +" FCEDIT gebruikt, anders die van EDITOR, anders 'vi'\n" +" -l een lijst met opdrachten tonen (in plaats van ze te bewerken)\n" +" -n de lijst zonder nummers weergeven\n" +" -r de volgorde van de lijst omdraaien (nieuwste eerst)\n" "\n" -" In de vorm 'fc -s [patroon=vervanging]... [letters]' wordt de recentste\n" -" opdracht (die met de gegeven letters begint) opnieuw uitgevoerd, nadat\n" -" de gegeven vervangingen zijn gedaan.\n" +" In de vorm 'fc -s [PATROON=VERVANGING]... [OPDRACHT]', wordt OPDRACHT\n" +" opnieuw uitgevoerd nadat de aangegeven vervangingen zijn gedaan.\n" "\n" " Een handige alias bij deze functie is r='fc -s', zodat het typen van\n" " 'r' de laatste opdracht opnieuw uitvoert, en het typen van 'r cc' de\n" -" laatste opdracht die met 'cc' begon opnieuw uitvoert." +" laatste opdracht die met 'cc' begon opnieuw uitvoert.\n" +"\n" +" De afsluitwaarde die van de uitgevoerde opdracht, of 0, of niet-nul als\n" +" er een fout optreedt." #: builtins.c:734 -#, fuzzy msgid "" "Move job to the foreground.\n" " \n" @@ -2860,13 +3051,19 @@ msgid "" " Exit Status:\n" " Status of command placed in foreground, or failure if an error occurs." msgstr "" -"Plaatst de gegeven taak in de voorgrond, en maakt deze tot de huidige taak.\n" +"De gegeven taak in de voorgrond plaatsen.\n" +"\n" +" Plaatst de gegeven taak in de voorgrond, en maakt deze tot de huidige " +"taak.\n" " Als er geen taak gegeven is, dan wordt dat wat volgens de shell de " "huidige\n" -" taak is gebruikt." +" taak is gebruikt.\n" +"\n" +" De afsluitwaarde is die van de in voorgrond geplaatste taak, of 1 als " +"er\n" +" een fout optreedt." #: builtins.c:749 -#, fuzzy msgid "" "Move jobs to the background.\n" " \n" @@ -2879,10 +3076,16 @@ msgid "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." msgstr "" -"Plaatst de gegeven taak in de achtergrond, alsof deze gestart was met '&'.\n" +"De gegeven taken in de achtergrond plaatsen.\n" +"\n" +" Plaatst gegeven taken in de achtergrond, alsof deze gestart waren met " +"'&'.\n" " Als er geen taak gegeven is, dan wordt dat wat volgens de shell de " "huidige\n" -" taak is gebruikt." +" taak is gebruikt.\n" +"\n" +" De afsluitwaarde is 0 tenzij taakbeheer uitgeschakeld is of er een fout\n" +" optreedt." #: builtins.c:763 msgid "" @@ -2907,6 +3110,24 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is not found or an invalid option is given." msgstr "" +"Programmalocaties onthouden of tonen.\n" +"\n" +" Bepaalt en onthoudt voor elke gegeven opdracht-NAAM het volledige pad.\n" +" Als er geen argumenten gegeven zijn, dan wordt informatie over de\n" +" onthouden paden getoond.\n" +"\n" +" Opties:\n" +" -d het pad van elke gegeven NAAM vergeten\n" +" -l uitvoer produceren die herbruikbaar is als invoer\n" +" -p PADNAAM te gebruiken PADNAAM van de opdracht NAAM\n" +" -r alle paden vergeten\n" +" -t voor elke gegeven naam het onthouden pad tonen\n" +"\n" +" Elke gegeven NAAM wordt opgezocht in $PATH en wordt toegevoegd aan de\n" +" lijst met onthouden opdrachten.\n" +"\n" +" De afsluitwaarde is 0, tenzij NAAM niet gevonden wordt of een ongeldige\n" +" optie gegeven werd." #: builtins.c:788 msgid "" @@ -2929,9 +3150,23 @@ msgid "" " Returns success unless PATTERN is not found or an invalid option is " "given." msgstr "" +"Informatie tonen over ingebouwde opdrachten.\n" +"\n" +" Toont korte hulpteksten voor ingebouwde opdrachten van de shell.\n" +" Als een PATROON gegeven is, dan worden hulpteksten getoond voor alle\n" +" opdrachten die aan dit PATROON voldoen, anders wordt een lijst met\n" +" onderwerpen waarvoor hulp beschikbaar is getoond.\n" +"\n" +" Opties:\n" +" -d een korte omschrijving tonen voor elk onderwerp\n" +" -m gebruiksbericht tonen in pseudo-opmaak van een man-pagina\n" +" -s de uitvoer beperken tot een beknopt gebruiksbericht\n" +"\n" +" De afsluitwaarde is 0, tenzij niets aan PATROON voldoet of een " +"ongeldige\n" +" optie gegeven werd." #: builtins.c:812 -#, fuzzy msgid "" "Display or manipulate the history list.\n" " \n" @@ -2964,33 +3199,40 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." msgstr "" -"Geeft de lijst met uitgevoerde opdrachten weer (de \"geschiedenis\"),\n" -" inclusief regelnummers. Regels met een '*' zijn ooit bewerkt.\n" +"De opdrachtengeschiedenis tonen of bewerken.\n" "\n" -" Met een argument van N worden alleen de laatste N opdrachten getoond.\n" -" Optie -c maakt de huidige geschiedenis leeg: alle uitgevoerde " -"opdrachten\n" -" worden vergeten. Optie -w schrijft de huidige geschiedenis naar het\n" -" geschiedenisbestand. Optie -r leest het geschiedenisbestand en voegt " -"de\n" -" inhoud ervan aan het eind van de huidige geschienis toe. Optie -a " -"voegt\n" -" de huidige geschiedenis aan het eind van het geschiedenisbestand toe.\n" -" Optie -n leest de nieuw toegevoegde regels uit het geschiedenisbestand\n" -" en voegt ze aan het eind van de huidige geschiedenis toe.\n" +" Geeft de lijst met uitgevoerde opdrachten weer (de \"geschiedenis\"),\n" +" inclusief regelnummers; voor bewerkte items staat een '*'. Met een\n" +" argument van N worden alleen de laatste N opdrachten getoond.\n" "\n" -" Als er een bestandsnaam gegeven is, dan wordt dat gebruikt als het\n" +" Opties:\n" +" -c huidige geschiedenis wissen: alle uitgevoerde opdrachten " +"vergeten\n" +" -d POSITIE het geschiedenisitem op deze positie verwijderen\n" +"\n" +" -a huidige geschiedenis aan eind van geschiedenisbestand toevoegen\n" +" -n alle nog niet gelezen regels uit het geschiedenisbestand lezen\n" +" -r het geschiedenisbestand lezen en toevoegen aan einde van\n" +" huidige geschienis\n" +" -w huidige geschiedenis aan einde van geschiedenisbestand toevoegen\n" +"\n" +" -p geschiedenisopzoeking uitvoeren voor elk ARGUMENT en het " +"resultaat\n" +" tonen zonder dit in de geschiedenis op te slaan -s de " +"ARGUMENTen als één enkel item aan de geschiedenis toevoegen\n" +" Als een BESTANDSNAAM gegeven is, dan wordt dat gebruikt als het\n" " geschiedenisbestand, anders wordt de waarde van HISTFILE gebruikt, en\n" -" als die variabele leeg is, dan ~/.bash_history. Optie -s voegt de\n" -" gegeven argumenten als een enkel item toe aan de huidige geschiedenis.\n" -" (Wat optie -p doet is me een raadsel; een patch is welkom.)\n" -"\n" -" Als de variabele HISTTIMEFORMAT niet leeg is, dan wordt de waarde ervan\n" -" gebruikt als een opmaaktekenreeks for strftime(3), om een tijdsstempel\n" -" bij elk geschiedenisitem weer te geven." +" als die variabele leeg is, dan ~/.bash_history.\n" +" Als de variabele HISTTIMEFORMAT ingesteld en niet leeg is, dan wordt de\n" +" waarde ervan gebruikt als een opmaaktekenreeks for strftime(3), om een\n" +" tijdsstempel bij elk geschiedenisitem weer te geven. Anders worden " +"geen\n" +" tijdsstempels getoond. \n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." #: builtins.c:848 -#, fuzzy msgid "" "Display status of jobs.\n" " \n" @@ -3013,15 +3255,27 @@ msgid "" " Returns success unless an invalid option is given or an error occurs.\n" " If -x is used, returns the exit status of COMMAND." msgstr "" -"Toont de actieve taken. Optie -l toont ook de proces-ID's; optie -p\n" -" toont alleen de proces-ID's. Met optie -n worden alleen processen\n" -" die sinds de laatste melding van status zijn veranderd getoond.\n" -" Een taakaanduiding beperkt de uitvoer tot alleen die taak. Opties\n" -" -r en -s beperken de uitvoer respectievelijk tot alleen de draaiende\n" -" en alleen de gestopte taken. Zonder opties wordt de status van alle\n" -" actieve taken getoond. Als optie -x gegeven is, wordt de opgegeven\n" -" opdracht uitgevoerd nadat alle opgegeven taken afgesloten zijn (dat\n" -" wil zeggen: hun proces-ID is vervangen door dat van hun moederproces)." +"De status van taken tonen.\n" +"\n" +" Toont de actieve taken. Een TAAKAANDUIDING beperkt de uitvoer tot " +"alleen\n" +" die taak. Zonder opties wordt de status van alle actieve taken " +"getoond.\n" +"\n" +" Opties:\n" +" -l ook de proces-ID's tonen, naast de gewone informatie\n" +" -n alleen processen tonen die sinds de vorige melding zijn " +"veranderd\n" +" -p alleen de proces-ID's tonen\n" +" -r uitvoer beperken tot draaiende taken\n" +" -s uitvoer beperken tot gepauzeerde taken\n" +" Als optie '-x' gegeven is, wordt de gegeven OPDRACHT uitgevoerd nadat\n" +" alle gegeven taken (in ARGUMENTen) afgesloten zijn (dat wil zeggen: hun\n" +" proces-ID is vervangen door dat van hun moederproces).\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een\n" +" fout optreedt. Als '-x' gebruikt is, dan is de afsluitwaarde die van\n" +" OPDRACHT." #: builtins.c:875 msgid "" @@ -3039,9 +3293,23 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option or JOBSPEC is given." msgstr "" +"Taken uit de huidige shell verwijderen.\n" +"\n" +" Verwijdert elke gegeven taak uit de tabel met actieve taken. Zonder\n" +" een TAAKAANDUIDING wordt dat wat volgens de shell de huidige taak is\n" +" verwijderd.\n" +"\n" +" Opties:\n" +" -a alle taken verwijderen (als geen TAAKAANDUIDING gegeven is)\n" +" -h taken niet verwijderen maar zodanig markeren dat deze geen " +"SIGHUP\n" +" krijgen wanneer de shell een SIGHUP krijgt\n" +" -r alleen draaiende taken verwijderen\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie of TAAKAANDUIDING\n" +" gegeven werd." #: builtins.c:894 -#, fuzzy msgid "" "Send a signal to a job.\n" " \n" @@ -3062,23 +3330,31 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." msgstr "" -"Stuurt de via PID of taakaanduiding gegeven processen het gegeven signaal.\n" -" Als er geen signaal aangegeven is, dan wordt SIGTERM gestuurd.\n" +"Een signaal naar een taak sturen.\n" "\n" -" Optie -l toont de beschikbare signalen, zowel de nummers als de namen;\n" -" als optie -l argumenten heeft, dan wordt voor elk nummer de " -"bijbehorende\n" -" naam getoond, en voor elke naam het bijbehorende nummer.\n" +" Stuurt de via PID of TAAKAANDUIDING aangeduide processen het gegeven\n" +" signaal. Als er geen signaal gegeven is, dan wordt SIGTERM gestuurd.\n" +"\n" +" Opties:\n" +" -n NAAM het signaal met deze naam sturen\n" +" -s NUMMER het signaal met dit nummer sturen\n" +" -l lijst met beschikbare signalen tonen; als na '-l' " +"argumenten\n" +" volgen, dan wordt voor elk nummer de bijbehorende naam\n" +" getoond, en voor elke naam het bijbehorende nummer\n" "\n" " 'kill' is om twee redenen een ingebouwde shell-opdracht: het " "accepteert\n" " ook taakaanduidingen in plaats van alleen proces-ID's, en als het " "maximum\n" " aantal processen bereikt is hoeft u geen nieuw proces te starten om een\n" -" ander proces te elimineren." +" ander proces te elimineren.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." #: builtins.c:917 -#, fuzzy msgid "" "Evaluate arithmetic expressions.\n" " \n" @@ -3122,9 +3398,11 @@ msgid "" " Exit Status:\n" " If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise.." msgstr "" -"Evalueert elk argument als een rekenkundige uitdrukking.\n" +"Rekenkundige uitdrukkingen evalueren.\n" +"\n" +" Evalueert elk ARGUMENT als een rekenkundige uitdrukking.\n" " De evaluatie gebeurt in gehele getallen zonder controle op overloop;\n" -" maar deling door nul wordt gedetecteerd en getoond als een fout.\n" +" maar deling door nul wordt gedetecteerd en wordt getoond als een fout.\n" "\n" " Onderstaande lijst toont de beschikbare operatoren in groepjes van " "gelijke\n" @@ -3150,7 +3428,7 @@ msgstr "" "\n" " =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |= toewijzingen\n" "\n" -" Shellvariabelen zijn toegestaan als parameters. De naam van een " +" Shell-variabelen zijn toegestaan als parameters. De naam van een " "variabele\n" " wordt vervangen door zijn waarde (zonodig omgezet naar een geheel " "getal).\n" @@ -3162,9 +3440,8 @@ msgstr "" " tussen haakjes worden altijd eerst geëvalueerd en overstijgen zodoende\n" " bovengenoemde voorrangsregels.\n" "\n" -" Als het laatste argument geëvalueerd wordt als 0, dan is de " -"afsluitwaarde\n" -" van 'let' 1; anders 0." +" Als het laatste ARGUMENT evalueert tot 0, dan is de afsluitwaarde van\n" +" 'let' 1; anders 0." #: builtins.c:962 #, fuzzy @@ -3200,8 +3477,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3209,42 +3487,47 @@ msgid "" "out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -"Leest één regel van standaardinvoer (of van de gegeven bestandsdescriptor\n" -" als optie -u gegeven is) en wijst het eerste woord aan de eerste naam " +"Een regel van standaardinvoer lezen en in velden opsplitsen.\n" +"\n" +" Leest één regel van standaardinvoer (of van de gegeven " +"bestandsdescriptor\n" +" als optie -u gegeven is) en wijst het eerste woord aan de eerste NAAM " "toe,\n" -" het tweede woord aan de tweede naam, en zo verder; de resterende " +" het tweede woord aan de tweede NAAM, en zo verder; de resterende " "woorden\n" -" worden toegewezen aan de laatste naam. Alleen de tekens in de " +" worden toegewezen aan de laatste NAAM. Alleen de tekens in de " "variabele\n" " IFS worden herkend als woordscheidingstekens. Als er geen namen " "gegeven\n" " zijn, wordt de gelezen regel opgeslagen in de variabele REPLY.\n" "\n" -" Optie -r betekent \"ruwe\" invoer: backslash-codes worden niet omgezet\n" -" naar hun betekenis. Optie -d maakt dat 'read' doorgaat met lezen tot\n" -" het gegeven eindteken in plaats van tot het regeleinde-teken (LF).\n" -" Optie -p print de gegeven tekenreeks als een prompt alvorens wordt\n" -" begonnen met lezen.\n" +" Opties:\n" +" -a ARRAY de gelezen woorden toekennen aan de opeenvolgende posities\n" +" van het genoemde array, beginnend bij index nul\n" +" -d TEKEN doorgaan met lezen tot TEKEN gelezen wordt (i.p.v. LF-" +"teken)\n" +" -e in een interactieve shell 'readline' gebruiken om de regel\n" +" in te lezen\n" +" -i TEKST door 'readline' te gebruiken begintekst\n" +" -n AANTAL stoppen na dit aantal tekens gelezen te hebben (i.p.v. tot\n" +" eeb LF-teken)\n" +" -p PROMT deze tekenreeks tonen als prompt (zonder afsluitende " +"nieuwe\n" +" regel) alvorens te beginnen met lezen\n" +" -r backslash-codes niet omzetten naar hun betekenis\n" +" -s invoer die van een terminal komt niet echoën\n" +" -t AANTAL na dit aantal seconden stoppen met wachten op invoer en\n" +" afsluiten met een code groter dan 128; de waarde van de\n" +" variabele TMOUT is de standaardwaarde voor het aantal te\n" +" wachten seconden; het aantal mag drijvendepuntgetal zijn\n" +" -u BSDS van deze bestandsdescriptor lezen i.p.v. van " +"standaardinvoer\n" "\n" -" Met optie -a worden de gelezen woorden toegewezen aan de opeenvolgende\n" -" posities van het genoemde array, beginnend bij index nul. Als optie -" -"e \n" -" gegeven is en de shell is interactief, dan wordt de functie readline()\n" -" gebruikt om de regel in te lezen. Als optie -n gegeven is met een " -"waarde\n" -" die niet nul is, dan keert 'read' terug na het opgegeven aantal tekens\n" -" gelezen te hebben. Optie -s maakt dat de invoer niet geëchood wordt.\n" -"\n" -" Optie -t maakt dat 'read' na het opgegeven aantal seconden stopt met\n" -" wachten op invoer en afsluit met een foutcode. Als de variabele TMOUT\n" -" bestaat, dan geldt diens waarde als standaardwaarde voor het aantal te\n" -" wachten seconden.\n" -"\n" -" De afsluitwaarde van 'read' is 0, tenzij einde-van-bestand (EOF)\n" -" bereikt werd, de tijdslimiet overschreden werd, of een ongeldige\n" -" bestandsdescriptor als argument van -u gegeven werd." +" De afsluitwaarde is 0, tenzij einde-van-bestand (EOF) bereikt werd,\n" +" de tijdslimiet overschreden werd, of een ongeldige bestandsdescriptor\n" +" als argument van '-u' gegeven werd." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3255,9 +3538,17 @@ msgid "" " Exit Status:\n" " Returns N, or failure if the shell is not executing a function or script." msgstr "" +"Terugkeren uit een shell-functie.\n" +"\n" +" Doet een functie of gesourced script afsluiten met afsluitwaarde N.\n" +" Zonder N is de afsluitwaarde die van de laatst uitgevoerde opdracht\n" +" in functie of script.\n" +"\n" +" De afsluitwaarde is N, of 1 als de shell geen functie of script aan het\n" +" uitvoeren is." -#: builtins.c:1014 -#, fuzzy +# Voor de duidelijkheid is de tejstvolgorde veranderd. +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3338,13 +3629,17 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given." msgstr "" -"Schakelt shell-attributen in of uit. Zonder opties of argumenten toont\n" -" 'set' de namen en waarden van alle gedefinieerde variabelen en " -"functies,\n" -" in een vorm die als invoer hergebruikt kan worden. De volgende opties\n" -" zijn beschikbaar (een '+' in plaats van een '-' schakelt het " -"betreffende\n" -" attribuut _uit_ in plaats van in):\n" +"Waarden van shell-opties of positionele parameters instellen.\n" +"\n" +" Schakelt shell-attributen in of uit, of verandert waarden van " +"positionele\n" +" parameters. Zonder opties of argumenten toont 'set' de namen en " +"waarden\n" +" van alle gedefinieerde variabelen en functies, in een vorm die als " +"invoer\n" +" hergebruikt kan worden. De volgende opties zijn beschikbaar (een '+' " +"in\n" +" plaats van een '-' schakelt het betreffende attribuut _uit_ i.p.v. in):\n" "\n" " -a nieuwe of gewijzigde variabelen en functies automatisch " "exporteren\n" @@ -3420,16 +3715,20 @@ msgstr "" "beschouwen)\n" " onecmd == -t (afsluiten na uitvoeren van één opdracht)\n" " physical == -P (fysieke paden volgen i.p.v. symbolische)\n" -" pipefail de afsluitwaarde van een reeks pijpen gelijkmaken aan " -"die\n" -" van de laatste niet-succesvolle opdracht in de reeks\n" -" posix de voorschriften van POSIX 1003.2 strict volgen\n" +" pipefail de afsluitwaarde van een pijplijn gelijkmaken aan die " +"van\n" +" de laatste niet-succesvolle opdracht in de reeks, of " +"aan\n" +" 0 als alle opdrachten succesvol waren\n" +" posix de voorschriften van de POSIX-standaard strict volgen\n" " privileged == -p (geprivilegeerde modus)\n" " verbose == -v (elke invoerregel echoën)\n" " vi regelbewerkingsinterface in stijl van 'vi' gebruiken\n" -" xtrace == -x (elke opdracht echoën)" +" xtrace == -x (elke opdracht echoën)\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3448,8 +3747,22 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" +"Shell-variabelen en -functies verwijderen.\n" +"\n" +" Verwijdert voor elke NAAM de bijbehorende variabele of functie.\n" +"\n" +" Opties:\n" +" -f elke NAAM als een shell-functie begrijpen\n" +" -v elke NAAM als een shell-variabele begrijpen\n" +"\n" +" Zonder opties zal 'unset' eerst een variabele proberen te verwijderen,\n" +" en als dat niet lukt, dan een functie. Sommige variabelen kunnen niet\n" +" verwijderd worden; zie ook 'readonly'. \n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een\n" +" NAAM alleen-lezen is." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3467,8 +3780,22 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" +"Het export-attribuut van shell-variabelen instellen.\n" +"\n" +" Markeert elke gegeven naam voor automatische export naar de omgeving\n" +" van latere opdrachten. Als een WAARDE gegeven is, dan deze WAARDE\n" +" toekennen alvorens te exporteren.\n" +"\n" +" Opties:\n" +" -f gegeven namen verwijzen alleen naar functies\n" +" -n voor de gegeven namen de exportmarkering juist verwijderen\n" +" -p een lijst van alle geëxporteerde namen tonen\n" +"\n" +" Het argument '--' schakelt verdere optieverwerking uit.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3487,8 +3814,24 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" +"Shell-variabelen als onveranderbaar markeren.\n" +"\n" +" Markeert elke gegeven NAAM als alleen-lezen, zodat de waarde van deze\n" +" NAAM niet meer veranderd kan worden door een latere toewijzing. Als " +"een\n" +" WAARDE gegeven is, dan deze WAARDE toekennen alvorens deze te fixeren.\n" +"\n" +" Opties:\n" +" -a elke naam als een array begrijpen\n" +" -A elke naam als een associatief array begrijpen\n" +" -f gegeven namen verwijzen alleen naar functies\n" +" -p een lijst van alle onveranderbare variabelen en functies tonen\n" +"\n" +" Het argument '--' schakelt verdere optieverwerking uit.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie of NAAM gegeven werd." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3498,9 +3841,14 @@ msgid "" " Exit Status:\n" " Returns success unless N is negative or greater than $#." msgstr "" +"Positionele parameters opschuiven.\n" +"\n" +" Hernoemt positionele parameters $N+1,$N+2,... naar $1,$2,...\n" +" Als N niet gegeven is, wordt de waarde 1 aangenomen.\n" +"\n" +" De afsluitwaarde is 0 tenzij N negatief is of groter dan $#." -#: builtins.c:1168 builtins.c:1183 -#, fuzzy +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3513,12 +3861,19 @@ msgid "" " Returns the status of the last command executed in FILENAME; fails if\n" " FILENAME cannot be read." msgstr "" -"De opdrachten in het gegeven bestand uitvoeren. De mappen in PATH\n" -" worden nagezocht om het genoemde bestand te vinden. Als er verder\n" -" nog argumenten gegeven zijn, worden dit de positionele parameters\n" -" tijdens de uitvoering van het genoemde bestand." +"Opdrachten uit bestand in de huidige shell uitvoeren.\n" +"\n" +" Leest opdrachten uit het gegeven bestand en voert deze uit in de " +"huidige\n" +" shell. De mappen in PATH worden nagezocht om het genoemde bestand te\n" +" vinden. Als er verder nog argumenten gegeven zijn, dan worden dit de\n" +" positionele parameters tijdens de uitvoering van het genoemde bestand.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht in het " +"gegeven\n" +" bestand, of 1 als dit bestand niet gelezen kan worden." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3531,9 +3886,19 @@ msgid "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." msgstr "" +"Uitvoering van de shell pauzeren.\n" +"\n" +" Pauzeert de uitvoering van deze shell totdat een SIGCONT-signaal\n" +" ontvangen wordt. Een login-shell kan niet gepauzeerd worden, tenzij\n" +" optie '-f' gegeven is.\n" +"\n" +" Optie:\n" +" -f pauzering afdwingen, ook als dit een login-shell is\n" +"\n" +" De afsluitwaarde is 0 tenzij taakbeheer uitgeschakeld is of er een fout\n" +" optreedt." -#: builtins.c:1215 -#, fuzzy +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3609,7 +3974,9 @@ msgid "" " Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n" " false or an invalid argument is given." msgstr "" -"Evalueert de gegeven expressie; afhankelijk van het resultaat is de\n" +"Een conditionele expressie evalueren.\n" +"\n" +" Evalueert de gegeven EXPRESSIE; afhankelijk van het resultaat is de\n" " afsluitwaarde 0 (\"waar\") of 1 (\"onwaar\"). De expressies kunnen\n" " eenzijdig of tweezijdig zijn; eenzijdige expressies worden vaak\n" " gebruikt om de toestand van een bestand te inspecteren. Er zijn ook\n" @@ -3652,32 +4019,37 @@ msgstr "" " REEKS waar als tekenreeks niet leeg is\n" " RKS1 = RKS2 waar als de tekenreeksen gelijk zijn\n" " RKS1 != RKS2 waar als de tekenreeksen niet gelijk zijn\n" -" RKS1 < RKS2 waar als eerste reeks lexografisch voor de tweede " +" RKS1 < RKS2 waar als eerste reeks lexicografisch voor de tweede " +"komt\n" +" RKS1 > RKS2 waar als eerste reeks lexicografisch na de tweede " "komt\n" -" RKS1 > RKS2 waar als eerste reeks lexografisch na de tweede komt\n" "\n" " Andere operatoren:\n" " -o OPTIE waar als de shell-optie ingeschakeld is\n" " ! EXPR waar als EXPR onwaar is\n" " EXPR1 -a EXPR2 waar als beide expressies waar zijn\n" " EXPR1 -o EXPR2 onwaar als beide expressies onwaar zijn\n" -" ARG1 VGL ARG2 rekenkundige vergelijkingen; VGL is één van\n" -" de volgende: -eq, -ne, -lt, -le, -gt, -ge;\n" +" ARG1 VGL ARG2 waar als rekenkundige vergelijking klopt; VGL is één\n" +" van de volgende: -eq, -ne, -lt, -le, -gt, -ge;\n" " ze betekenen: gelijk, ongelijk, kleiner dan,\n" -" kleiner of gelijk, groter dan, groter of gelijk" +" kleiner of gelijk, groter dan, groter of gelijk\n" +"\n" +" De afsluitwaarde is 0 als EXPRESSIE waar is, 1 als EXPRESSIE onwaar is,\n" +" en 2 als een ongeldig argument gegeven werd." -#: builtins.c:1291 -#, fuzzy +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" " This is a synonym for the \"test\" builtin, but the last argument must\n" " be a literal `]', to match the opening `['." msgstr "" -"Dit is een synoniem voor de ingebouwde functie 'test', behalve dat\n" +"Een conditionele expressie evalueren.\n" +"\n" +" Dit is een synoniem voor de ingebouwde functie 'test', behalve dat\n" " het laatste argument een ']' moet zijn, horend bij de begin-'['." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3688,9 +4060,15 @@ msgid "" " Exit Status:\n" " Always succeeds." msgstr "" +"Procestijden tonen.\n" +"\n" +" Geeft de totaal verbruikte gebruikers- en systeemtijd weer; eerst de\n" +" tijden verbruikt door de shell zelf, en daaronder de tijden verbruikt\n" +" door de processen uitgevoerd door de shell.\n" +"\n" +" De afsluitwaarde is altijd 0." -#: builtins.c:1312 -#, fuzzy +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3725,43 +4103,52 @@ msgid "" " Returns success unless a SIGSPEC is invalid or an invalid option is " "given." msgstr "" -"Voert de gegeven opdracht (ARG) uit wanneer de shell een van de opgegeven\n" -" signalen ontvangt. Als ARG ontbreekt en er één signaal gegeven is, of " -"als\n" -" ARG '-' is, dan worden de opgegeven signalen teruggezet op de waarde " -"die\n" -" ze hadden bij het starten van deze shell. Als ARG de lege tekenreeks " -"is,\n" -" dan worden de opgegeven signalen genegeerd door zowel deze shell als " -"door\n" -" alle dochterprocessen.\n" +"Signalen en andere gebeurtenissen opvangen.\n" "\n" -" Als EXIT als signaal opgegeven wordt, dan wordt de opdracht ARG " -"uitgevoerd\n" +" Definieert en activeert afhandelingsprocedures die uitgevoerd moeten\n" +" worden wanneer de shell een signaal of andere gebeurtenissen ontvangt.\n" +"\n" +" ARGUMENT is een opdracht die gelezen en uitgevoerd wordt wanneer de " +"shell\n" +" een van de opgegeven signalen ontvangt. Als ARGUMENT ontbreekt en er " +"één\n" +" signaal gegeven is, of wanneer ARGUMENT '-' is, dan worden de opgegeven\n" +" signalen teruggezet op de waarde die ze hadden bij het starten van deze\n" +" shell. Als ARGUMENT de lege tekenreeks is, dan worden de opgegeven\n" +" signalen genegeerd door zowel deze shell als door alle " +"dochterprocessen.\n" +"\n" +" Als EXIT (0) als signaal opgegeven wordt, dan wordt ARGUMENT uitgevoerd\n" " bij het afsluiten van de shell. Als DEBUG als signaal opgegeven wordt,\n" -" dan wordt ARG uitgevoerd vóór elke enkelvoudige opdracht, vóór elke " -"'for',\n" -" 'case' en 'select', en vóór elke eerste opdracht van een functie. Als\n" -" RETURN als signaal opgegeven wordt, dan wordt ARG uitgevoerd elke keer " +" dan wordt ARGUMENT uitgevoerd vóór elke enkelvoudige opdracht. Als " +"RETURN\n" +" als signaal opgegeven wordt, dan wordt ARGUMENT uitgevoerd elke keer " "als\n" " een functie (of een met 'source' aangeroepen script) terugkeert. Als " "ERR\n" -" als signaal opgegeven wordt, dan wordt ARG uitgevoerd elke keer als een\n" -" enkelvoudige opdracht eindigt met een afsluitwaarde die niet nul is.\n" -"\n" -" Optie -p toont voor elk gegeven signaal welke opdracht ermee verbonden " +" als signaal opgegeven wordt, dan wordt ARGUMENT uitgevoerd elke keer " +"als\n" +" een enkelvoudige opdracht eindigt met een afsluitwaarde die niet nul " "is.\n" +"\n" " Als er geen enkel argument gegeven is, dan toont 'trap' welke " "opdrachten\n" -" er met welke signalen verbonden zijn. Optie -l toont een overzicht van\n" -" signaalnummers en hun namen.\n" +" er met welke signalen verbonden zijn.\n" +"\n" +" Opties:\n" +" -l een overzicht tonen van signaalnummers en hun namen\n" +" -p voor elk gegeven signaal tonen welke opdracht ermee verbonden is\n" "\n" " Signalen kunnen als naam of als nummer opgegeven worden, in hoofd- of " "in\n" " kleine letters, en het voorvoegsel 'SIG' is optioneel. Merk op dat met\n" -" 'kill -signaal $$' een signaal naar de huidige shell gestuurd kan worden." +" 'kill -signaal $$' een signaal naar de huidige shell gestuurd kan " +"worden.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie of SIGNAALAANDUIDING\n" +" gegeven werd." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3790,9 +4177,30 @@ msgid "" " Returns success if all of the NAMEs are found; fails if any are not " "found." msgstr "" +"Informatie tonen over een opdracht.\n" +"\n" +" Toont voor elke gegeven NAAM hoe deze zou worden geïnterpreteerd als\n" +" deze als opdracht gebruikt zou worden.\n" +"\n" +" Opties:\n" +" -a alle plaatsen tonen met een uitvoerbaar bestand genaamd NAAM;\n" +" dit omvat aliassen, ingebouwde shell-opdrachten, functies,\n" +" sleutelwoorden, en bestanden op schijf (alleen zonder '-p')\n" +" -f functies negeren, alsof ze niet gedefinieerd zijn\n" +" -P naar elke gegeven naam zoeken in het huidige zoekpad (PATH), ook\n" +" als het een alias, ingebouwde shell-opdracht of functie is\n" +" -p voor elke gegeven naam het volledige pad tonen van het bestand " +"dat\n" +" uitgevoerd zou worden, of niets als er een alias, functie,\n" +" ingebouwde shell-opdracht of sleutelwoord met die naam is\n" +" -t alleen het type van de opgegeven namen tonen: 'alias', 'builtin',\n" +" 'file', 'function' of 'keyword', al naar gelang het een alias,\n" +" een ingebouwde shell-opdracht, een bestand op schijf, een\n" +" gedefinieerde functie of een sleutelwoord betreft; of niets\n" +" als de naam onbekend is\\ \n" +" De afsluitwaarde is 0 als elke NAAM gevonden werd, anders 1." -#: builtins.c:1375 -#, fuzzy +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3835,12 +4243,17 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Begrenst de beschikbare hulpbronnen voor processen gestart door deze shell\n" -" -- op systemen die begrenzing toestaan. De opties zijn:\n" +"Grenzen van hulpbronnen aanpassen.\n" "\n" +" Begrenst de beschikbare hulpbronnen voor processen gestart door deze " +"shell\n" +" -- op systemen die zulke begrenzing toestaan.\n" +"\n" +" Opties:\n" " -S een \"zachte\" hulpbrongrens gebruiken\n" " -H een \"harde\" hulpbrongrens gebruiken\n" " -a alle huidige begrenzingen tonen\n" +" -b de maximum grootte van een socketbuffer\n" " -c de maximum grootte van een core-bestand (in kB)\n" " -d de maximum hoeveelheid gegevensgeheugen van een proces (in kB)\n" " -e de maximum procespriotiteit (de 'nice'-waarde)\n" @@ -3860,17 +4273,21 @@ msgstr "" " -v de maximum hoeveelheid virtueel geheugen van een proces (in kB)\n" " -x het maximum aantal bestandsvergrendelingen\n" "\n" -" Als er geen optie gegeven is, dan wordt optie -f aangenomen.\n" -" Als er een grens opgegeven is, dan wordt dit de nieuwe waarde van de\n" +" Als een GRENSWAARDE opgegeven is, dan wordt dit de nieuwe waarde van de\n" " aangegeven hulpbron, anders wordt de huidige waarde ervan getoond.\n" " De speciale grenswaarden 'soft', 'hard' en 'unlimited' staan voor de\n" " huidige zachte grens, de huidige harde grens, en onbegrensd.\n" +" Als geen optie gegeven is, dan wordt optie '-f' aangenomen.\n" "\n" -" De waardes gaan in stappen van 1024 bytes, behalve voor -t, die in\n" -" seconden is, voor -p, die in stappen van 512 bytes gaat, en voor -u,\n" -" dat een ongeschaald aantal is." +" De waardes gaan in stappen van 1024 bytes, behalve voor '-t', die in\n" +" seconden is, voor '-p', die in stappen van 512 bytes gaat, en voor '-" +"u',\n" +" dat een ongeschaald aantal is.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of een\n" +" fout optreedt." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3887,8 +4304,26 @@ msgid "" " Exit Status:\n" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" +"Het bestandsaanmaakmasker tonen of instellen.\n" +"\n" +" Stelt het bestandsaanmaakmasker van de gebruiker in op de gegeven " +"MODUS.\n" +" Als MODUS ontbreekt, dan wordt de huidige waarde van het masker " +"getoond.\n" +"\n" +" Als MODUS begint met een cijfer, wordt het begrepen als een octaal " +"getal,\n" +" anders als een symbolische modus-tekenreeks zoals chmod (1) die kent.\n" +"\n" +" Opties:\n" +" -p als invoer herbruikbare uitvoer produceren (indien MODUS " +"ontbreekt)\n" +" -S symbolische uitvoer produceren; anders octale getallen\n" +"\n" +" De afsluitwaarde is 0, tenzij MODUS ongeldig is of een ongeldige optie\n" +" gegeven werd." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3904,9 +4339,20 @@ msgid "" "is\n" " given." msgstr "" +"Op taakafsluiting wachten en de afsluitwaarde rapporteren.\n" +"\n" +" Wacht op het proces aangeduid door ID -- dat een taakaanduiding of een\n" +" proces-ID mag zijn -- en rapporteert diens afsluitwaarde. Als geen ID\n" +" gegeven is, dan wordt er gewacht op alle actieve dochterprocessen, en " +"is\n" +" de afsluitwaarde van 'wait' automatisch 0. Als ID een taakaanduiding " +"is,\n" +" dan wordt er gewacht op alle processen in de pijplijn van die taak.\n" +"\n" +" De afsluitwaarde is die van ID, 1 als ID ongeldig si, of 2 als een\n" +" ongeldige optie gegeven werd." -#: builtins.c:1458 -#, fuzzy +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3919,15 +4365,18 @@ msgid "" "is\n" " given." msgstr "" -"Wacht op het gegeven proces en rapporteert diens afsluitwaarde.\n" -" Als er geen argument gegeven is, dan wordt er gewacht op alle actieve\n" -" dochterprocessen, en is de afsluitwaarde van 'wait' automatisch 0.\n" -" Het argument kan een proces-ID of een taakaanduiding zijn; als het\n" -" een taakaanduiding is, wordt er gewacht op alle processen in de\n" -" pijplijn van die taak." +"Op procesafsluiting wachten en de afsluitwaarde rapporteren.\n" +"\n" +" Wacht op het proces aangeduid door ID en rapporteert diens " +"afsluitwaarde.\n" +" Als geen PID gegeven is, dan wordt er gewacht op alle momenteel actieve\n" +" dochterprocessen, en is de afsluitwaarde van 'wait' automatisch 0. PID\n" +" moet een proces-ID zijn.\n" +"\n" +" De afsluitwaarde is die van ID, 1 als ID ongeldig si, of 2 als een\n" +" ongeldige optie gegeven werd." -#: builtins.c:1473 -#, fuzzy +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3939,13 +4388,15 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert de gegeven opdrachten uit voor elk gegeven woord. Als het\n" -" 'in'-gedeelte afwezig is, wordt 'in \"$@\";' aangenomen. Voor elk\n" -" woord (of positionele parameter) wordt NAAM gelijkgemaakt aan dat\n" -" element en de opdrachten uitgevoerd." +"Opdrachten uitvoeren voor elk element in een lijst.\n" +"\n" +" De 'for'-lus voert een reeks opdrachten uit voor elk element in een\n" +" lijst van items. Als 'in WOORDEN...;' afwezig is, wordt 'in \"$@\";'\n" +" aangenomen. Voor elk element in WOORDEN wordt NAAM gelijkgemaakt aan\n" +" dat element en worden de OPDRACHTEN uitgevoerd. \n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1487 -#, fuzzy +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3961,15 +4412,18 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Dit is het equivalent van:\n" +"Een rekenkundige 'for'-lus.\n" "\n" -" (( EXP1 )); while (( EXP2 )); do COMMANDS; (( EXP3 )); done\n" +" Dit is het equivalent van:\n" +"\n" +" (( EXP1 )); while (( EXP2 )); do OPDRACHTEN; (( EXP3 )); done\n" "\n" " EXP1, EXP2, and EXP3 zijn rekenkundige expressies. Als een expressie\n" -" weggelaten wordt, wordt de waarde 1 ervoor in de plaats genomen." +" weggelaten wordt, wordt de waarde 1 ervoor in de plaats genomen.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1505 -#, fuzzy +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3988,7 +4442,9 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Toont een menu op standaardfoutuitvoer: een genummerde lijst met de\n" +"Een keuzelijst aanbieden en opdrachten uitvoeren.\n" +"\n" +" Toont een menu op standaardfoutuitvoer: een genummerde lijst met de\n" " gegeven woorden nadat alle shell-vervangingen erop zijn toegepast.\n" " Als het 'in'-gedeelte afwezig is, wordt 'in \"$@\";' aangenomen.\n" "\n" @@ -3999,11 +4455,12 @@ msgstr "" " als einde-van-bestand (Ctrl-D) wordt gelezen, dan wordt de opdracht\n" " beëindigd. Elke andere waarde zorgt ervoor dat de variabele NAAM\n" " wordt leeggemaakt. De gelezen regel wordt altijd opgeslagen in de\n" -" variabele REPLY. Na elke selectie worden de gegeven opdrachten\n" -" uitgevoerd. Dit gaat door totdat een 'break' de opdracht beëindigt." +" variabele REPLY. Na elke keuze worden de bijbehorende opdrachten\n" +" uitgevoerd. Dit gaat door totdat een 'break' de opdracht beëindigt. \n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1526 -#, fuzzy +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4018,16 +4475,19 @@ msgid "" " Exit Status:\n" " The return status is the return status of PIPELINE." msgstr "" -"Voert de gegeven opdrachten uit en toont daarna een tijdssamenvatting:\n" -" de totale verlopen tijd, de in gebruikersprocessen verbruikte " -"processor-\n" -" tijd , en de in systeemprocessen verbruikte processortijd. De uitvoer\n" -" kan via de omgevingsvariabele TIMEFORMAT naar wens aangepast worden.\n" -" De optie -p negeert deze omgevingsvariabele en toont de tijden in een\n" -" overdraagbare standaardopmaak." +"De door een pijplijn verbruikte tijd tonen.\n" +"\n" +" Voert de in de PIJPLIJN gegeven opdrachten uit en toont daarna een\n" +" tijdssamenvatting: de totale verlopen tijd, de in gebruikersprocessen\n" +" verbruikte processortijd , en de in systeemprocessen verbruikte\n" +" processortijd.\n" +"\n" +" De uitvoer kan via de omgevingsvariabele TIMEFORMAT aangepast worden.\n" +" Optie '-p' negeert deze omgevingsvariabele en toont de tijden in een\n" +" overdraagbare standaardopmaak.\n" +" De afsluitwaarde is die van de PIJPLIJN." -#: builtins.c:1543 -#, fuzzy +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4037,12 +4497,15 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert één van de gegeven sets met opdrachten uit, afhankelijk van met\n" +"Opdrachten uitvoeren afhankelijk van patroonovereenkomsten.\n" +"\n" +" Voert één van de gegeven sets met opdrachten uit, afhankelijk van met\n" " welk PATROON het WOORD overeenkomt. Met '|' kunnen meerdere patronen\n" -" gegroepeerd worden." +" gegroepeerd worden.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1555 -#, fuzzy +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -4062,7 +4525,9 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert eerst de opdrachten na 'if' uit; als de afsluitwaarde daarvan\n" +"Opdrachten uitvoeren afhankelijk van voorwaarden.\n" +"\n" +" Voert eerst de opdrachten na 'if' uit; als de afsluitwaarde daarvan\n" " nul is, dan worden de opdrachten na de eerste 'then' uitgevoerd; anders\n" " de opdrachten na de eerstvolgende 'elif' (indien aanwezig) of de 'else'\n" " (indien aanwezig). Als de afsluitwaarde van de opdrachten na een " @@ -4075,8 +4540,7 @@ msgstr "" "uitgevoerde\n" " deelopdracht, of nul als geen enkele 'if' of 'elif' nul opleverde." -#: builtins.c:1572 -#, fuzzy +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4086,11 +4550,14 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert de gegeven opdrachten uit zolang de laatste opdracht achter\n" -" 'while' een afsluitwaarde van 0 heeft." +"Opdrachten uitvoeren zolang een test slaagt.\n" +"\n" +" Voert de gegeven opdrachten uit zolang de laatste opdracht achter\n" +" 'while' een afsluitwaarde van 0 heeft.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1584 -#, fuzzy +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4100,10 +4567,14 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert de gegeven opdrachten uit zolang de laatste opdracht achter\n" -" 'until' een afsluitwaarde van 0 heeft." +"Opdrachten uitvoeren zolang een test niet slaagt.\n" +"\n" +" Voert de gegeven opdrachten uit zolang de laatste opdracht achter\n" +" 'until' een afsluitwaarde ongelijk aan 0 heeft.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4116,9 +4587,16 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is readonly." msgstr "" +"Een shell-functie definiëren.\n" +"\n" +" Maakt een shell-functie aan die met NAAM aangeroepen kan worden en die\n" +" de gegeven OPDRACHTEN uitvoert in de context van de aanroepende shell.\n" +" Wanneer NAAM aangeroepen wordt, worden de argumenten aan de functie\n" +" doorgegeven als $0...$N, en de functienaam in $FUNCNAME.\n" +"\n" +" De afsluitwaarde is 0, tenzij NAAM onveranderbaar is." -#: builtins.c:1610 -#, fuzzy +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4128,11 +4606,14 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Voert een set opdrachten als een groep uit. Dit is een manier om\n" -" de in- en uitvoer van een hele set opdrachten om te kunnen leiden." +"Opdrachten als een eenheid groeperen.\n" +"\n" +" Voert een set opdrachten als een eenheid uit. Dit is een manier om\n" +" de in- en uitvoer van een hele set opdrachten om te kunnen leiden.\n" +"\n" +" De afsluitwaarde is die van de laatst uitgevoerde opdracht." -#: builtins.c:1622 -#, fuzzy +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4145,15 +4626,18 @@ msgid "" " Exit Status:\n" " Returns the status of the resumed job." msgstr "" -"Hervat de gegeven achtergrondtaak of gepauzeerde taak. Dit is\n" -" equivalent aan de opdracht 'fg'. De taak kan met een nummer of\n" +"Een taak hervatten in de voorgrond.\n" +"\n" +" Hervat de gegeven achtergrondtaak of gepauzeerde taak in de voorgrond.\n" +" Dit is equivalent aan de opdracht 'fg'. De taak kan met een nummer of\n" " met een naam aangeduid worden.\n" "\n" " Als na de taakaanduiding een '&' volgt, dan wordt de taak in de\n" -" achtergrond geplaatst. Dit is equivalent aan de opdracht 'bg'." +" achtergrond geplaatst. Dit is equivalent aan de opdracht 'bg'.\n" +"\n" +" De afsluitwaarde is die van de hervatte taak." -#: builtins.c:1637 -#, fuzzy +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4163,11 +4647,14 @@ msgid "" " Exit Status:\n" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -"Evalueert de gegeven expressie als een rekenkundige uitdrukking.\n" -" Dit is equivalent aan 'let EXPRESSIE'." +"Een rekenkundige uitdrukking evalueren.\n" +"\n" +" Evalueert de gegeven expressie als een rekenkundige uitdrukking.\n" +" Dit is equivalent aan 'let EXPRESSIE'.\n" +"\n" +" De afsluitwaarde is 1 als de EXPRESSIE tot 0 evalueert; anders 0." -#: builtins.c:1649 -#, fuzzy +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -4194,11 +4681,15 @@ msgid "" " Exit Status:\n" " 0 or 1 depending on value of EXPRESSION." msgstr "" -"Evalueert de gegeven conditionele expressie; afhankelijk van het resultaat\n" +"Een voorwaardelijke opdracht uitveoren.\n" +"\n" +" Evalueert de gegeven conditionele expressie; afhankelijk van het " +"resultaat\n" " is de afsluitwaarde 0 (\"waar\") of 1 (\"onwaar\"). De expressies " "bestaan uit\n" -" dezelfde basiscomponenten als die gebruikt bij 'test', en kunnen worden\n" -" gecombineerd met de volgende operatoren:\n" +" dezelfde basiscomponenten als die van ingebouwde opdracht 'test', en " +"kunnen\n" +" worden gecombineerd met de volgende operatoren:\n" "\n" " ( EXPRESSIE ) de waarde van de gegeven expressie\n" " ! EXPRESSIE waar als EXPRESSIE onwaar is, anders onwaar\n" @@ -4207,15 +4698,19 @@ msgstr "" " EXPR1 || EXPR2 onwaar als beide expressies onwaar zijn, anders " "waar\n" "\n" -" Als '==' of '!=' als operator gebruikt wordt, wordt de rechter " +" Als '==' of '!=' als operator gebruikt wordt, dan wordt de rechter\n" +" tekenreeks als patroon begrepen en wordt patroonherkenning " +"uitgevoerd. Als '=~' als operator gebruikt wordt, dan wordt de rechter " "tekenreeks\n" -" als patroon begrepen en wordt patroonherkenning uitgevoerd.\n" +" als een reguliere expressie begrepen.\n" +"\n" " De operatoren '&&' en '||' evalueren de tweede expressie níét als de " "waarde\n" -" van de eerste voldoende is om het eindresulaat te bepalen." +" van de eerste voldoende is om het eindresulaat te bepalen. \n" +"\n" +" De afsluitwaarde is 0 of 1, afhankelijk van EXPRESSIE." -#: builtins.c:1675 -#, fuzzy +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4268,7 +4763,9 @@ msgid "" " HISTIGNORE\tA colon-separated list of patterns used to decide which\n" " \t\tcommands should be saved on the history list.\n" msgstr "" -"Hieronder volgt de beschrijving van een aantal variabelen. (In elke\n" +"De betekenis van enkele algemene shell-variabelen.\n" +"\n" +" Hieronder volgt de beschrijving van een aantal variabelen. (In elke\n" " lijst worden de elementen van elkaar gescheiden door dubbele punten.)\n" "\n" " BASH_VERSION versie-informatie van deze 'bash'\n" @@ -4304,9 +4801,30 @@ msgstr "" " SHELLOPTS lijst van ingeschakelde shell-opties\n" " TERM soortnaam van de huidige terminal\n" " TIMEFORMAT opmaakvoorschrift voor de uitvoer van 'time'\n" +" auto_resume niet-leeg betekent dat één opdrachtwoord op de " +"opdrachtregel\n" +" eerst opgezocht wordt in de lijst van gepauzeerde " +"taken,\n" +" en indien daar gevonden, dan wordt die taak in de " +"voorgrond\n" +" geplaatst; de waarde 'exact' betekent dat het gegeven " +"woord\n" +" exact moet overeenkomen met een opdracht in de lijst " +"van\n" +" gepauzeerde taken; de waarde 'substring' betekent dat " +"een\n" +" overeenkomst met een deeltekenreeks voldoende is; elke\n" +" andere waarde betekent dat het gegeven woord aan het " +"begin\n" +" moet staan van de opdracht van een gepauzeerde taak\n" +" histchars tekens die geschiedenisexpansie en -vervanging besturen;\n" +" het eerste teken is het geschiedenisvervangingsteken,\n" +" gewoonlijk '!'; het tweede teken is het snelle\n" +" vervangingsteken, gewoonlijk '^'; het derde teken is " +"het\n" +" geschiedeniscommentaarteken, gewoonlijk '#'\n" -#: builtins.c:1732 -#, fuzzy +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4336,23 +4854,31 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" -"Voegt een map toe aan de top van de mappenstapel, of roteert de stapel\n" +"Mappen aan de mappenstapel toevoegen.\n" +"\n" +" Voegt een map toe aan de top van de mappenstapel, of roteert de stapel\n" " en maakt de huidige werkmap gelijk aan de nieuwe top van de stapel.\n" " Zonder argumenten worden de bovenste twee mappen verwisseld.\n" "\n" -" -n Onderdrukt de verandering van map bij het toevoegen van mappen\n" -" aan de stapel, zodat enkel de stapel wordt gemanipuleerd.\n" -" MAP Voegt deze map toe aan de top van de mappenstapel, het de nieuwe\n" -" werkmap makend.\n" -" +N Roteert de stapel zodat de N-de map (tellend vanaf links, van\n" -" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" -" -N Roteert de stapel zodat de N-de map (tellend vanaf rechts, van\n" -" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +" Optie:\n" +" -n onderdrukt de verandering van map bij het toevoegen van mappen\n" +" aan de stapel, zodat enkel de stapel wordt gemanipuleerd\n" "\n" -" De opdracht 'dirs' geeft de huidige mappenstapel weer." +" Argumenten:\n" +" MAP Voegt deze map toe aan de top van de mappenstapel, het de nieuwe\n" +" werkmap makend.\n" +" +N Roteert de stapel zodat de N-de map (tellend vanaf links, van\n" +" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +" -N Roteert de stapel zodat de N-de map (tellend vanaf rechts, van\n" +" de lijst getoond door 'dirs', beginned bij nul) bovenaan komt.\n" +"\n" +" De ingebouwde opdracht 'dirs' toont de huidige mappenstapel.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldig argument gegeven werd of de\n" +" mapwijziging mislukte. De opdracht 'dirs' geeft de huidige " +"mappenstapel weer." -#: builtins.c:1766 -#, fuzzy +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4378,23 +4904,30 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" -"Verwijdert items van de mappenstapel. Zonder argumenten verwijdert\n" +"Mappen van de mappenstapel verwijderen.\n" +"\n" +" Verwijdert items van de mappenstapel. Zonder argumenten verwijdert\n" " het de bovenste map van de stapel, en maakt de huidige werkmap\n" " gelijk aan de nieuwe bovenste map.\n" "\n" -" -n Onderdrukt de verandering van map bij het toevoegen van mappen\n" -" aan de stapel, zodat enkel de stapel wordt gemanipuleerd.\n" -" +N Verwijdert het N-de item tellend vanaf links (van de lijst\n" -" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" -" 'popd +0' verwijdert de eerste map, 'popd +' de tweede.\n" -" -N Verwijdert het N-de item tellend vanaf rechts (van de lijst\n" -" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" -" 'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.\n" +" Optie:\n" +" -n onderdrukt de verandering van map bij het toevoegen van mappen\n" +" aan de stapel, zodat enkel de stapel wordt gemanipuleerd\n" "\n" -" De opdracht 'dirs' geeft de huidige mappenstapel weer." +" Argumenten:\n" +" +N Verwijdert het N-de item tellend vanaf links (van de lijst\n" +" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" +" 'popd +0' verwijdert de eerste map, 'popd +' de tweede.\n" +" -N Verwijdert het N-de item tellend vanaf rechts (van de lijst\n" +" getoond door 'dirs', beginnend met nul). Bijvoorbeeld:\n" +" 'popd -0' verwijdert de laatste map, 'popd -1' de voorlaatste.\n" +"\n" +" De ingebouwde opdracht 'dirs' toont de huidige mappenstapel.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldig argument gegeven werd of de\n" +" mapwijziging mislukte." -#: builtins.c:1796 -#, fuzzy +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4422,23 +4955,30 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Toont de huidige lijst van onthouden mappen. Mappen worden aan deze\n" +"De mappenstapel tonen.\n" +"\n" +" Toont de huidige lijst van onthouden mappen. Mappen worden aan deze\n" " lijst toegevoegd met de opdracht 'pushd', en verwijderd met 'popd'.\n" "\n" -" Met de optie -l worden paden niet afgekort (relatief ten opzichte\n" -" van uw thuismap) maar volledig weergegeven. Dit betekent dat\n" -" '~/bin' zal worden weergegeven als bijvoorbeeld '/home/jansen/bin'.\n" -" Optie -v geeft de mappenstapel weer met één item per regel, waarbij\n" -" elk item voorafgegeaan wordt door zijn positie in de stapel. Optie\n" -" -p doet hetzelfde als -v, maar dan zonder de stapelpositie.\n" -" Optie -c wist de mappenstapel door alle elementen te verwijderen.\n" +" Opties:\n" +" -c de mappenstapel wissen door alle elementen te verwijderen\n" +" -l paden volledig tonen, niet afgekort ten opzichte van uw thuismap\n" +" -p de mappenstapel tonen met één item per regel\n" +" -v als '-p', maar met elk item voorafgegeaan wordt door zijn " +"positie\n" +" in de stapel\n" "\n" -" +N Het N-de item tonen, tellend vanaf links, van de lijst getoond\n" -" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.\n" -" -N Het N-de item tonen, tellend vanaf rechts, van de lijst getoond\n" -" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul." +" Argumenten:\n" +" +N Het N-de item tonen, tellend vanaf links, van de lijst getoond\n" +" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.\n" +" -N Het N-de item tonen, tellend vanaf rechts, van de lijst getoond\n" +" door 'dirs' wanneer opgeroepen zonder opties, beginnend bij nul.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4458,9 +4998,30 @@ msgid "" " Returns success if OPTNAME is enabled; fails if an invalid option is\n" " given or OPTNAME is disabled." msgstr "" +"Shell-opties in- of uitschakelen.\n" +"\n" +" Stelt de waarde in elke gegeven OPTIENAAM -- van een shell-optie die\n" +" bepaald shell-gedrag beïnvloedt. Zonder opties wordt een lijst van " +"alle\n" +" instelbare opties getoond, met bij elke optie de vermelding of deze al\n" +" dan niet ingeschakeld is.\n" +"\n" +" Opties:\n" +" -o de verzameling mogelijke OPTIENAMEN naar diegene die " +"gedefinieerd\n" +" zijn voor gebruik met 'set -o'\n" +" -p uitvoer produceren die herbruikbaar is als invoer\n" +" -q uitvoer onderdrukken\n" +" -s elke gegeven OPTIENAAM inschakelen\n" +" -u elke gegeven OPTIENAAM uitschakelen\n" +"\n" +" Zonder opties is de afsluitwaarde 0 indien OPTIENAAM ingeschakeld is,\n" +" 1 indien uitgeschakeld. De afsluitwaarde is ook 1 als een ongeldige\n" +" optienaam gegeven werd, en de afsluitwaarde is 2 als een ongeldige " +"optie\n" +" gegeven werd." -#: builtins.c:1846 -#, fuzzy +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4489,8 +5050,15 @@ msgid "" "assignment\n" " error occurs." msgstr "" -"Print de gegeven argumenten, opgemaakt volgens het gegeven voorschrift.\n" -" De FORMAT-tekenreeks bestaat uit drie soorten tekens: gewone tekens,\n" +"Argumenten volgens een opmaakvoorschrift opmaken en printen.\n" +"\n" +" Print de gegeven ARGUMENTEN, opgemaakt volgens de gegeven OPMAAK.\n" +"\n" +" Optie:\n" +" -v VAR de uitvoer in de variabele VAR plaatsen in plaats van deze\n" +" naar standaarduitvoer te sturen\n" +"\n" +" De OPMAAK-tekenreeks bestaat uit drie soorten tekens: gewone tekens,\n" " die simpelweg naar standaarduitvoer gekopieerd worden; stuurtekens,\n" " die omgezet worden en dan naar standaarduitvoer gekopieerd worden;\n" " en opmaaksymbolen, die elk steeds het volgende argument doen printen.\n" @@ -4499,11 +5067,13 @@ msgstr "" " betekent %b dat de backslash-stuurtekens in het betreffende argument\n" " omgezet moeten worden, en betekent %q dat het argument op zo'n manier\n" " aangehaald moet worden dat het als invoer voor de shell hergebruikt\n" -" kan worden. Als de optie -v gegeven is, dan wordt de uitvoer in de\n" -" gegeven variabele VAR geplaatst in plaats van naar standaarduitvoer\n" -" geschreven." +" kan worden.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4524,9 +5094,26 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" +"Aangeven hoe argumenten door 'readline' gecompleteerd moeten worden.\n" +"\n" +" Geeft voor elke gegeven NAAM aan hoe de argumenten gecompleteerd dienen\n" +" te worden. Zonder opties worden de bestaande " +"completeringsvoorschriften\n" +" getoond (in een vorm die als invoer hergebruikt kan worden).\n" +"\n" +" Opties:\n" +" -p bestaande completeringsvoorschriften in herbruikbare vorm tonen\n" +" -r elk genoemd voorschrift verwijderen, of alle voorschriften als\n" +" geen NAAM gegeven is\n" +"\n" +" Als completering geprobeerd wordt, dan worden de acties toegepast in de\n" +" volgorde van de bovenstaande hoofdletteropties.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." -#: builtins.c:1896 -#, fuzzy +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -4538,12 +5125,17 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Toont de mogelijke completeringen, afhankelijk van de gegeven opties.\n" +"De mogelijke completeringen tonen, afhankelijk van de gegeven opties.\n" +"\n" " Bedoeld voor gebruik binnen een functie die mogelijke completeringen\n" -" genereert. Als het optionele argument WORD aanwezig is, worden alleen\n" -" de daarbij passende completeringen gegenereerd." +" genereert. Als het optionele argument WOORD aanwezig is, worden alleen\n" +" de daarbij passende completeringen gegenereerd.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of er " +"een\n" +" fout optreedt." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4571,8 +5163,31 @@ msgid "" " Returns success unless an invalid option is supplied or NAME does not\n" " have a completion specification defined." msgstr "" +"Completeringsopties wijzigen of tonen.\n" +"\n" +" Wijzigt de completeringsopties van elke gegeven NAAM, of als geen NAAM\n" +" gegeven is, die van de huidige completering. Als geen OPTIE gegeven " +"is,\n" +" dan worden de completeringsopties van elke gegeven NAAM getoond, of die\n" +" van de huidige completering.\n" +"\n" +" Optie:\n" +" -o OPTIE deze completeringsoptie inschakelen voor elke gegeven NAAM\n" +"\n" +" Het gebruik van '+o' i.p.v. '-o' schakelt de betreffende optie _uit_.\n" +"\n" +" Elke NAAM dient te refereren aan een opdracht waarvoor reeds een\n" +" completeringsvoorschrift gedefinieerd is via de opdracht 'complete'.\n" +" Als geen NAAM gegeven is, dan dient 'compopt' aangeroepen te worden " +"door\n" +" een functie die momenteel completeringen genereert; dan worden de " +"opties\n" +" voor die draaiende completeringsgenerator gewijzigd.\n" +"\n" +" De afsluitwaarde is 0, tenzij een ongeldige optie gegeven werd of voor\n" +" NAAM is geen completeringsvoorschrift gedefinieerd." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" @@ -4607,150 +5222,36 @@ msgid "" " Exit Status:\n" " Returns success unless an invald option is given or ARRAY is readonly." msgstr "" - -#~ msgid " " -#~ msgstr "<*onnodig*>" - -#~ msgid "Without EXPR, returns returns \"$line $filename\". With EXPR," -#~ msgstr "<*onnodig*>" - -#~ msgid "returns \"$line $subroutine $filename\"; this extra information" -#~ msgstr "<*onnodig*>" - -#~ msgid "can be used used to provide a stack trace." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "The value of EXPR indicates how many call frames to go back before the" -#~ msgstr "<*onnodig*>" - -#~ msgid "current one; the top frame is frame 0." -#~ msgstr "<*onnodig*>" +"Regels inlezen in een array-variabele.\n" +" \n" +" Leest regels van standaardinvoer in in the array-variabele ARRAY.\n" +" De variabele MAPFILE wordt gebruikt als geen ARRAY gegeven is. \n" +" Opties:\n" +" -n AANTAL maximaal dit aantal regels kopiëren (0 = alles)\n" +" -O BEGIN met toekennen beginnen bij deze index (standaard 0)\n" +" -s AANTAL dit aantal regels overslaan\n" +" -t nieuweregelteken aan eind van elke gelezen regel " +"verwijderen\n" +" -u BES.DES. uit deze bestandsdescriptor lezen i.p.v. uit " +"standaardinvoer\n" +" -C FUNCTIE deze functie evalueren na elke HOEVEELHEID regels\n" +" -c HOEVEELHEID het aantal te lezen regels voor elke aanroep van " +"FUNCTIE\n" +"n Argument:\n" +" ARRAY naam van array-variabele waarin regels ingelezen moeten " +"worden\n" +" \n" +" Als '-C' gegeven is zonder '-c', is de standaardHOEVEELHEID 5000.\n" +" \n" +" Als geen expliciet BEGIN gegeven is, wordt het array gewist alvorens\n" +" met toekennen te beginnen.\n" +" \n" +" De afsluitwaarde is 0, tenzij ARRAY alleen-lezen is of een ongeldige\n" +" optie gegeven werd." #~ msgid "%s: invalid number" #~ msgstr "%s: ongeldig getal" -#~ msgid "Shell commands matching keywords `" -#~ msgstr "Shell-opdrachten die overeenkomen met '" - -#~ msgid "Display the list of currently remembered directories. Directories" -#~ msgstr "<*onnodig*>" - -#~ msgid "find their way onto the list with the `pushd' command; you can get" -#~ msgstr "<*onnodig*>" - -#~ msgid "back up through the list with the `popd' command." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "The -l flag specifies that `dirs' should not print shorthand versions" -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "of directories which are relative to your home directory. This means" -#~ msgstr "<*onnodig*>" - -#~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr "<*onnodig*>" - -#~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "prepending the directory name with its position in the stack. The -p" -#~ msgstr "<*onnodig*>" - -#~ msgid "flag does the same thing, but the stack position is not prepended." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "The -c flag clears the directory stack by deleting all of the elements." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "+N displays the Nth entry counting from the left of the list shown by" -#~ msgstr "<*onnodig*>" - -#~ msgid " dirs when invoked without options, starting with zero." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "-N displays the Nth entry counting from the right of the list shown by" -#~ msgstr "<*onnodig*>" - -#~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "<*onnodig*>" - -#~ msgid "the stack, making the new top of the stack the current working" -#~ msgstr "<*onnodig*>" - -#~ msgid "directory. With no arguments, exchanges the top two directories." -#~ msgstr "<*onnodig*>" - -#~ msgid "+N Rotates the stack so that the Nth directory (counting" -#~ msgstr "<*onnodig*>" - -#~ msgid " from the left of the list shown by `dirs', starting with" -#~ msgstr "<*onnodig*>" - -#~ msgid " zero) is at the top." -#~ msgstr "<*onnodig*>" - -#~ msgid "-N Rotates the stack so that the Nth directory (counting" -#~ msgstr "<*onnodig*>" - -#~ msgid " from the right of the list shown by `dirs', starting with" -#~ msgstr "<*onnodig*>" - -#~ msgid "-n suppress the normal change of directory when adding directories" -#~ msgstr "<*onnodig*>" - -#~ msgid " to the stack, so only the stack is manipulated." -#~ msgstr "<*onnodig*>" - -#~ msgid "dir adds DIR to the directory stack at the top, making it the" -#~ msgstr "<*onnodig*>" - -#~ msgid " new current working directory." -#~ msgstr "<*onnodig*>" - -#~ msgid "You can see the directory stack with the `dirs' command." -#~ msgstr "<*onnodig*>" - -#~ msgid "Removes entries from the directory stack. With no arguments," -#~ msgstr "<*onnodig*>" - -#~ msgid "removes the top directory from the stack, and cd's to the new" -#~ msgstr "<*onnodig*>" - -#~ msgid "top directory." -#~ msgstr "<*onnodig*>" - -#~ msgid "+N removes the Nth entry counting from the left of the list" -#~ msgstr "<*onnodig*>" - -#~ msgid " shown by `dirs', starting with zero. For example: `popd +0'" -#~ msgstr "<*onnodig*>" - -#~ msgid " removes the first directory, `popd +1' the second." -#~ msgstr "<*onnodig*>" - -#~ msgid "-N removes the Nth entry counting from the right of the list" -#~ msgstr "<*onnodig*>" - -#~ msgid " shown by `dirs', starting with zero. For example: `popd -0'" -#~ msgstr "<*onnodig*>" - -#~ msgid " removes the last directory, `popd -1' the next to last." -#~ msgstr "<*onnodig*>" - -#~ msgid "" -#~ "-n suppress the normal change of directory when removing directories" -#~ msgstr "<*onnodig*>" - -#~ msgid " from the stack, so only the stack is manipulated." -#~ msgstr "<*onnodig*>" - #~ msgid "allocated" #~ msgstr "gereserveerd" @@ -4766,435 +5267,11 @@ msgstr "" #~ msgid "bug: unknown operation" #~ msgstr "**interne fout**: onbekende operatie" -#~ msgid "malloc: watch alert: %p %s " -#~ msgstr "malloc(): observatie: %p %s " - -#~ msgid "" -#~ "Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" -#~ " break N levels." -#~ msgstr "" -#~ "Beëindigt een 'for'-, 'while'- of 'until'-lus.\n" -#~ " Als N gegeven is, dan worden N niveaus van lussen beëindigd." - -#~ msgid "" -#~ "Run a shell builtin. This is useful when you wish to rename a\n" -#~ " shell builtin to be a function, but need the functionality of the\n" -#~ " builtin within the function itself." -#~ msgstr "" -#~ "Voert een ingebouwde shell-functie uit. Dit is handig als u de naam\n" -#~ " van een ingebouwde functie voor een eigen functie wilt gebruiken,\n" -#~ " maar toch de functionaliteit van de ingebouwde functie nodig hebt." - -#~ msgid "" -#~ "Print the current working directory. With the -P option, pwd prints\n" -#~ " the physical directory, without any symbolic links; the -L option\n" -#~ " makes pwd follow symbolic links." -#~ msgstr "" -#~ "Toont de huidige werkmap. Optie -P toont het werkelijke, fysieke pad,\n" -#~ " zonder symbolische koppelingen. Optie -L toont het pad zoals dat\n" -#~ " gevolgd is, inclusief eventuele symbolische koppelingen (standaard)." - -#~ msgid "Return a successful result." -#~ msgstr "Geeft afsluitwaarde 0, horend bij \"gelukt\"." - -#~ msgid "" -#~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell\n" -#~ " function called `ls', and you wish to call the command `ls', you can\n" -#~ " say \"command ls\". If the -p option is given, a default value is " -#~ "used\n" -#~ " for PATH that is guaranteed to find all of the standard utilities. " -#~ "If\n" -#~ " the -V or -v option is given, a string is printed describing " -#~ "COMMAND.\n" -#~ " The -V option produces a more verbose description." -#~ msgstr "" -#~ "Voert de gegeven opdracht uit met de gegeven argumenten, een eventueel\n" -#~ " gelijknamige shell-functie negerend. Als u bijvoorbeeld een functie\n" -#~ " met de naam 'ls' hebt gedefinieerd en u wilt het uitvoerbare bestand\n" -#~ " 'ls' aanroepen, dan kunt u de opdracht 'command ls' gebruiken.\n" -#~ "\n" -#~ " Met optie -p wordt een standaardwaarde voor PATH gebruikt, zodat " -#~ "alle\n" -#~ " standaardprogramma's gegarandeerd gevonden worden. Opties -v en -V\n" -#~ " tonen welke opdracht er precies uitgevoerd zou worden." - -#~ msgid "Obsolete. See `declare'." -#~ msgstr "Verouderd. Zie 'declare'." - -#~ msgid "" -#~ "Create a local variable called NAME, and give it VALUE. LOCAL\n" -#~ " can only be used within a function; it makes the variable NAME\n" -#~ " have a visible scope restricted to that function and its children." -#~ msgstr "" -#~ "Maakt een lokale variabele NAME aan, en kent deze de waarde VALUE toe.\n" -#~ " 'local' kan alleen binnen een functie gebruikt worden, en zorgt " -#~ "ervoor\n" -#~ " dat het geldigheidsbereik van de variable NAME beperkt wordt tot de\n" -#~ " betreffende functie en diens dochters." - #~ msgid "" #~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." #~ msgstr "" #~ "Schrijft de gegeven argumenten naar standaarduitvoer.\n" #~ " Optie -n onderdrukt de afsluitende nieuwe regel." -#~ msgid "" -#~ "Enable and disable builtin shell commands. This allows\n" -#~ " you to use a disk command which has the same name as a shell\n" -#~ " builtin without specifying a full pathname. If -n is used, the\n" -#~ " NAMEs become disabled; otherwise NAMEs are enabled. For example,\n" -#~ " to use the `test' found in $PATH instead of the shell builtin\n" -#~ " version, type `enable -n test'. On systems supporting dynamic\n" -#~ " loading, the -f option may be used to load new builtins from the\n" -#~ " shared object FILENAME. The -d option will delete a builtin\n" -#~ " previously loaded with -f. If no non-option names are given, or\n" -#~ " the -p option is supplied, a list of builtins is printed. The\n" -#~ " -a option means to print every builtin with an indication of whether\n" -#~ " or not it is enabled. The -s option restricts the output to the " -#~ "POSIX.2\n" -#~ " `special' builtins. The -n option displays a list of all disabled " -#~ "builtins." -#~ msgstr "" -#~ "Schakelt ingebouwde shell-opdrachten in of uit. Dit maakt het mogelijk\n" -#~ " om een bestand op schijf uit te voeren dat dezelfde naam heeft als " -#~ "een\n" -#~ " ingebouwde opdracht, zonder het volledige pad op te moeten geven.\n" -#~ "\n" -#~ " Met optie -n worden de genoemde opdrachten uitgeschakeld, anders\n" -#~ " ingeschakeld. Om bijvoorbeeld, in plaats van de ingebouwde 'test',\n" -#~ " het bestand 'test' te gebruiken dat zich in uw zoekpad PATH bevindt,\n" -#~ " typt u 'enable -n test'.\n" -#~ "\n" -#~ " Op systemen waar het dynamisch laden van bestanden mogelijk is, kan " -#~ "de\n" -#~ " optie -f gebruikt worden om nieuwe ingebouwde opdrachten te laden " -#~ "uit\n" -#~ " een gedeeld object. De optie -d verwijdert een met -f geladen " -#~ "opdracht.\n" -#~ "\n" -#~ " Met optie -p, of als er geen opdrachtnamen gegeven zijn, worden alle\n" -#~ " ingeschakelde ingebouwde opdrachten getoond. Met optie -a worden " -#~ "alle\n" -#~ " in- én uitgeschakelde ingebouwde opdrachten getoond. Optie -s " -#~ "beperkt\n" -#~ " de uitvoer tot de speciale POSIX.2 ingebouwde opdrachten. Met optie -" -#~ "n\n" -#~ " worden alleen de uitgeschakelde ingebouwde opdrachten getoond." - -#~ msgid "" -#~ "Read ARGs as input to the shell and execute the resulting command(s)." -#~ msgstr "" -#~ "Leest de gegeven argumenten als invoer voor de shell in, en voert de\n" -#~ " resulterende opdrachten uit." - -#~ msgid "" -#~ "Exec FILE, replacing this shell with the specified program.\n" -#~ " If FILE is not specified, the redirections take effect in this\n" -#~ " shell. If the first argument is `-l', then place a dash in the\n" -#~ " zeroth arg passed to FILE, as login does. If the `-c' option\n" -#~ " is supplied, FILE is executed with a null environment. The `-a'\n" -#~ " option means to make set argv[0] of the executed process to NAME.\n" -#~ " If the file cannot be executed and the shell is not interactive,\n" -#~ " then the shell exits, unless the shell option `execfail' is set." -#~ msgstr "" -#~ "Voert het gegeven bestand uit, deze shell vervangend door dat programma.\n" -#~ " Als er geen bestand gegeven is, dan worden de gegeven omleidingen " -#~ "van\n" -#~ " kracht voor deze shell zelf. Optie -l plaatst een liggend streepje " -#~ "in\n" -#~ " het nulde argument dat aan BESTAND meegegeven wordt, net zoals " -#~ "'login'\n" -#~ " doet. Optie -c zorgt ervoor dat het BESTAND uitgevoerd met een " -#~ "lege\n" -#~ " omgeving. Optie -a stelt argv[0] in op de gegeven NAAM. Als het\n" -#~ " bestand niet kan worden uitgevoerd en de shell is niet interactief,\n" -#~ " dan sluit de shell af, tenzij de shell-optie 'execfail' aan staat." - #~ msgid "Logout of a login shell." #~ msgstr "Beëindigt een login-shell." - -#~ msgid "" -#~ "For each NAME, the full pathname of the command is determined and\n" -#~ " remembered. If the -p option is supplied, PATHNAME is used as the\n" -#~ " full pathname of NAME, and no path search is performed. The -r\n" -#~ " option causes the shell to forget all remembered locations. The -d\n" -#~ " option causes the shell to forget the remembered location of each " -#~ "NAME.\n" -#~ " If the -t option is supplied the full pathname to which each NAME\n" -#~ " corresponds is printed. If multiple NAME arguments are supplied " -#~ "with\n" -#~ " -t, the NAME is printed before the hashed full pathname. The -l " -#~ "option\n" -#~ " causes output to be displayed in a format that may be reused as " -#~ "input.\n" -#~ " If no arguments are given, information about remembered commands is " -#~ "displayed." -#~ msgstr "" -#~ "Bepaalt en onthoudt voor elke gegeven opdracht het volledige pad.\n" -#~ " Met optie -p kan het volledige pad rechtstreeks opgegeven worden en\n" -#~ " wordt er niet naar de opdracht gezocht. Optie -d doet de shell de\n" -#~ " paden van de genoemde opdrachten vergeten; optie -r doet de shell\n" -#~ " alle paden vergeten. Optie -t toont het onthouden pad voor elke\n" -#~ " gegeven naam. Met optie -l wordt de uitvoer gemaakt in een vorm\n" -#~ " die hergebruikt kan worden als invoer. Als er geen argumenten\n" -#~ " gegeven zijn, wordt informatie over de onthouden paden getoond." - -#~ msgid "" -#~ "Display helpful information about builtin commands. If PATTERN is\n" -#~ " specified, gives detailed help on all commands matching PATTERN,\n" -#~ " otherwise a list of the builtins is printed. The -s option\n" -#~ " restricts the output for each builtin command matching PATTERN to\n" -#~ " a short usage synopsis." -#~ msgstr "" -#~ "Toont nuttige informatie over de ingebouwde opdrachten van de shell.\n" -#~ " Als er een PATROON gegeven is, dan wordt gedetailleerde hulp getoond\n" -#~ " over alle opdrachten die aan dit PATROON voldoen. Optie -s beperkt " -#~ "de\n" -#~ " uitvoer tot een beknopt gebruiksbericht. Als er geen PATROON " -#~ "gegeven\n" -#~ " is, dan wordt een lijst van alle ingebouwde opdrachten getoond." - -#~ msgid "" -#~ "By default, removes each JOBSPEC argument from the table of active jobs.\n" -#~ " If the -h option is given, the job is not removed from the table, but " -#~ "is\n" -#~ " marked so that SIGHUP is not sent to the job if the shell receives a\n" -#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove " -#~ "all\n" -#~ " jobs from the job table; the -r option means to remove only running " -#~ "jobs." -#~ msgstr "" -#~ "Verwijdert de gegeven taken uit de tabel met actieve taken. Als optie\n" -#~ " -h gegeven is, dan worden de taken niet uit de tabel verwijderd maar\n" -#~ " zodanig gemarkeerd dat deze geen SIGHUP krijgen wanneer de shell een\n" -#~ " SIGHUP krijgt. Als er geen taken gegeven zijn, verwijdert optie -a\n" -#~ " alle taken uit de tabel. Optie -r verwijdert alleen draaiende taken." - -#~ msgid "" -#~ "Causes a function to exit with the return value specified by N. If N\n" -#~ " is omitted, the return status is that of the last command." -#~ msgstr "" -#~ "Doet een functie afsluiten met een afsluitwaarde van N.\n" -#~ " Zonder N is de afsluitwaarde die van de laatst uitgevoerde opdracht." - -#~ msgid "" -#~ "For each NAME, remove the corresponding variable or function. Given\n" -#~ " the `-v', unset will only act on variables. Given the `-f' flag,\n" -#~ " unset will only act on functions. With neither flag, unset first\n" -#~ " tries to unset a variable, and if that fails, then tries to unset a\n" -#~ " function. Some variables cannot be unset; also see readonly." -#~ msgstr "" -#~ "Verwijdert de genoemde variabelen of functies. Met optie -v worden\n" -#~ " alleen variabelen verwijdert, met optie -f alleen functies. Zonder\n" -#~ " opties zal 'unset' eerst een variabele proberen te verwijderen, en\n" -#~ " als dat niet lukt, dan een functie. Sommige variabelen kunnen niet\n" -#~ " verwijderd worden; zie ook 'readonly'." - -#~ msgid "" -#~ "NAMEs are marked for automatic export to the environment of\n" -#~ " subsequently executed commands. If the -f option is given,\n" -#~ " the NAMEs refer to functions. If no NAMEs are given, or if `-p'\n" -#~ " is given, a list of all names that are exported in this shell is\n" -#~ " printed. An argument of `-n' says to remove the export property\n" -#~ " from subsequent NAMEs. An argument of `--' disables further option\n" -#~ " processing." -#~ msgstr "" -#~ "Markeert de gegeven namen voor automatische export naar de omgeving\n" -#~ " van latere opdrachten. Met optie -n wordt voor de gegeven namen de\n" -#~ " markering juist verwijderd. Met optie -f verwijzen de namen alleen\n" -#~ " naar functies. Als er geen namen gegeven zijn, of alleen optie -p,\n" -#~ " dan wordt een lijst van alle te exporteren namen getoond." - -#~ msgid "" -#~ "The given NAMEs are marked readonly and the values of these NAMEs may\n" -#~ " not be changed by subsequent assignment. If the -f option is given,\n" -#~ " then functions corresponding to the NAMEs are so marked. If no\n" -#~ " arguments are given, or if `-p' is given, a list of all readonly " -#~ "names\n" -#~ " is printed. The `-a' option means to treat each NAME as\n" -#~ " an array variable. An argument of `--' disables further option\n" -#~ " processing." -#~ msgstr "" -#~ "Markeert de gegeven namen als alleen-lezen, zodat de waarde van deze\n" -#~ " namen niet meer veranderd kan worden door een latere toewijzing.\n" -#~ "\n" -#~ " Met optie -a wordt elke naam als een array-variabele behandeld, met\n" -#~ " optie -f verwijzen de namen alleen naar functies. Als er geen namen\n" -#~ " gegeven zijn, of alleen optie -p, dan wordt een lijst van alle\n" -#~ " alleen-lezen namen getoond." - -#~ msgid "" -#~ "The positional parameters from $N+1 ... are renamed to $1 ... If N is\n" -#~ " not given, it is assumed to be 1." -#~ msgstr "" -#~ "De positionele parameters $N+1,$N+2,... worden hernoemd naar $1,$2,...\n" -#~ " Als N niet gegeven is, wordt de waarde 1 aangenomen." - -#~ msgid "" -#~ "Suspend the execution of this shell until it receives a SIGCONT\n" -#~ " signal. The `-f' if specified says not to complain about this\n" -#~ " being a login shell if it is; just suspend anyway." -#~ msgstr "" -#~ "De uitvoering van deze shell pauzeren totdat een SIGCONT-signaal\n" -#~ " ontvangen wordt. Als optie -f gegeven is, wordt er niet geklaagd\n" -#~ " dat dit een login-shell is, maar wordt er gewoon gepauzeerd." - -#~ msgid "" -#~ "Print the accumulated user and system times for processes run from\n" -#~ " the shell." -#~ msgstr "" -#~ "Geeft de totaal verbruikte gebruikers- en systeemtijd weer; eerst de\n" -#~ " tijden verbruikt door de shell zelf, en daaronder de tijden " -#~ "verbruikt\n" -#~ " door de processen uitgevoerd door de shell." - -#~ msgid "" -#~ "For each NAME, indicate how it would be interpreted if used as a\n" -#~ " command name.\n" -#~ " \n" -#~ " If the -t option is used, `type' outputs a single word which is one " -#~ "of\n" -#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is " -#~ "an\n" -#~ " alias, shell reserved word, shell function, shell builtin, disk " -#~ "file,\n" -#~ " or unfound, respectively.\n" -#~ " \n" -#~ " If the -p flag is used, `type' either returns the name of the disk\n" -#~ " file that would be executed, or nothing if `type -t NAME' would not\n" -#~ " return `file'.\n" -#~ " \n" -#~ " If the -a flag is used, `type' displays all of the places that " -#~ "contain\n" -#~ " an executable named `file'. This includes aliases, builtins, and\n" -#~ " functions, if and only if the -p flag is not also used.\n" -#~ " \n" -#~ " The -f flag suppresses shell function lookup.\n" -#~ " \n" -#~ " The -P flag forces a PATH search for each NAME, even if it is an " -#~ "alias,\n" -#~ " builtin, or function, and returns the name of the disk file that " -#~ "would\n" -#~ " be executed." -#~ msgstr "" -#~ "Toont voor elke gegeven naam: hoe deze zou worden geïnterpreteerd als\n" -#~ " deze als opdracht gebruikt zou worden.\n" -#~ "\n" -#~ " Met optie -a wordt voor elke opgegeven naam alle mogelijkheden " -#~ "getoond,\n" -#~ " niet alleen de eerste. Dit omvat aliassen, ingebouwde shell-" -#~ "opdrachten,\n" -#~ " functies, sleutelwoorden, en bestanden op schijf.\n" -#~ "\n" -#~ " Met optie -f worden functies genegeerd, alsof ze niet gedefinieerd " -#~ "zijn.\n" -#~ "\n" -#~ " Met optie -p wordt voor elke opgegeven naam het volledige pad getoond " -#~ "van\n" -#~ " het bestand dat uitgevoerd zou worden, of niets als er een alias, " -#~ "functie,\n" -#~ " ingebouwde shell-opdracht, of sleutelwoord met die naam is.\n" -#~ "\n" -#~ " Met optie -P wordt voor elke opgegeven naam in het huidige zoekpad " -#~ "(PATH)\n" -#~ " gezocht, en wordt het volledige pad van het bestand getoond dat " -#~ "uitgevoerd\n" -#~ " zou worden. Eventuele aliassen, ingebouwde shell-opdrachten, " -#~ "functies en\n" -#~ " sleutelwoorden worden genegeerd.\n" -#~ "\n" -#~ " Met optie -t wordt enkel het type van de opgegeven namen getoond: " -#~ "'alias',\n" -#~ " 'builtin', 'file', 'function' of 'keyword', al naar gelang het een " -#~ "alias,\n" -#~ " een ingebouwde shell-opdracht, een bestand op schijf, een " -#~ "gedefinieerde\n" -#~ " functie, of een sleutelwoord betreft; of niets als de naam onbekend " -#~ "is." - -#~ msgid "" -#~ "The user file-creation mask is set to MODE. If MODE is omitted, or if\n" -#~ " `-S' is supplied, the current value of the mask is printed. The `-" -#~ "S'\n" -#~ " option makes the output symbolic; otherwise an octal number is " -#~ "output.\n" -#~ " If `-p' is supplied, and MODE is omitted, the output is in a form\n" -#~ " that may be used as input. If MODE begins with a digit, it is\n" -#~ " interpreted as an octal number, otherwise it is a symbolic mode " -#~ "string\n" -#~ " like that accepted by chmod(1)." -#~ msgstr "" -#~ "Stelt het bestandsaanmaakmasker van de gebruiker in op de gegeven modus.\n" -#~ " Als de gegeven modus begint met een cijfer, wordt het " -#~ "geïnterpreteerd\n" -#~ " als een octaal getal, anders als een symbolische modus-tekenreeks " -#~ "zoals\n" -#~ " chmod (1) die aanvaardt. Als er geen modus gegeven is, wordt de " -#~ "huidige\n" -#~ " waarde van het masker getoond; normaal als een octaal getal, maar " -#~ "met\n" -#~ " optie -S in symbolische vorm; met optie -p is de uitvoer zodanig dat\n" -#~ " deze als invoer hergebruikt kan worden." - -#~ msgid "" -#~ "Wait for the specified process and report its termination status. If\n" -#~ " N is not given, all currently active child processes are waited for,\n" -#~ " and the return code is zero. N is a process ID; if it is not given,\n" -#~ " all child processes of the shell are waited for." -#~ msgstr "" -#~ "Wacht op het gegeven proces en rapporteert diens afsluitwaarde.\n" -#~ " Als er geen argument gegeven is, dan wordt er gewacht op alle " -#~ "actieve\n" -#~ " dochterprocessen, en is de afsluitwaarde van 'wait' automatisch 0.\n" -#~ " Het argument dient een proces-ID te zijn." - -#~ msgid "" -#~ "Create a simple command invoked by NAME which runs COMMANDS.\n" -#~ " Arguments on the command line along with NAME are passed to the\n" -#~ " function as $0 .. $n." -#~ msgstr "" -#~ "Maakt een eenvoudige opdracht aan die met NAME aangeroepen kan worden\n" -#~ " en die de gegeven opdrachten uitvoert. Argumenten op de " -#~ "opdrachtregel\n" -#~ " worden samen met NAME aan de functie doorgegeven als $0...$N." - -#~ msgid "" -#~ "Toggle the values of variables controlling optional behavior.\n" -#~ " The -s flag means to enable (set) each OPTNAME; the -u flag\n" -#~ " unsets each OPTNAME. The -q flag suppresses output; the exit\n" -#~ " status indicates whether each OPTNAME is set or unset. The -o\n" -#~ " option restricts the OPTNAMEs to those defined for use with\n" -#~ " `set -o'. With no options, or with the -p option, a list of all\n" -#~ " settable options is displayed, with an indication of whether or\n" -#~ " not each is set." -#~ msgstr "" -#~ "Schakelt de waarde om van variabelen die optioneel gedrag bepalen.\n" -#~ " Optie -s schakelt elke gegeven OPTIENAAM in, optie -u schakelt elke\n" -#~ " gegeven OPTIENAAM uit. Optie -q onderdrukt de uitvoer; alleen de\n" -#~ " afsluitwaarde wijst uit of OPTIENAAM in- of uitgeschakeld is.\n" -#~ "\n" -#~ " De optie -o verschuift de verzameling mogelijke OPTIENAMEN naar " -#~ "diegene\n" -#~ " die gedefinieerd zijn voor gebruik met 'set -o'. Zonder opties, of " -#~ "met\n" -#~ " de optie -p, wordt een lijst van alle instelbare opties getoond, met " -#~ "bij\n" -#~ " elke optie de vermelding of deze al dan niet ingeschakeld is." - -#~ msgid "" -#~ "For each NAME, specify how arguments are to be completed.\n" -#~ " If the -p option is supplied, or if no options are supplied, " -#~ "existing\n" -#~ " completion specifications are printed in a way that allows them to " -#~ "be\n" -#~ " reused as input. The -r option removes a completion specification " -#~ "for\n" -#~ " each NAME, or, if no NAMEs are supplied, all completion " -#~ "specifications." -#~ msgstr "" -#~ "Specificeert, voor elke gegeven NAME, hoe de argumenten gecompleteerd\n" -#~ " moeten worden. Met optie -p, of als er geen opties gegeven zijn, " -#~ "worden\n" -#~ " de bestaande completeringsvoorschriften getoond (in een vorm die als\n" -#~ " invoer hergebruikt kan worden). De optie -r verwijdert elk genoemd\n" -#~ " voorschrift, of alle voorschriften als er geen NAME gegeven is." diff --git a/po/pl.gmo b/po/pl.gmo index f4ba020d237c52da1f8aee385be8c963a9063299..d44612ec32b838faff2503586b8648b17ac5e8f5 100644 GIT binary patch delta 25 hcmZ2^nsMc6#tn>CT$Z{CTo$@UrV56JR))r#xvl1D0|0Jz2aNy# diff --git a/po/pl.po b/po/pl.po index 30232645..fbb812c8 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2007-11-30 08:49+0100\n" "Last-Translator: Andrzej M. Krzysztofowicz \n" "Language-Team: Polish \n" @@ -15,26 +15,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "nieprawidowy indeks tablicy" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: nieprawidowa nazwa akcji" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nie mona przypisa do nienumerycznego indeksu" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -66,33 +66,33 @@ msgid "%s: missing colon separator" msgstr "%s: brak separujcego dwukropka" # ??? -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "`%s': nieprawidowa nazwa mapy klawiszy" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: nie mona odczyta: %s" # ??? -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "`%s': nie mona usun dowizania" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s': nie znana nazwa funkcji" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s nie jest przypisany do adnego klawisza.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s moe by wywoany przez " @@ -242,12 +242,12 @@ msgstr "%s: nie jest to polecenie pow msgid "write error: %s" msgstr "bd zapisu: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: bd przy okrelaniu katalogu biecego: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: niejednoznaczne okrelenie zadania" @@ -283,7 +283,7 @@ msgstr "mo msgid "cannot use `-f' to make functions" msgstr "nie mona uywa `-f' do tworzenia funkcji" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funkcja tylko do odczytu" @@ -322,7 +322,7 @@ msgstr "%s: nie jest msgid "%s: cannot delete: %s" msgstr "%s: nie mona usun: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -338,7 +338,7 @@ msgstr "%s: nie jest zwyk msgid "%s: file is too large" msgstr "%s: plik jest za duy" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nie mona uruchomi pliku binarnego" @@ -463,7 +463,7 @@ msgstr "nie mo msgid "history position" msgstr "pozycja historii" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: rozwinicie wg historii nie powiodo si" @@ -490,12 +490,12 @@ msgstr "Nieznany b msgid "expression expected" msgstr "spodziewano si wyraenia" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: nieprawidowo okrelony deskryptor pliku" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: nieprawidowy deskryptor pliku: %s" @@ -685,17 +685,17 @@ msgstr "" " \n" " Zawarto stosu katalogw mona zobaczy za pomoc polecenia `dirs'." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: nieprawidowo okrelony timeout" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "bd odczytu: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "wyjcie przez `return' moliwe tylko z funkcji lub skryptu" @@ -869,37 +869,37 @@ msgstr "%s: nieustawiona zmienna" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aprzekroczony czas oczekiwania na dane wejciowe: auto-wylogowanie\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "nie mona przekierowa standardowego wejcia z /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': nieprawidowy znak formatujcy" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "bd zapisu: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: ograniczony: nie mona podawa `/' w nazwach polece" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: nie znaleziono polecenia" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: zy interpreter" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nie mona skopiowa deskryptora pliku %d do %d" @@ -976,7 +976,7 @@ msgstr "%s: oczekiwano wyra msgid "getcwd: cannot access parent directories" msgstr "getcwd: niemoliwy dostp do katalogw nadrzdnych" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nie mona wyczy trybu nieblokujcego dla deskryptora %d" @@ -991,145 +991,145 @@ msgstr "nie mo msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: bufor dla nowego deskryptora %d ju istnieje" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" # ??? -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "proces o PID %d wystpuje w dziaajcym zadaniu %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "usuwanie zatrzymanego zadania %d z grup procesw %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: brak takiego PID-u" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: PID %ld nie jest potomkiem tej powoki" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Brak rekordu dla procesu %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: zadanie %d jest zatrzymane" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: zadanie zostao przerwane" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: zadanie %d ju pracuje w tle" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: uwaga: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "w tej powoce nie ma kontroli zada" @@ -1384,31 +1384,31 @@ msgstr "cprintf: `%c': nieprawid msgid "file descriptor out of range" msgstr "deskryptor pliku poza zakresem" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: nieojednoznaczne przekierowanie" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: nie mona nadpisa istniejcego pliku" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: ograniczony: nie mona przekierowa wyjcia" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "nie mona utworzy pliku tymczasowego dla dokumentu miejscowego: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port nie s wspierane bez sieci" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "bd przekierowania: nie mona powieli deskryptora pliku" @@ -1479,7 +1479,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Do zgaszania bdw naley uywa polecenia `bashbug'.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: nieprawidowa operacja" @@ -1655,77 +1655,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "ze podstawienie: brak zamykajcego `%s' w %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nie mona przypisa listy do elementu tablicy" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "nie mona utworzy potoku dla podstawienia procesu" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "nie mona utworzy procesu potomnego dla podstawienia procesu" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nie mona otworzy nazwanego potoku %s do odczytu" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nie mona otworzy nazwanego potoku %s do zapisu" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nie mona powieli nazwanego potoku %s jako deskryptor %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "nie mona utworzy potoku dla podstawienia polecenia" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "nie mona utworzy procesu potomnego dla podstawienia polecenia" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nie mona powieli potoku jako deskryptora 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametr pusty lub nieustawiony" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: wyraenie dla podacucha < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: ze podstawienie" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nie mona przypisywa w ten sposb" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "ze podstawienie: brak zamykajcego `%s' w %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "brak pasujcego: %s" @@ -1762,16 +1762,16 @@ msgstr "%s: oczekiwano operatora dwuargumentowego" msgid "missing `]'" msgstr "brakujcy `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "nieprawidowy numer sygnau" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: za warto trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" @@ -1779,7 +1779,7 @@ msgstr "" "run_pending_traps: obsuga sygnau jest ustawiona na SIG_DFL, wysyajc %d (%" "s) do siebie" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: zy sygna %d" @@ -1794,33 +1794,33 @@ msgstr "b msgid "shell level (%d) too high, resetting to 1" msgstr "poziom powoki (%d) jest za duy, ustawiono na 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: brak kontekstu funkcji w biecym zakresie" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: brak kontekstu funkcji w biecym zakresie" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "nieprawidowy znak %d w exportstr dla %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "brak `=' w exportstr dla %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: nagwek shell_variables poza kontekstem funkcji" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: brak kontekstu global_variables" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: nagwek shell_variables poza zakresem tymczasowego rodowiska" @@ -3154,8 +3154,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3188,7 +3189,7 @@ msgstr "" "deskryptor\n" " pliku." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3200,7 +3201,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3368,7 +3369,7 @@ msgstr "" " pozycyjnymi i s one przypisane, kolejno, do $1, $2, .. $n. Gdy nie\n" " zostan podane adne argumenty, wypisywane s wszystkie zmienne powoki." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3388,7 +3389,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3407,7 +3408,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3427,7 +3428,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3438,7 +3439,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3457,7 +3458,7 @@ msgstr "" " w $PATH. Jeli podane zostan jakiekolwiek ARGUMENTS, staj si\n" " parametrami pozycyjnymi podczas uruchomienia FILENAME." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3471,7 +3472,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3626,7 +3627,7 @@ msgstr "" " rwny, nierwny, mniejszy ni, mniejszy lub rwny, wikszy ni lub\n" " wikszy lub rwny arg2." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3637,7 +3638,7 @@ msgstr "" "Jest to synonim dla wbudowanego polecenia \"test\", ale wymagajcy, by\n" " ostatnim argumentem by `]' pasujcy do pocztkowego `['." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3649,7 +3650,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3705,7 +3706,7 @@ msgstr "" " nazw sygnaw wraz z odpowiadajcymi im numerami. Naley zauway, e\n" " sygna mona wysa do powoki poleceniem \"kill -signal $$\"." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3735,7 +3736,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3816,7 +3817,7 @@ msgstr "" " -p, ktre jest w jednostkach 512-bajtowych oraz -u, ktre jest\n" " bezwymiarow liczb procesw." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3834,7 +3835,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3851,7 +3852,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -3871,7 +3872,7 @@ msgstr "" " procesu lub specyfikacj zadania; gdy jest specyfikacj zadania,\n" " oczekiwanie dotyczy wszystkich procesw w potoku zadania." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -3890,7 +3891,7 @@ msgstr "" " Dla kadego elementu WORDS, NAME jest ustawiane na ten element\n" " i uruchamiane s COMMANDS." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -3916,7 +3917,7 @@ msgstr "" " EXP1, EXP2 i EXP3 s wyraeniami arytmetycznymi. Jeli ktre z wyrae\n" " zostanie pominite, zachowanie jest takie, jaby miao ono warto 1." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -3949,7 +3950,7 @@ msgstr "" " wiersz jest zachowywany w zmiennej REPLY. Po kadym wyborze uruchamiane\n" " s polecenia COMMANDS a do polecenia break." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -3976,7 +3977,7 @@ msgstr "" " podsumowania czasw w nieco innej postaci. Uywana jest wtedy warto\n" " zmiennej TIMEFORMAT jako format danych wyjciowych." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -3991,7 +3992,7 @@ msgstr "" "pasuje\n" " do wzorca PATTERN. Znak `|' suy do rozdzielania wielu wzorcw." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4022,7 +4023,7 @@ msgstr "" " uruchomionego polecenia lub zero, gdy aden ze sprawdzanych warunkw\n" " nie by prawdziwy." -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4036,7 +4037,7 @@ msgstr "" "Rozwijanie i uruchamianie polece COMMANDS tak dugo, dopki ostatnie\n" " polecenie w `while' COMMANDS koczy si z kodem zero." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4050,7 +4051,7 @@ msgstr "" "Rozwijanie i uruchamianie polece COMMANDS tak dugo, dopki ostatnie\n" " polecenie w `until' COMMANDS koczy si z kodem niezerowym." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4064,7 +4065,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4078,7 +4079,7 @@ msgstr "" "Uruchomienie zbioru polece jako grupy. W ten sposb mona przekierowa\n" " cay zbir polece." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4099,7 +4100,7 @@ msgstr "" "dla\n" " `bg'." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4113,7 +4114,7 @@ msgstr "" "Obliczenie wyraenia EXPRESSION zgodnie z zasadami obliczania wyrae\n" " arytmetycznych. Rwnowane \"let EXPRESSION\"." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4162,7 +4163,7 @@ msgstr "" " wzorca. Operatory && i || nie opliczaj EXPR2, jeli obliczenie EXPR1\n" " wystarcza do okrelenia wartoci wyraenia." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4216,7 +4217,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4265,7 +4266,7 @@ msgstr "" " \n" " Zawarto stosu katalogw mona zobaczy za pomoc polecenia `dirs'." -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4309,7 +4310,7 @@ msgstr "" " \n" " Zawarto stosu katalogw mona zobaczy za pomoc polecenia `dirs'." -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4358,7 +4359,7 @@ msgstr "" " -N\tWypisanie N-tej pozycji liczc od prawej strony listy wypisywanej\n" " \tprzez dirs wywoane bez opcji, poczwszy od zera." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4379,7 +4380,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4409,7 +4410,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4431,7 +4432,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4449,7 +4450,7 @@ msgstr "" " Gdy podany jest opcjonalny argument WORD, generowane s uzupenienia\n" " pasujce do WORD." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4478,7 +4479,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo index 60b81e34e8e535db0a11b22966c26f09aa42588f..2519849a67a0dad9647734bba80070d66ca9b1e9 100644 GIT binary patch delta 23 fcmX@+d(3ykD={uhT_Y0(LqjVQ%gtZJF7X2ZYx@Xv delta 23 fcmX@+d(3ykD={t$T_aNkLqjV=\n" "Language-Team: Brazilian Portuguese \n" @@ -15,26 +15,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "ndice da matriz (array) incorreto" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: opo incorreta" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: impossvel atribuir a ndice no numrico" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -63,32 +63,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: impossvel criar: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: comando no encontrado" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s: funo somente para leitura" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -241,12 +241,12 @@ msgstr "" msgid "write error: %s" msgstr "erro de `pipe': %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: Redirecionamento ambguo" @@ -283,7 +283,7 @@ msgstr "somente pode ser usado dentro de fun msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funo somente para leitura" @@ -322,7 +322,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: impossvel criar: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -338,7 +338,7 @@ msgstr "%s: imposs msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: impossvel executar o arquivo binrio" @@ -452,7 +452,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s: esperado expresso de nmero inteiro" @@ -480,12 +480,12 @@ msgstr "Erro desconhecido %d" msgid "expression expected" msgstr "esperado uma expresso" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -622,17 +622,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "erro de `pipe': %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -814,37 +814,37 @@ msgstr "" "%ctempo limite de espera excedido aguardando entrada:\n" "fim automtico da sesso\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "erro de `pipe': %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restrio: no permitido especificar `/' em nomes de comandos" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: comando no encontrado" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: um diretrio" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "impossvel duplicar fd (descritor de arquivo) %d para fd 0: %s" @@ -923,7 +923,7 @@ msgstr "%s: esperado express msgid "getcwd: cannot access parent directories" msgstr "getwd: impossvel acessar os diretrios pais (anteriores)" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "impossvel duplicar fd (descritor de arquivo) %d para fd 0: %s" @@ -942,147 +942,147 @@ msgstr "" "check_bash_input: j existe o espao intermedirio (buffer)\n" "para o novo descritor de arquivo (fd) %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: o identificador do processo (pid) no existe (%d)!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Sinal desconhecido #%d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Concludo" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Parado" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Parado" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Executando" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Concludo(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Fim da execuo com status %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Status desconhecido" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(imagem do ncleo gravada)" -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(wd agora: %s)\n" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "`setpgid' filho (%d para %d) erro %d: %s\n" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: o pid %d no um filho deste `shell'" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: o trabalho terminou" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "encaixe (slot) %3d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (imagem do ncleo gravada)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd agora: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp falhou: %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: disciplina da linha: %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp falhou: %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "nenhum controle de trabalho nesta `shell'" @@ -1341,31 +1341,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: Redirecionamento ambguo" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: Impossvel sobrescrever arquivo existente" -#: redir.c:155 +#: redir.c:156 #, fuzzy, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: restrio: no permitido especificar `/' em nomes de comandos" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "impossvel criar `pipe' para a substituio do processo: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "erro de redirecionamento" @@ -1438,7 +1438,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1613,86 +1613,86 @@ msgstr "Sinal desconhecido #" msgid "Unknown Signal #%d" msgstr "Sinal desconhecido #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substituio incorreta: nenhum `%s' em %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: impossvel atribuir uma lista a um membro de uma matriz (array)" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "impossvel criar `pipe' para a substituio do processo: %s" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "impossvel criar um processo filho para a substituio do processo: %s" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "impossvel abrir o `named pipe' %s para %s: %s" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "impossvel abrir o `named pipe' %s para %s: %s" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "impossvel duplicar o `named pipe' %s\n" "como descritor de arquivo (fd) %d: %s" -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "impossvel construir `pipes' para substituio do comando: %s" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "impossvel criar um processo filho para substituio do comando: %s" -#: subst.c:4808 +#: subst.c:4811 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute: impossvel duplicar o `pipe' como\n" "descritor de arquivo (fd) 1: %s" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parmetro nulo ou no inicializado" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresso de substring < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: substituio incorreta" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: impossvel atribuir desta maneira" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substituio incorreta: nenhum `%s' em %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1729,23 +1729,23 @@ msgstr "%s: esperado operador bin msgid "missing `]'" msgstr "faltando `]'" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "nmero do sinal incorreto" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, fuzzy, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Sinal incorreto %d" @@ -1760,33 +1760,33 @@ msgstr "erro ao importar a defini msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2948,8 +2948,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2958,7 +2959,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2970,7 +2971,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3052,7 +3053,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3072,7 +3073,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3091,7 +3092,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3111,7 +3112,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3122,7 +3123,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3136,7 +3137,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3150,7 +3151,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3227,7 +3228,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3236,7 +3237,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "argumento deve ser o literal `]', para fechar o `[' de abertura." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3248,7 +3249,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3284,7 +3285,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3314,7 +3315,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3358,7 +3359,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3376,7 +3377,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3393,7 +3394,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3407,7 +3408,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3420,7 +3421,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3437,7 +3438,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3457,7 +3458,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3473,7 +3474,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -3486,7 +3487,7 @@ msgid "" msgstr "" "Executar seletivamente COMANDOS tomando por base a correspondncia entre" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3507,7 +3508,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -3519,7 +3520,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Expande e executa COMANDOS enquanto o comando final nos" -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -3531,7 +3532,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Expande e executa COMANDOS enquanto o comando final nos" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3545,7 +3546,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -3557,7 +3558,7 @@ msgid "" " Returns the status of the last command executed." msgstr "Executa um conjunto de comandos agrupando-os. Esta uma forma de" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3571,7 +3572,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3582,7 +3583,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3610,7 +3611,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3664,7 +3665,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3695,7 +3696,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3722,7 +3723,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3751,7 +3752,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3772,7 +3773,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3802,7 +3803,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3824,7 +3825,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3837,7 +3838,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3866,7 +3867,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/ro.gmo b/po/ro.gmo index ede6b3b330a06cc2301b5e23a43add9d37d2a97e..a400dafa1c278805c3a30f60f5c74e67a75528a4 100644 GIT binary patch delta 23 ecmaFt{n&ehzc`nru91m?p`n$D<>pB7EP diff --git a/po/ro.po b/po/ro.po index df049a5b..605de807 100644 --- a/po/ro.po +++ b/po/ro.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 1997-08-17 18:42+0300\n" "Last-Translator: Eugen Hoanca \n" "Language-Team: Romanian \n" @@ -14,26 +14,26 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "incluziune greit n interval" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: opiune invalid" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nu se poate atribui ctre index ne-numeric" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -62,32 +62,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, fuzzy, c-format msgid "%s: cannot read: %s" msgstr "%s: nu s-a putut crea: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, fuzzy, c-format msgid "`%s': cannot unbind" msgstr "%s: comand negsit" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, fuzzy, c-format msgid "`%s': unknown function name" msgstr "%s: funcie doar n citire (readonly)" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -240,12 +240,12 @@ msgstr "" msgid "write error: %s" msgstr "eroare de legtur (pipe): %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, fuzzy, c-format msgid "%s: ambiguous job spec" msgstr "%s: Redirectare ambigu" @@ -282,7 +282,7 @@ msgstr "poate fi folosit doar msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funcie doar n citire (readonly)" @@ -321,7 +321,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: nu s-a putut crea: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -337,7 +337,7 @@ msgstr "%s: nu se poate executa fi msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nu se poate executa fiierul binar" @@ -451,7 +451,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, fuzzy, c-format msgid "%s: history expansion failed" msgstr "%s: se ateapt expresie ntreag (integer)" @@ -479,12 +479,12 @@ msgstr "Eroare necunoscut msgid "expression expected" msgstr "se ateapt expresie" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -620,17 +620,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, fuzzy, c-format msgid "read error: %d: %s" msgstr "eroare de legtur (pipe): %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -810,37 +810,37 @@ msgstr "%s: variabil msgid "\atimed out waiting for input: auto-logout\n" msgstr "%ca expirat ateptnd introducere de date: auto-logout\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "eroare de legtur (pipe): %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: limitat: nu se poate specifica `/' n numele comenzilor" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: comand negsit" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: este director" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nu se poate duplica fd %d n fd 0: %s" @@ -919,7 +919,7 @@ msgstr "eroare de redirectare" msgid "getcwd: cannot access parent directories" msgstr "getwd: nu s-au putut accesa directoarele printe" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -935,147 +935,147 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "check_bash_input: buffer deja existent pentru fd nou %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Nu exist pid-ul (%d)!\n" -#: jobs.c:1408 +#: jobs.c:1411 #, fuzzy, c-format msgid "Signal %d" msgstr "Semnal Necunoscut #%d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Finalizat" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Stopat" -#: jobs.c:1431 +#: jobs.c:1434 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Stopat" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "n rulare" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Finalizat(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Ieire %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Stare necunoscut" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1560 +#: jobs.c:1563 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(wd actual: %s)\n" -#: jobs.c:1761 +#: jobs.c:1766 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid copil (de la %d la %d) a ntlnit o eroare %d: %s\n" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "ateptai: pid-ul %d nu este rezultat(child) al acestui shell" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: jobul a fost terminat" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "slot %3d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd actual: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp euat: %s" -#: jobs.c:3613 +#: jobs.c:3618 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: disciplin linie: %s" -#: jobs.c:3623 +#: jobs.c:3628 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp euat: %s" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "nici un control de job n acest shell" @@ -1333,31 +1333,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, fuzzy, c-format msgid "%s: ambiguous redirect" msgstr "%s: Redirectare ambigu" -#: redir.c:150 +#: redir.c:151 #, fuzzy, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: nu se poate accesa(clobber) fiierul existent" -#: redir.c:155 +#: redir.c:156 #, fuzzy, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: limitat: nu se poate specifica `/' n numele comenzilor" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "nu pot face legtur (pipe) pentru substituia procesului: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 #, fuzzy msgid "redirection error: cannot duplicate fd" msgstr "eroare de redirectare" @@ -1430,7 +1430,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1604,82 +1604,82 @@ msgstr "Semnal Necunoscut #" msgid "Unknown Signal #%d" msgstr "Semnal Necunoscut #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substituie invalid: nu exist '%s' n %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nu pot asigna list membrului intervalului" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "nu pot face legtur (pipe) pentru substituia procesului: %s" -#: subst.c:4496 +#: subst.c:4499 #, fuzzy msgid "cannot make child for process substitution" msgstr "nu pot crea un proces copil pentru substituirea procesului: %s" -#: subst.c:4541 +#: subst.c:4544 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "nu pot deschide legtura numit %s pentru %s: %s" -#: subst.c:4543 +#: subst.c:4546 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "nu pot deschide legtura numit %s pentru %s: %s" -#: subst.c:4561 +#: subst.c:4564 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nu se poate duplica legtura numit %s ca fd %d: %s " -#: subst.c:4757 +#: subst.c:4760 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "nu pot face legturi(pipes) pentru substituia de comenzi: %s" -#: subst.c:4791 +#: subst.c:4794 #, fuzzy msgid "cannot make child for command substitution" msgstr "nu pot crea un copil pentru substituia de comenzi: %s" -#: subst.c:4808 +#: subst.c:4811 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nu se poate duplica legtura (pipe) ca fd 1: %s" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametru null sau nesetat" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresie subir < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: substituie invalid" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nu se poate asigna n acest mod" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substituie invalid: nu exist ')' de final n %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1716,23 +1716,23 @@ msgstr "%s: se a msgid "missing `]'" msgstr "lipsete ']'" -#: trap.c:200 +#: trap.c:201 #, fuzzy msgid "invalid signal number" msgstr "numr de semnal invalid" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, fuzzy, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: Semnal invalid %d" @@ -1747,33 +1747,33 @@ msgstr "eroare msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2927,8 +2927,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2937,7 +2938,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2949,7 +2950,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3031,7 +3032,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3051,7 +3052,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3070,7 +3071,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3090,7 +3091,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3101,7 +3102,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3115,7 +3116,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3129,7 +3130,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3206,7 +3207,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3214,7 +3215,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3226,7 +3227,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3262,7 +3263,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3292,7 +3293,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3336,7 +3337,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3354,7 +3355,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3371,7 +3372,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3385,7 +3386,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3398,7 +3399,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3415,7 +3416,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3435,7 +3436,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3451,7 +3452,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3462,7 +3463,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3483,7 +3484,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3494,7 +3495,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3505,7 +3506,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3519,7 +3520,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3530,7 +3531,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3544,7 +3545,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3555,7 +3556,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3583,7 +3584,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3637,7 +3638,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3668,7 +3669,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3695,7 +3696,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3724,7 +3725,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3745,7 +3746,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3775,7 +3776,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3797,7 +3798,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3810,7 +3811,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3839,7 +3840,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/ru.gmo b/po/ru.gmo index 16ea3b211366eb3026dd94985ac0f8723ddd0b2d..0c6a8332f693fca5ddbbb74869a7797e088771af 100644 GIT binary patch delta 23 ecmdnyzRi6@iwKvcu91m?p`n$D<>o#S4SoP!{|3$g delta 23 ecmdnyzRi6@iwKv6u92yNp`n$b@#a1e4SoP!!v@6w diff --git a/po/ru.po b/po/ru.po index 2235e95a..8a73754c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 3.1-release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2006-01-05 21:28+0300\n" "Last-Translator: Evgeniy Dushistov \n" "Language-Team: Russian \n" @@ -18,26 +18,26 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr " " -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: " -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s; " -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -66,32 +66,32 @@ msgstr " msgid "%s: missing colon separator" msgstr "%s: " -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: : %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s': " -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s .\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s " @@ -239,12 +239,12 @@ msgstr "%s: msgid "write error: %s" msgstr " : %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: : %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "" @@ -280,7 +280,7 @@ msgstr " msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: " @@ -319,7 +319,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: : %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -335,7 +335,7 @@ msgstr "%s: msgid "%s: file is too large" msgstr "%s: " -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: " @@ -450,7 +450,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "" @@ -477,12 +477,12 @@ msgstr " msgid "expression expected" msgstr " " -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: " -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: : %s" @@ -616,17 +616,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr " : %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -797,37 +797,37 @@ msgstr "" msgid "\atimed out waiting for input: auto-logout\n" msgstr "" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr " : %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: " -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: " -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr " fd %d fd %d" @@ -902,7 +902,7 @@ msgstr " msgid "getcwd: cannot access parent directories" msgstr "" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr " fd %d fd %d" @@ -917,144 +917,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: :" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "" @@ -1306,31 +1306,31 @@ msgstr "" msgid "file descriptor out of range" msgstr " " -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: " -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr " : fd" @@ -1398,7 +1398,7 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1573,77 +1573,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr " %s " -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr " %s " -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: null " -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr " `%c' %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr " : %s" @@ -1680,22 +1680,22 @@ msgstr "%s: msgid "missing `]'" msgstr " `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr " " -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "" @@ -1710,33 +1710,33 @@ msgstr "" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2848,8 +2848,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2858,7 +2859,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2870,7 +2871,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -2952,7 +2953,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -2972,7 +2973,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -2991,7 +2992,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3011,7 +3012,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3022,7 +3023,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3036,7 +3037,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3050,7 +3051,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3127,7 +3128,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3135,7 +3136,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3147,7 +3148,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3183,7 +3184,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3213,7 +3214,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3257,7 +3258,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3275,7 +3276,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3292,7 +3293,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3306,7 +3307,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3319,7 +3320,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3336,7 +3337,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3356,7 +3357,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3372,7 +3373,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3383,7 +3384,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3404,7 +3405,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3415,7 +3416,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3426,7 +3427,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3440,7 +3441,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3451,7 +3452,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3465,7 +3466,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3476,7 +3477,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3504,7 +3505,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3558,7 +3559,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3589,7 +3590,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3616,7 +3617,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3645,7 +3646,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3666,7 +3667,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3696,7 +3697,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3718,7 +3719,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -3737,7 +3738,7 @@ msgstr "" " , " " ." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3766,7 +3767,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/sk.gmo b/po/sk.gmo index db55786eb502b63bfedba8c9dbea2daf7bb0a9c9..cb6e42629a6771e9033e94d74375368c79f56dd0 100644 GIT binary patch literal 47375 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 diff --git a/po/sk.po b/po/sk.po index 1c3392f2..5b7de42e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5,39 +5,40 @@ # msgid "" msgstr "" -"Project-Id-Version: bash 3.2\n" +"Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" -"PO-Revision-Date: 2008-04-02 14:45+0100\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" +"PO-Revision-Date: 2008-09-24 16:05+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "chybný index poľa" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" -msgstr "" +msgstr "%s: nie je možné previesť indexované pole na asociatívne" -#: arrayfunc.c:478 -#, fuzzy, c-format +#: arrayfunc.c:479 +#, c-format msgid "%s: invalid associative array key" -msgstr "%s: neplatný názov akcie" +msgstr "%s: neplatný kľúč asociatívneho poľa" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nie je možné priradiť nenumerickému indexu" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" -msgstr "" +msgstr "%s: %s: pri priraďovaní asociatívnemu poľu je potrebné použiť index" #: bashhist.c:382 #, c-format @@ -63,39 +64,39 @@ msgstr "chýba zatvárajúca „%c“ v %s" msgid "%s: missing colon separator" msgstr "%s: chýba oddeľovač dvojbodka" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "„%s“: neplatný názov klávesovej mapy" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: nedá sa čítať: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "„%s“: nedá sa zrušiť väzba (unbind)" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "„%s“: neznámy názov funkcie" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s nie je zviazaný (bind) s žiadnymi klávesmi.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s je možné vyvolať ako " #: builtins/break.def:77 builtins/break.def:117 msgid "loop count" -msgstr "" +msgstr "počet slučiek" #: builtins/break.def:137 msgid "only meaningful in a `for', `while', or `until' loop" @@ -120,12 +121,12 @@ msgstr "OLDPWD nebola nastavená" #: builtins/common.c:107 #, c-format msgid "line %d: " -msgstr "" +msgstr "riadok %d: " #: builtins/common.c:124 -#, fuzzy, c-format +#, c-format msgid "%s: usage: " -msgstr "%s: upozornenie: " +msgstr "%s: použitie " #: builtins/common.c:137 test.c:822 msgid "too many arguments" @@ -162,14 +163,12 @@ msgid "`%s': not a valid identifier" msgstr "„%s“: nie je platný identifikátor" #: builtins/common.c:209 -#, fuzzy msgid "invalid octal number" -msgstr "neplatné číslo signálu" +msgstr "neplatné osmičkové číslo" #: builtins/common.c:211 -#, fuzzy msgid "invalid hex number" -msgstr "neplatné číslo" +msgstr "neplatné šestnástkové číslo" #: builtins/common.c:213 expr.c:1255 msgid "invalid number" @@ -237,12 +236,12 @@ msgstr "%s: nie je vstavaný príkaz (builtin) shellu" msgid "write error: %s" msgstr "chyba zapisovania: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: chyba pri zisťovaní aktuálneho adresára: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: nejednoznačné určenie úlohy" @@ -268,7 +267,7 @@ msgstr "upozornenie: voľba -C nemusí fungovať tak ako očakávate" #: builtins/complete.def:786 msgid "not currently executing completion function" -msgstr "" +msgstr "momentálne sa nevykonáva funkcia doplňovania" #: builtins/declare.def:122 msgid "can only be used in a function" @@ -278,7 +277,7 @@ msgstr "je možné použiť iba vo funkcii" msgid "cannot use `-f' to make functions" msgstr "nie je možné použiť „-f“ pre tvorbu funkcií" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: funkcia iba na čítanie" @@ -291,7 +290,7 @@ msgstr "%s: nie je možné takto robiť deštrukciu premenných polí" #: builtins/declare.def:461 #, c-format msgid "%s: cannot convert associative to indexed array" -msgstr "" +msgstr "%s: nie je možné previesť asociatívne pole na indexované" #: builtins/enable.def:137 builtins/enable.def:145 msgid "dynamic loading not available" @@ -317,7 +316,7 @@ msgstr "%s: nie je dynamicky načítané" msgid "%s: cannot delete: %s" msgstr "%s: nedá sa zmazať: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -333,7 +332,7 @@ msgstr "%s: nie je obyčajný súbor" msgid "%s: file is too large" msgstr "%s: súbor je príliš veľký" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nie je možné vykonať binárny súbor" @@ -346,7 +345,7 @@ msgstr "%s: nedá sa spustiť: %s" #: builtins/exit.def:65 #, c-format msgid "logout\n" -msgstr "" +msgstr "odhlásenie\n" #: builtins/exit.def:88 msgid "not login shell: use `exit'" @@ -358,9 +357,9 @@ msgid "There are stopped jobs.\n" msgstr "Existujú zastavené úlohy.\n" #: builtins/exit.def:122 -#, fuzzy, c-format +#, c-format msgid "There are running jobs.\n" -msgstr "Existujú zastavené úlohy.\n" +msgstr "Existujú bežiace úlohy.\n" #: builtins/fc.def:261 msgid "no command found" @@ -377,7 +376,7 @@ msgstr "%s: nedá sa otvoriť odkladací súbor: %s" #: builtins/fg_bg.def:149 builtins/jobs.def:282 msgid "current" -msgstr "" +msgstr "aktuálny" #: builtins/fg_bg.def:158 #, c-format @@ -404,16 +403,17 @@ msgid "%s: hash table empty\n" msgstr "%s: hašovacia tabuľka je prázdna\n" #: builtins/hash.def:244 -#, fuzzy, c-format +#, c-format msgid "hits\tcommand\n" -msgstr "posledný príkaz: %s\n" +msgstr "" #: builtins/help.def:130 -#, fuzzy, c-format +#, c-format msgid "Shell commands matching keyword `" msgid_plural "Shell commands matching keywords `" msgstr[0] "Príkazy shellu zodpovedajúce kľúčovému slovu „" -msgstr[1] "Príkazy shellu zodpovedajúce kľúčovému slovu „" +msgstr[1] "Príkazy shellu zodpovedajúce kľúčovým slovám „" +msgstr[2] "Príkazy shellu zodpovedajúce kľúčovým slovám „" #: builtins/help.def:168 #, c-format @@ -457,15 +457,15 @@ msgstr "nie je možné použiť viac ako jednu z volieb -anrw" msgid "history position" msgstr "poloha histórie" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: rozšírenie histórie zlyhalo" #: builtins/inlib.def:71 -#, fuzzy, c-format +#, c-format msgid "%s: inlib failed" -msgstr "%s: rozšírenie histórie zlyhalo" +msgstr "%s: inlib zlyhalo" #: builtins/jobs.def:109 msgid "no other options allowed with `-x'" @@ -484,39 +484,38 @@ msgstr "Neznáma chyba" msgid "expression expected" msgstr "očakával sa výraz" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: neplatná špecifikácia popisovača súboru" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: neplatný popisovač súboru: %s" #: builtins/mapfile.def:232 builtins/mapfile.def:270 -#, fuzzy, c-format +#, c-format msgid "%s: invalid line count" -msgstr "%s: neplatná voľba" +msgstr "%s: neplatný počet riadkov" #: builtins/mapfile.def:243 -#, fuzzy, c-format +#, c-format msgid "%s: invalid array origin" -msgstr "%s: neplatná voľba" +msgstr "%s: neplatný začiatok poľa" #: builtins/mapfile.def:260 -#, fuzzy, c-format +#, c-format msgid "%s: invalid callback quantum" -msgstr "%s: neplatný názov akcie" +msgstr "%s: neplatné kvantum spätného volania" #: builtins/mapfile.def:292 -#, fuzzy msgid "empty array variable name" -msgstr "%s: nie je premenná poľa" +msgstr "názov prázdnej premennej poľa" #: builtins/mapfile.def:313 msgid "array variable support required" -msgstr "" +msgstr "vyžaduje sa podpora premennej poľa" #: builtins/printf.def:364 #, c-format @@ -529,9 +528,9 @@ msgid "`%c': invalid format character" msgstr "„%c“: neplatný formátovací znak" #: builtins/printf.def:568 -#, fuzzy, c-format +#, c-format msgid "warning: %s: %s" -msgstr "%s: upozornenie: " +msgstr "upozornenie: %s: %s" #: builtins/printf.def:747 msgid "missing hex digit for \\x" @@ -547,12 +546,11 @@ msgstr "<žiadny aktuálny adresár>" #: builtins/pushd.def:506 msgid "directory stack empty" -msgstr "" +msgstr "zásobník adresárov je prázdny" #: builtins/pushd.def:508 -#, fuzzy msgid "directory stack index" -msgstr "podtečenie zásobníka rekurzie" +msgstr "index zásobníka adresárov" #: builtins/pushd.def:683 #, fuzzy @@ -677,17 +675,17 @@ msgstr "" " \n" " Zásobník adresárov môžete zobraziť príkazom „dirs“." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: neplatná špecifikácia expirácie (timeout)" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "chyba pri čítaní: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" "návrat („return“) je možné vykonať iba z funkcie alebo skriptu vyvolaného " @@ -794,7 +792,7 @@ msgstr "%s: nedá sa zistiť limit: %s" #: builtins/ulimit.def:453 msgid "limit" -msgstr "" +msgstr "obmedzenie" #: builtins/ulimit.def:465 builtins/ulimit.def:765 #, c-format @@ -817,7 +815,7 @@ msgstr "„%c“: neplatný znak symbolického režimu" #: error.c:89 error.c:320 error.c:322 error.c:324 msgid " line " -msgstr "" +msgstr " riadok " #: error.c:164 #, c-format @@ -830,9 +828,9 @@ msgid "Aborting..." msgstr "Ruší sa..." #: error.c:260 -#, fuzzy, c-format +#, c-format msgid "warning: " -msgstr "%s: upozornenie: " +msgstr "upozornenie: " #: error.c:405 msgid "unknown command error" @@ -860,37 +858,36 @@ msgstr "%s: neviazaná premenná" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\ačas vypršal pri čakaní na vstup: automatické odhlásenie\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "nie je možné presmerovať štandardný vstup z /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: neplatný formátovácí znak" -#: execute_cmd.c:1930 -#, fuzzy +#: execute_cmd.c:1933 msgid "pipe error" -msgstr "chyba zapisovania: %s" +msgstr "chyba rúry" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: obmedzené: nie jemožné uviesť „/“ v názvoch príkazov" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: príkaz nenájdený" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: chybný interpreter" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nie je možné duplokovať fd %d na fd %d" @@ -946,7 +943,7 @@ msgstr "chyba syntaxe: neplatný aritmetický operátor" #: expr.c:1201 #, c-format msgid "%s%s%s: %s (error token is \"%s\")" -msgstr "" +msgstr "%s%s%s: %s (chybný token je „%s”)" #: expr.c:1259 msgid "invalid arithmetic base" @@ -957,18 +954,18 @@ msgid "value too great for base" msgstr "hodnota je ako základ príliš veľká" #: expr.c:1328 -#, fuzzy, c-format +#, c-format msgid "%s: expression error\n" -msgstr "%s: očakával sa celočíselný výraz" +msgstr "%s: chyba výrazu\n" #: general.c:61 msgid "getcwd: cannot access parent directories" msgstr "getcwd: nie je možné pristupovať k rodičovským adresárom" -#: input.c:94 subst.c:4551 -#, fuzzy, c-format +#: input.c:94 subst.c:4554 +#, c-format msgid "cannot reset nodelay mode for fd %d" -msgstr "nedá sa resetovať nodelay režim fd %d" +msgstr "nie j emožné resetovať nodelay režim fd %d" #: input.c:258 #, c-format @@ -980,144 +977,144 @@ msgstr "nedá sa alokovať nový popisovač súboru pre vstup bashu z fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: bufer už existuje pre nový fd %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" -msgstr "" +msgstr "start_pipeline: pgrp rúra" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "pid %d získaný pomocou fork sa vyskytuje v bežiacej úlohe %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "mažem zastavenú úlohu %d so skupinou procesu %ld" -#: jobs.c:1102 -#, c-format -msgid "add_process: process %5ld (%s) in the_pipeline" -msgstr "" - #: jobs.c:1105 #, c-format -msgid "add_process: pid %5ld (%s) marked as still alive" -msgstr "" +msgid "add_process: process %5ld (%s) in the_pipeline" +msgstr "add_process: proces %5ld (%s) v the_pipeline" -#: jobs.c:1393 +#: jobs.c:1108 +#, c-format +msgid "add_process: pid %5ld (%s) marked as still alive" +msgstr "add_process: pid %5ld (%s) je stále označený ako živý" + +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: taký pid neexistuje" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" -msgstr "" +msgstr "Signál %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" -msgstr "" +msgstr "Hotovo" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" -msgstr "" +msgstr "Zastavené" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" -msgstr "" +msgstr "Zastavené(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" -msgstr "" +msgstr "Beží" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" -msgstr "" - -#: jobs.c:1451 -#, c-format -msgid "Exit %d" -msgstr "" +msgstr "Hotovo(%d)" #: jobs.c:1454 -msgid "Unknown status" -msgstr "" +#, c-format +msgid "Exit %d" +msgstr "Ukončenie %d" -#: jobs.c:1541 +#: jobs.c:1457 +msgid "Unknown status" +msgstr "Neznámy stav" + +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" -msgstr "" +msgstr " (wd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" -msgstr "" +msgstr "setpgid detského procesu (%ld to %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld nie je dieťa tohto shellu" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Neexistuje záznam o procese %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: úloha %d je zastavená" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: úloha skončila" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: úloha %d už je v pozadí" -#: jobs.c:3482 -#, fuzzy, c-format +#: jobs.c:3487 +#, c-format msgid "%s: line %d: " -msgstr "%s: upozornenie: " +msgstr "%s: riadok %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" -msgstr "" +msgstr "(wd teraz: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" -msgstr "" +msgstr "initialize_job_control: funkcia getpgrp zlyhala" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" -msgstr "" +msgstr "nie je možné nastaviť skupinu procesu terminálu (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "v tomto shelli nie je riadenie úloh" @@ -1136,9 +1133,8 @@ msgstr "" "malloc: %s:%d: zbabraný predpoklad\r\n" #: lib/malloc/malloc.c:313 -#, fuzzy msgid "unknown" -msgstr "%s: hostiteľ neznýmy" +msgstr "neznámy" #: lib/malloc/malloc.c:797 msgid "malloc: block on free list clobbered" @@ -1194,7 +1190,7 @@ msgstr "neplatný základ" #: lib/sh/netopen.c:168 #, c-format msgid "%s: host unknown" -msgstr "%s: hostiteľ neznýmy" +msgstr "%s: hostiteľ neznámy" #: lib/sh/netopen.c:175 #, c-format @@ -1245,6 +1241,7 @@ msgstr "make_here_document: chybný typ inštrukcie %d" #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" msgstr "" +"here-document na riadku %d oddelený znakom konca riadku (očakávalo sa „%s”)" #: make_cmd.c:746 #, c-format @@ -1371,31 +1368,31 @@ msgstr "cprintf: „%c“: neplatný formátovací znak" msgid "file descriptor out of range" msgstr "popisovač súboru mimo rozsahu" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: nejednoznačné presmerovanie" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: nedá sa prepísať existujúci súbor" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: ombedzené: nie je možné presmerovať výstup" -#: redir.c:160 -#, fuzzy, c-format +#: redir.c:161 +#, c-format msgid "cannot create temp file for here-document: %s" -msgstr "nedá sa vytvoriť odkladací súbot pre dokument: %s" +msgstr "nedá sa vytvoriť odkladací súbor pre here-document: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port nie je podporovaný bez podpory sietí" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "chyba presmerovania: nedá sa duplikovať fd" @@ -1419,7 +1416,7 @@ msgstr "Nemám meno!" #: shell.c:1777 #, c-format msgid "GNU bash, version %s-(%s)\n" -msgstr "" +msgstr "GNU bash, verzia %s-(%s)\n" #: shell.c:1778 #, c-format @@ -1465,253 +1462,251 @@ msgstr "" msgid "Use the `bashbug' command to report bugs.\n" msgstr "Na ohlasovanie chýb použite príkaz „bashbug“.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: neplatná operácia" #: siglist.c:47 msgid "Bogus signal" -msgstr "" +msgstr "Neplatný signál" #: siglist.c:50 msgid "Hangup" -msgstr "" +msgstr "Zavesenie" #: siglist.c:54 msgid "Interrupt" -msgstr "" +msgstr "Prerušenie" #: siglist.c:58 msgid "Quit" -msgstr "" +msgstr "Ukončenie" #: siglist.c:62 msgid "Illegal instruction" -msgstr "" +msgstr "Neplatná inštrukcia" #: siglist.c:66 msgid "BPT trace/trap" -msgstr "" +msgstr "BPT trace/trap" #: siglist.c:74 msgid "ABORT instruction" -msgstr "" +msgstr "inštrukcia ABORT" #: siglist.c:78 msgid "EMT instruction" -msgstr "" +msgstr "inštrukcia EMT" #: siglist.c:82 msgid "Floating point exception" -msgstr "" +msgstr "Výnimka pri operácii s plávajúcou desatinnou čiarkou" #: siglist.c:86 msgid "Killed" -msgstr "" +msgstr "Zabitý" #: siglist.c:90 -#, fuzzy msgid "Bus error" -msgstr "chyba syntaxe" +msgstr "chyba zbernice" #: siglist.c:94 msgid "Segmentation fault" -msgstr "" +msgstr "Chyba segmentácie" #: siglist.c:98 msgid "Bad system call" -msgstr "" +msgstr "Chybné systémové volanie" #: siglist.c:102 msgid "Broken pipe" -msgstr "" +msgstr "Prerušená rúra" #: siglist.c:106 msgid "Alarm clock" -msgstr "" +msgstr "Budík" #: siglist.c:110 -#, fuzzy msgid "Terminated" -msgstr "obmedzené" +msgstr "Ukončené" #: siglist.c:114 msgid "Urgent IO condition" -msgstr "" +msgstr "Naliehavý stav V/V" #: siglist.c:118 msgid "Stopped (signal)" -msgstr "" +msgstr "Zastavené (signál)" #: siglist.c:126 msgid "Continue" -msgstr "" +msgstr "Pokračovať" #: siglist.c:134 msgid "Child death or stop" -msgstr "" +msgstr "Zastavenie alebo zabitie detského procesu" #: siglist.c:138 msgid "Stopped (tty input)" -msgstr "" +msgstr "Zastavené (vstup z tty)" #: siglist.c:142 msgid "Stopped (tty output)" -msgstr "" +msgstr "Zastavené (výstup na tty)" #: siglist.c:146 msgid "I/O ready" -msgstr "" +msgstr "V/V pripravený" #: siglist.c:150 msgid "CPU limit" -msgstr "" +msgstr "obmedzenie CPU" #: siglist.c:154 msgid "File limit" -msgstr "" +msgstr "obmedzenie súborov" #: siglist.c:158 msgid "Alarm (virtual)" -msgstr "" +msgstr "Budík (virtuálny)" #: siglist.c:162 msgid "Alarm (profile)" -msgstr "" +msgstr "Budík (profil)" #: siglist.c:166 msgid "Window changed" -msgstr "" +msgstr "Okno sa zmenilo" #: siglist.c:170 msgid "Record lock" -msgstr "" +msgstr "Zámok záznamu" #: siglist.c:174 msgid "User signal 1" -msgstr "" +msgstr "Používateľský signál 1" #: siglist.c:178 msgid "User signal 2" -msgstr "" +msgstr "Používateľský signál 2" #: siglist.c:182 msgid "HFT input data pending" -msgstr "" +msgstr "čaká sa na vstupné údaje HFT" #: siglist.c:186 msgid "power failure imminent" -msgstr "" +msgstr "nastane výpadok napájania" #: siglist.c:190 msgid "system crash imminent" -msgstr "" +msgstr "nastane havária systému" #: siglist.c:194 msgid "migrate process to another CPU" -msgstr "" +msgstr "presunúť proces na iný CPU" #: siglist.c:198 msgid "programming error" -msgstr "" +msgstr "chyba programovania" #: siglist.c:202 msgid "HFT monitor mode granted" -msgstr "" +msgstr "udelený režim monitoru HFT" #: siglist.c:206 msgid "HFT monitor mode retracted" -msgstr "" +msgstr "stiahnutý režim monitoru HFT" #: siglist.c:210 msgid "HFT sound sequence has completed" -msgstr "" +msgstr "dokončila sa zvuková sekvencia HFT" #: siglist.c:214 msgid "Information request" -msgstr "" +msgstr "Žiadosť o informácie" #: siglist.c:222 msgid "Unknown Signal #" -msgstr "" +msgstr "Neznáme číslo signálu" #: siglist.c:224 #, c-format msgid "Unknown Signal #%d" -msgstr "" +msgstr "Neznámy signál #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "chybná substitúcia: chýba „%s“ v %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nie je možné priradiť zoznam položke poľa" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "nedá sa vytvoriť rúra pre substitúciu procesov" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "nedá sa vytvoriť dieťa pre substitúciu procesov" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nedá sa otvoriť pomenovaná rúra %s na čítanie" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nedá sa otvoriť pomenovaná rúra %s na zápis" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nedá sa duplikovať pomenovaná rúra %s ako fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "nedá sa vytvoriť rúra pre substitúciu príkazov" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "nedá sa vytvoriť dieťa pre substitúciu príkazov" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nedá sa duplikovať rúra ako fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter je null alebo nenastavený" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: výraz podreťazca < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: chybná substitúcia" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nie je možné vykonať priradenie takýmto spôsobom" -#: subst.c:7441 -#, fuzzy, c-format +#: subst.c:7454 +#, c-format msgid "bad substitution: no closing \"`\" in %s" -msgstr "chybná substitúcia: chýba „%s“ v %s" +msgstr "chybná substitúcia: : v reťazci %s chýba uzatvárajúci „`”" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "bez zhody: %s" @@ -1748,23 +1743,23 @@ msgstr "%s: očakával sa binárny operátor" msgid "missing `]'" msgstr "chýba „]“" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "neplatné číslo signálu" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: chybná hodnota v trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" "run_pending_traps: obsluha signálu je SIG_DFL, znovu posielam %d (%s) sebe" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: chybný signál %d" @@ -1779,51 +1774,52 @@ msgstr "chyba pri importe definície funkcie „%s“" msgid "shell level (%d) too high, resetting to 1" msgstr "úroveň shellu (%d) je príliš vysoká, nastavujem späť na 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: v aktuálnom rozsahu sa nenachádza kontext funkcie" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: v aktuálnom rozsahu sa nenachádza kontext funkcie" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "neplatný znak %d v exportstr %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "žiadne „=“ v exportstr %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: hlavička shell_variables nie je kontext funkcie" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: chýba kontext global_variables" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: hlavička shell_variables nie je dočasný rozsah prostredia" #: version.c:46 -#, fuzzy msgid "Copyright (C) 2008 Free Software Foundation, Inc." -msgstr "Copyright (C) 2006 Free Software Foundation, Inc.\n" +msgstr "Copyright (C) 2008 Free Software Foundation, Inc." #: version.c:47 msgid "" "License GPLv3+: GNU GPL version 3 or later \n" msgstr "" +"Licencia GPLv3+: GNU GPL verzie 3 alebo novšia \n" #: version.c:86 #, c-format msgid "GNU bash, version %s (%s)\n" -msgstr "" +msgstr "GNU bash, verzia %s (%s)\n" #: version.c:91 #, c-format @@ -1878,306 +1874,314 @@ msgstr "xrealloc: %s:%d: nedá sa alokovať %lu bajtov" #: builtins.c:43 msgid "alias [-p] [name[=value] ... ]" -msgstr "" +msgstr "alias [-p] [názov[=hodnota] ... ]" #: builtins.c:47 msgid "unalias [-a] name [name ...]" -msgstr "" +msgstr "unalias [-a] názov [názov ...]" #: builtins.c:51 msgid "" "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" "x keyseq:shell-command] [keyseq:readline-function or readline-command]" msgstr "" +"bind [-lpvsPVS] [-m kláv_mapa] [-f názov_súboru] [-q názov] [-u názov] [-r " +"postup_kláv] [-x postup_kláv:príkaz_shellu] [postup_kláv:funkcia_readline " +"alebo príkaz-readline]" #: builtins.c:54 msgid "break [n]" -msgstr "" +msgstr "break [n]" #: builtins.c:56 msgid "continue [n]" -msgstr "" +msgstr "continue [n]" #: builtins.c:58 msgid "builtin [shell-builtin [arg ...]]" -msgstr "" +msgstr "builtin [vstavaná funcia shellu [arg ...]]" #: builtins.c:61 msgid "caller [expr]" -msgstr "" +msgstr "caller [výraz]" #: builtins.c:64 msgid "cd [-L|-P] [dir]" -msgstr "" +msgstr "cd [-L|-P] [adresár]" #: builtins.c:66 msgid "pwd [-LP]" -msgstr "" +msgstr "pwd [-LP]" #: builtins.c:68 msgid ":" -msgstr "" +msgstr ":" #: builtins.c:70 msgid "true" -msgstr "" +msgstr "pravda" #: builtins.c:72 msgid "false" -msgstr "" +msgstr "nepravda" #: builtins.c:74 msgid "command [-pVv] command [arg ...]" -msgstr "" +msgstr "command [-pVv] command [arg ...]" #: builtins.c:76 msgid "declare [-aAfFilrtux] [-p] [name[=value] ...]" -msgstr "" +msgstr "declare [-aAfFilrtux] [-p] [názov[=hodnota] ...]" #: builtins.c:78 msgid "typeset [-aAfFilrtux] [-p] name[=value] ..." -msgstr "" +msgstr "typeset [-aAfFilrtux] [-p] názov[=hodnota] ..." #: builtins.c:80 msgid "local [option] name[=value] ..." -msgstr "" +msgstr "local [voľba] názov[=hodnota] ..." #: builtins.c:83 msgid "echo [-neE] [arg ...]" -msgstr "" +msgstr "echo [-neE] [arg ...]" #: builtins.c:87 msgid "echo [-n] [arg ...]" -msgstr "" +msgstr "echo [-n] [arg ...]" #: builtins.c:90 msgid "enable [-a] [-dnps] [-f filename] [name ...]" -msgstr "" +msgstr "enable [-a] [-dnps] [-f názov_súboru] [názov ...]" #: builtins.c:92 msgid "eval [arg ...]" -msgstr "" +msgstr "eval [arg ...]" #: builtins.c:94 msgid "getopts optstring name [arg]" -msgstr "" +msgstr "getopts názov_reťazca_volieb [arg]" #: builtins.c:96 msgid "exec [-cl] [-a name] [command [arguments ...]] [redirection ...]" -msgstr "" +msgstr "exec [-cl] [-a názov] [príkaz [argumenty ...]] [presmerovanie ...]" #: builtins.c:98 msgid "exit [n]" -msgstr "" +msgstr "exit [n]" #: builtins.c:100 msgid "logout [n]" -msgstr "" +msgstr "logout [n]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" msgstr "" +"fc [-e enázov] [-lnr] [prvý] [posledný] alebo fc -s [vzor=opak] [príkaz]" #: builtins.c:107 msgid "fg [job_spec]" -msgstr "" +msgstr "fg [špec_úlohy]" #: builtins.c:111 msgid "bg [job_spec ...]" -msgstr "" +msgstr "bg [špec_úlohy ...]" #: builtins.c:114 msgid "hash [-lr] [-p pathname] [-dt] [name ...]" -msgstr "" +msgstr "hash [-lr] [-p cesta] [-dt] [názov ...]" #: builtins.c:117 msgid "help [-ds] [pattern ...]" -msgstr "" +msgstr "help [-ds] [vzor ...]" #: builtins.c:121 msgid "" "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " "[arg...]" msgstr "" +"history [-c] [-d ofset] [n] alebo history -anrw [názov_súboru] alebo history " +"-ps arg [arg...]" #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" -msgstr "" +msgstr "jobs [-lnprs] [špec_úlohy ...] alebo jobs -x príkaz [argumenty]" #: builtins.c:129 msgid "disown [-h] [-ar] [jobspec ...]" -msgstr "" +msgstr "disown [-h] [-ar] [špec_úlohy ...]" #: builtins.c:132 msgid "" "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " "[sigspec]" msgstr "" +"kill [-s špec_signálu | -n číslo_signálu | -špec_signálu] pid | " +"špec_úlohy ... alebo kill -l [špec_signálu]" #: builtins.c:134 msgid "let arg [arg ...]" -msgstr "" +msgstr "let arg [arg ...]" #: builtins.c:136 msgid "" "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " "timeout] [-u fd] [name ...]" msgstr "" +"read [-ers] [-a pole] [-d oddeľovač] [-i text] [-n nznakov] [-p výzva] [-t " +"zdržadnie] [-u fd] [názov ...]" #: builtins.c:138 msgid "return [n]" -msgstr "" +msgstr "return [n]" #: builtins.c:140 msgid "set [--abefhkmnptuvxBCHP] [-o option-name] [arg ...]" -msgstr "" +msgstr "set [--abefhkmnptuvxBCHP] [-o názov_voľby] [arg ...]" #: builtins.c:142 msgid "unset [-f] [-v] [name ...]" -msgstr "" +msgstr "unset [-f] [-v] [názov ...]" #: builtins.c:144 msgid "export [-fn] [name[=value] ...] or export -p" -msgstr "" +msgstr "export [-fn] [názov[=hodnota] ...] alebo export -p" #: builtins.c:146 msgid "readonly [-af] [name[=value] ...] or readonly -p" -msgstr "" +msgstr "readonly [-af] [názov[=hodnota] ...] alebo readonly -p" #: builtins.c:148 -#, fuzzy msgid "shift [n]" -msgstr "posun o" +msgstr "shift [n]" #: builtins.c:150 -#, fuzzy msgid "source filename [arguments]" -msgstr "vyžaduje sa argument názov súboru" +msgstr "source názov_súboru [argumenty]" #: builtins.c:152 -#, fuzzy msgid ". filename [arguments]" -msgstr "vyžaduje sa argument názov súboru" +msgstr ". názov_súboru [argumenty]" #: builtins.c:155 msgid "suspend [-f]" -msgstr "" +msgstr "suspend [-f]" #: builtins.c:158 msgid "test [expr]" -msgstr "" +msgstr "test [výraz]" #: builtins.c:160 msgid "[ arg... ]" -msgstr "" +msgstr "[ arg... ]" #: builtins.c:162 msgid "times" -msgstr "" +msgstr "-krát" #: builtins.c:164 msgid "trap [-lp] [[arg] signal_spec ...]" -msgstr "" +msgstr "trap [-lp] [[arg] špec_signálu ...]" #: builtins.c:166 msgid "type [-afptP] name [name ...]" -msgstr "" +msgstr "type [-afptP] názov [názov ...]" #: builtins.c:169 msgid "ulimit [-SHacdefilmnpqrstuvx] [limit]" -msgstr "" +msgstr "ulimit [-SHacdefilmnpqrstuvx] [obmedzenie]" #: builtins.c:172 msgid "umask [-p] [-S] [mode]" -msgstr "" +msgstr "umask [-p] [-S] [režim]" #: builtins.c:175 msgid "wait [id]" -msgstr "" +msgstr "wait [id]" #: builtins.c:179 msgid "wait [pid]" -msgstr "" +msgstr "wait [pid]" #: builtins.c:182 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" -msgstr "" +msgstr "for NAME [in SLOVÁ ... ] ; do PRÍKAZY; done" #: builtins.c:184 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" -msgstr "" +msgstr "for (( výraz1; výraz2; výraz3 )); do PRÍKAZY; done" #: builtins.c:186 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" -msgstr "" +msgstr "select NÁZOV [in SLOVÁ ... ;] do PRÍKAZY; done" #: builtins.c:188 msgid "time [-p] pipeline" -msgstr "" +msgstr "time [-p] rúra" #: builtins.c:190 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" -msgstr "" +msgstr "case SLOVO in [VZOR [| VZOR]...) PRÍKAZY ;;]... esac" #: builtins.c:192 msgid "" "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " "COMMANDS; ] fi" msgstr "" +"if PRÍKAZY; then PRÍKAZY; [ elif PRÍKAZY; then PRÍKAZY; ]... [ else " +"PRÍKAZY; ] fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" -msgstr "" +msgstr "while PRÍKAZY; do PRÍKAZY; done" #: builtins.c:196 msgid "until COMMANDS; do COMMANDS; done" -msgstr "" +msgstr "until PRÍKAZY; do PRÍKAZY; done" #: builtins.c:198 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" msgstr "" +"function názov_funkcie { PRÍKAZY ; } alebo názov_funkcie () { PRÍKAZY ; }" #: builtins.c:200 msgid "{ COMMANDS ; }" -msgstr "" +msgstr "{ PRÍKAZY ; }" #: builtins.c:202 msgid "job_spec [&]" -msgstr "" +msgstr "špec_úlohy [&]" #: builtins.c:204 -#, fuzzy msgid "(( expression ))" -msgstr "očakával sa výraz" +msgstr "(( výraz ))" #: builtins.c:206 -#, fuzzy msgid "[[ expression ]]" -msgstr "očakával sa výraz" +msgstr "[[ výraz ]]" #: builtins.c:208 msgid "variables - Names and meanings of some shell variables" -msgstr "" +msgstr "premenné - Názvy a významy niektorých premenných shellu" #: builtins.c:211 msgid "pushd [-n] [+N | -N | dir]" -msgstr "" +msgstr "pushd [-n] [+N | -N | adr]" #: builtins.c:215 msgid "popd [-n] [+N | -N]" -msgstr "" +msgstr "popd [-n] [+N | -N]" #: builtins.c:219 msgid "dirs [-clpv] [+N] [-N]" -msgstr "" +msgstr "dirs [-clpv] [+N] [-N]" #: builtins.c:222 msgid "shopt [-pqsu] [-o] [optname ...]" -msgstr "" +msgstr "shopt [-pqsu] [-o] [názov_voľby ...]" #: builtins.c:224 msgid "printf [-v var] format [arguments]" -msgstr "" +msgstr "printf [-v var] formát [argumenty]" #: builtins.c:227 msgid "" @@ -2185,22 +2189,30 @@ msgid "" "wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " "[name ...]" msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o voľba] [-A operácia] [-G glob_vzor] [-W " +"zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S " +"prípona] [názov ...]" #: builtins.c:231 msgid "" "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " "[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" msgstr "" +"compgen [-abcdefgjksuv] [-o voľba] [-A operácia] [-G glob_vzor] [-W " +"zoznam_slov] [-F funkcia] [-C príkaz] [-X vzor_filtra] [-P predpona] [-S " +"prípona] [slovo]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" -msgstr "" +msgstr "compopt [-o|+o voľba] [názov ...]" #: builtins.c:238 msgid "" "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " "quantum] [array]" msgstr "" +"mapfile [-n počet] [-O začiatok] [-s počet] [-t] [-u fd] [-C spätné_volanie] " +"[-c kvantum] [pole]" #: builtins.c:250 #, fuzzy @@ -2312,7 +2324,6 @@ msgstr "" " v tvare, ktorý je možné znova použiť ako vstup." #: builtins.c:322 -#, fuzzy msgid "" "Exit for, while, or until loops.\n" " \n" @@ -2322,8 +2333,6 @@ msgid "" " Exit Status:\n" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" -"Pokračuje v nasledujúcej iterácii cyklu FOR, WHILE alebo UNTIL.\n" -"Ak je uvedené N, pokračovať v ďalšej iterácii slučky o N úrovní vyššej." #: builtins.c:334 #, fuzzy @@ -2456,6 +2465,10 @@ msgid "" " Exit Status:\n" " Always succeeds." msgstr "" +"Vráti úspešný výsledok\n" +" \n" +" Návratový kód:\n" +" Vždy vráti 0." #: builtins.c:444 #, fuzzy @@ -2486,7 +2499,6 @@ msgid "" msgstr "" #: builtins.c:472 -#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" @@ -2521,30 +2533,6 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Deklaruje premenné a/alebo im dodá argumenty. Ak nie sú zadané\n" -" NÁZVY, zobraziť hodnoty premenných. Voľba -p zobrazí atribúty\n" -" a hotnoty každého NÁZVU.\n" -" \n" -" Príznaky sú:\n" -" \n" -" -a\tna vytvorenie polí NÁZVOV (ak sú podporované)\n" -" -f\tna výber iba spomedzi názvov funkcií\n" -" -F\tna zobrazenie názvov funkcií (a čísla riadku a zdrojového súboru\n" -" \tpre ladenie) bez definícií\n" -" -i\taby mali NÁZVY atribút „integer“\n" -" -r\taby boli NÁZVY len na čítanie\n" -" -t\taby mali NÁZVY atribút „trace“\n" -" -x\taby sa NÁZVY exportovali\n" -" \n" -" Premenné s atribútom integer vykonávajú aritmetické vyhodnocovanie " -"(pozri\n" -" „let“) po priradení výrazu premennej.\n" -" \n" -" Pri zobrazovaní hodnôt premenných, -f zobrazí názov a definíciu\n" -" funkcie. Voľba -F obmedzí zobrazovanie iba na názov funkcie.\n" -" \n" -" Pomocou „+“ namiesto „-“ sa vypína daný atribút. Keď sa použije vo\n" -" funkcii, spôsobí lokálnosť NÁZVOV ako pri príkaze „local“ command." #: builtins.c:508 msgid "" @@ -3166,8 +3154,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3205,7 +3194,7 @@ msgstr "" " nula ak sa nenarazí na znak konca súboru, čítanie nevyprší alebo sa " "ako argument voľby -u nezadá neplatný popisovač súboru." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3217,7 +3206,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3376,7 +3365,7 @@ msgstr "" " premenným $1, $2, .. $n. Ak nie sú zadané žiadne ARGumenty, všetky\n" " premenné shellu sa vypíšu." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3396,7 +3385,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3415,7 +3404,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3435,7 +3424,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3446,7 +3435,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3464,7 +3453,7 @@ msgstr "" " obsahujúceho SÚBOR sa použijú cesty z $PATH. Ak sú zadané nejaké\n" " ARGUMENTY, použijú sa ako pozičné argumenty pri vykonaní SÚBORu." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3478,7 +3467,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3625,7 +3614,7 @@ msgstr "" " nerovná, je menší, menší alebo rovný, väčší, väčší alebo rovný ako\n" " ARG2." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3636,7 +3625,7 @@ msgstr "" "Toto je synonymum vsatavanej funkcie „test“, ale posledný\n" " argument musí byť literál „]“, ktorý uzatvára otvárajúcu „[“." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3648,7 +3637,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3699,7 +3688,7 @@ msgstr "" " názvov signálov a ich zodpovedajúce čísla. Majte na pamäti, že signál\n" " je možné shellu poslať príkazom „kill -signal $$“." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3729,7 +3718,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3806,7 +3795,7 @@ msgstr "" " násobkoch 1024 bajtov okrem -t, ktorý je v sekundách, -p, ktorý je v\n" " násobkoch 512 bajtov a -u, čo znamená neobmedzený počet procesov." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3824,7 +3813,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3841,7 +3830,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -3861,7 +3850,7 @@ msgstr "" " byť ID procesu alebo určenie úlohy; ak je určená úloha, čaká sa\n" " na ukončenie všetkých procesov v rúre úlohy." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -3879,7 +3868,7 @@ msgstr "" " Pre každý prvok v SLOVÁch sa NÁZOV nastaví na hodnotu položky a\n" " vykonajú sa PRÍKAZY." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -3905,7 +3894,7 @@ msgstr "" " VÝR1, VÝR2 a VÝR3 sú aritmetické výrazy. Ak sa vykoná ktorýkoľvek\n" " výraz, chovanie je ako by sa vyhodnotil na 1." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -3936,7 +3925,7 @@ msgstr "" " na NULL. Načítaný riadok sa uloží do premennej ODPOVEĎ. PRÍKAZY\n" " sa vykonajú po každom výbere až kým sa nevykoná príkaz break." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -3958,7 +3947,7 @@ msgstr "" " zhrnutie časov v mierne odlišnom formáte. Ten použuje pre\n" " formátovanie výstupu premennú TIMEFORMAT." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -3972,7 +3961,7 @@ msgstr "" "Selektívne vykonávať PRÍKAZY na základe toho, či SLOVO zodpovedá VZORu.\n" " „|“ sa použije na oddelenie viacerých vzorov." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4004,7 +3993,7 @@ msgstr "" " posledného vykonaného príkazu alebo nula ak sa žiadna podmienka\n" " nevyhodnotila na pravdu." -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4018,7 +4007,7 @@ msgstr "" "Rozbaliť a vykonávať PRÍKAZY pokým posledný príkaz medzi PRÍKAZMI\n" " „while“ nemá návratovú hodnotu nula." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4032,7 +4021,7 @@ msgstr "" "Rozbaliť a vykonávať PRÍKAZY pokým posledný príkaz medzi PRÍKAZMI\n" " „until“ nemá nenulovú návratovú hodnotu." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4046,7 +4035,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4060,7 +4049,7 @@ msgstr "" "Spustiť množinu príkazov v skupine. Toto je jeden zo spôsobov ako\n" " presmerovať celú možinu príkazov." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4080,7 +4069,7 @@ msgstr "" " sa umiestni do pozadia, ako keby bola špecifikácia úlohy zadaná ako\n" " argument príkazu „bg“." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4094,7 +4083,7 @@ msgstr "" "VÝRAZ sa vyhodnotí podľa pravidiel aritmetického vyhodnocovania.\n" " Ekvivalentné s „let VÝRAZ“." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4138,7 +4127,7 @@ msgstr "" " && a || nevyhodnocujú VÝR2 ak hodnota VÝR1 postačuje na určenie\n" " hodnoty výrazu." -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4242,7 +4231,7 @@ msgstr "" " HISTIGNORE\tBodkočiarkami oddelený zoznam vzoriek, ktoré\n" " \t\tsa používajú na rozhodovanie, či sa príkaz uloží do histórie.\n" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4289,10 +4278,12 @@ msgstr "" " adr\tpridá ADR na vrchol zásobníka adresárov, čím sa tento stane\n" " \tnovým aktuálnym pracovným adresárom.\n" " \n" -" Zásobník adresárov môžete zobraziť príkazom „dirs“." +" Zásobník adresárov môžete zobraziť príkazom „dirs“. \n" +" Návratový kód:\n" +" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa\n" +" chyba pri zmene adresára." -#: builtins.c:1766 -#, fuzzy +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4318,10 +4309,16 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" -"Odstráni položky zo zásobníka adresárov. Bez argumentov odstráni\n" +"Odstráni položky zo zásobníka adresárov.\n" +" \n" +" Odstráni položky zo zásobníka adresárov. Bez argumentov odstráni\n" " vrchnú položku zo zásobníka a zmení adresár na adresár, ktorý\n" " sa následne nachádza na vrchu zásobníka.\n" " \n" +" Voľby:\n" +" -n\tpotlačí normálnu zmenu adresára pri odstraňovaní položiek\n" +" \tzo zásobníka, takže sa zmení iba zásobník.\n" +" \n" " +N\todstráni N-tú položku položku počítajúc zľava zoznamu,\n" " \tktorý zobrazuje „dirs“, počínajúc nulou. Napríklad: „popd +0“\n" " \todstráni prvý adresár, „popd +1“ druhý.\n" @@ -4330,13 +4327,13 @@ msgstr "" " \tktorý zobrazuje „dirs“, počínajúc nulou. Napríklad: „popd -0“\n" " \todstráni posledný adresár, „popd -1“ predposledný.\n" " \n" -" -n\tpotlačí normálnu zmenu adresára pri odstraňovaní položiek\n" -" \tzo zásobníka, takže sa zmení iba zásobník.\n" +" Zásobník adresárov môžete zobraziť príkazom „dirs“.\n" " \n" -" Zásobník adresárov môžete zobraziť príkazom „dirs“." +" Návratový kód:\n" +" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa\n" +" chyba pri zmene adresára." -#: builtins.c:1796 -#, fuzzy +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4364,25 +4361,30 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Zobrazí zoznam momentálne zapamätaných adresárov. Adresáre\n" +"Zobrazí zoznam momentálne zapamätaných adresárov.\n" +" \n" +" Zobrazí zoznam momentálne zapamätaných adresárov. Adresáre\n" " sa do zoznamu dostávajú príkazom „pushd“; zo zoznamu ich môžete\n" " vyberať postupne príkazom „popd“.\n" " \n" -" Voľba -l určuje, že „dirs“ nemá vypisovať skrátené verzie adresárov\n" -" relatívne vzhľadom na váš domovský adresár. To znamená, že\n" -" „~/bin“ sa môže zobraziť ako „/homes/bfox/bin“. Voľba -v spôsobí,\n" -" že „dirs“ vypíše zásobník adresárov vo formáte jedna položka na,\n" -" riadok a pred adresár vypíše jej pozíciu v zásobníku. Voľba -p robí\n" -" to sité, ale nepripája pozíciu v zásobníku.\n" -" Voľba -c vyprázdni zásobník adresárov zmazaním všetkých položiek.\n" +" Voľby:\n" +" -c\tvyprázdniť zásobník adresárov zmazaním všetkých položiek.\n" +" -l\tnevypisovať skrátené verzie adresárov vzhľadom na domovský\n" +" \trelatívne k vášmu domovskému adresáru\n" +" -p\tvypisovať zásobník adresárov vo formáte jedna položka na riadok\n" +" -v\tvypisovať zásobník adresárov vo formáte jedna položka na\n" +" \triadok a pred adresár vypísať jeho pozíciu v zásobníku.\n" " \n" -" +N\tzobrazuje N-tú položku počítajúc zľava zoznamu, ktorý zobrazuje\n" +" +N\tzobrazuje N-tú položku počítajúc zľava zoznamu, ktorý zobrazuje\n" " \tdirs vyvolaný bez volieb, počínajúc nulou.\n" " \n" -" -N\tzobrazuje N-tú položku počítajúc sprava zoznamu, ktorý zobrazuje\n" -" \tdirs vyvolaný bez volieb, počínajúc nulou." +" -N\tzobrazuje N-tú položku počítajúc sprava zoznamu, ktorý zobrazuje\n" +" \tdirs vyvolaný bez volieb, počínajúc nulou.\n" +" \n" +" Návratový kód:\n" +" Vráti 0 ak nebol zadaný neplatný argument a nevyskytla sa chyba." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4403,8 +4405,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 -#, fuzzy +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4433,18 +4434,27 @@ msgid "" "assignment\n" " error occurs." msgstr "" -"printf formátuje a vypisuje ARGUMENTY podľa FORMÁTu. FORMÁT\n" -" je reťazec znakov, ktorý obsahuje tri typy objektov: čisté znaky, ktoré\n" -" sa jednoducho skopírujú na štandardný výstup, únikové klauzuly, ktoré\n" -" sa nahradia zodpovedajúcim výstupom a skopírujú na štandardný výstup\n" -" a špecifikácie formátu, z ktorých každá spôsobí vypísanie nasledovného\n" -" argumentu. Okrem štandardných formátov printf(1), %b znamená\n" -" rozšíriť únikové klauzuly backspace v zodpovedajúcom argumente a %q\n" -" znamená dať argument do zátvoriek tak, aby ho bolo možné použiť ako\n" -" vstup shellu. Ak je daná voľba -v, výstup sa umiestni do hodnoty\n" -" premennej shellu VAR namiesto vypísania na štandardný výstup." +"printf formátuje a vypisuje ARGUMENTY podľa FORMÁTu.\n" +" \n" +" FORMÁT je reťazec znakov, ktorý obsahuje tri typy objektov: čisté " +"znaky, ktoré sa jednoducho skopírujú na štandardný výstup, únikové " +"klauzuly,\n" +" ktoré sa nahradia zodpovedajúcim výstupom a skopírujú na štandardný\n" +" výstup a špecifikácie formátu, z ktorých každá spôsobí vypísanie\n" +" nasledovného argumentu.\n" +" \n" +" Okrem štandardných formátov popísaných v printf(1) a printf(3)\n" +" printf rozoznáva:\n" +" \n" +" %b\trozšíriť únikové klauzuly backspace v zodpovedajúcom argumente\n" +" %q\tdať argument do zátvoriek tak, aby ho bolo možné použiť ako\n" +" \tvstup shellu.\n" +" \n" +" Návratový kód:\n" +" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba pri\n" +" zápise či priradení." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4466,8 +4476,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 -#, fuzzy +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -4479,12 +4488,15 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Zobrazí možné dokončenie v závislosti na voľbách. Slúži na použitie\n" -" z shell funkcií tvoriacich možné dokončenia Ak je daný voliteľný " -"parameter\n" -" SLOVO, tvoria sa zhody so SLOVOm." +"Zobrazí možné dokončenie v závislosti na voľbách.\n" +" \n" +" Slúži na použitie z shell funkcií tvoriacich možné dokončenia\n" +" Ak je daný voliteľný parameter SLOVO, tvoria sa zhody so SLOVOm.\n" +" \n" +" Návratový kód:\n" +" Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4513,7 +4525,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" @@ -4759,6 +4771,60 @@ msgstr "" #~ " voľba -V alebo -v, vypíše sa popis PRÍKAZU.\n" #~ " Voľba -V poskytuje podrobnejší výstup." +#~ msgid "" +#~ "Declare variables and/or give them attributes. If no NAMEs are\n" +#~ " given, then display the values of variables instead. The -p option\n" +#~ " will display the attributes and values of each NAME.\n" +#~ " \n" +#~ " The flags are:\n" +#~ " \n" +#~ " -a\tto make NAMEs arrays (if supported)\n" +#~ " -f\tto select from among function names only\n" +#~ " -F\tto display function names (and line number and source file name " +#~ "if\n" +#~ " \tdebugging) without definitions\n" +#~ " -i\tto make NAMEs have the `integer' attribute\n" +#~ " -r\tto make NAMEs readonly\n" +#~ " -t\tto make NAMEs have the `trace' attribute\n" +#~ " -x\tto make NAMEs export\n" +#~ " \n" +#~ " Variables with the integer attribute have arithmetic evaluation (see\n" +#~ " `let') done when the variable is assigned to.\n" +#~ " \n" +#~ " When displaying values of variables, -f displays a function's name\n" +#~ " and definition. The -F option restricts the display to function\n" +#~ " name only.\n" +#~ " \n" +#~ " Using `+' instead of `-' turns off the given attribute instead. " +#~ "When\n" +#~ " used in a function, makes NAMEs local, as with the `local' command." +#~ msgstr "" +#~ "Deklaruje premenné a/alebo im dodá argumenty. Ak nie sú zadané\n" +#~ " NÁZVY, zobraziť hodnoty premenných. Voľba -p zobrazí atribúty\n" +#~ " a hotnoty každého NÁZVU.\n" +#~ " \n" +#~ " Príznaky sú:\n" +#~ " \n" +#~ " -a\tna vytvorenie polí NÁZVOV (ak sú podporované)\n" +#~ " -f\tna výber iba spomedzi názvov funkcií\n" +#~ " -F\tna zobrazenie názvov funkcií (a čísla riadku a zdrojového " +#~ "súboru\n" +#~ " \tpre ladenie) bez definícií\n" +#~ " -i\taby mali NÁZVY atribút „integer“\n" +#~ " -r\taby boli NÁZVY len na čítanie\n" +#~ " -t\taby mali NÁZVY atribút „trace“\n" +#~ " -x\taby sa NÁZVY exportovali\n" +#~ " \n" +#~ " Premenné s atribútom integer vykonávajú aritmetické vyhodnocovanie " +#~ "(pozri\n" +#~ " „let“) po priradení výrazu premennej.\n" +#~ " \n" +#~ " Pri zobrazovaní hodnôt premenných, -f zobrazí názov a definíciu\n" +#~ " funkcie. Voľba -F obmedzí zobrazovanie iba na názov funkcie.\n" +#~ " \n" +#~ " Pomocou „+“ namiesto „-“ sa vypína daný atribút. Keď sa použije vo\n" +#~ " funkcii, spôsobí lokálnosť NÁZVOV ako pri príkaze „local“ command." + #~ msgid "Obsolete. See `declare'." #~ msgstr "Zastaralé. Pozri „declare“." diff --git a/po/sv.gmo b/po/sv.gmo index d0c03d1c4bbb11296f4bb426afbc63ce1947dfea..8c23ab5b67a4af228efe0f3046c086496f728186 100644 GIT binary patch literal 151712 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¨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 literal 6708 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ΠO+^hR52d?2cZj F{{qW#`0xM# diff --git a/po/sv.po b/po/sv.po index 57acb2ce..95a56860 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-09-15 13:09+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -18,26 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "felaktigt vektorindex" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: det går inte att konvertera en indexerad vektor till associativ" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: ogiltig nyckel till associativ vektor" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: det går inte att tilldela till ickenumeriska index" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: måste använda index vid tilldelning av associativ vektor" @@ -49,7 +49,9 @@ msgstr "%s: det går inte att skapa: %s" #: bashline.c:3190 msgid "bash_execute_unix_command: cannot find keymap for command" -msgstr "bash_execute_unix_command: det går inte att hitta en tangentbindning för kommandot" +msgstr "" +"bash_execute_unix_command: det går inte att hitta en tangentbindning för " +"kommandot" #: bashline.c:3268 #, c-format @@ -66,32 +68,32 @@ msgstr "ingen avslutande \"%c\" i %s" msgid "%s: missing colon separator" msgstr "%s: kolonseparator saknas" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "\"%s\": ogiltigt tangentbindningsnamn" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: det går inte att läsa: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "\"%s\": det går inte att avbinda" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "\"%s\": okänt funktionsnamn" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s är inte bundet till några tangenter.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s kan anropas via " @@ -104,6 +106,13 @@ msgstr "slingräknare" msgid "only meaningful in a `for', `while', or `until' loop" msgstr "endast meningsfullt i en \"for\"-, \"while\"- eller \"until\"-slinga" +#: builtins/caller.def:133 +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns " +msgstr "" + #: builtins/cd.def:215 msgid "HOME not set" msgstr "HOME är inte satt" @@ -230,12 +239,12 @@ msgstr "%s: inte inbyggt i skalet" msgid "write error: %s" msgstr "skrivfel: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: fel när aktuell katalog hämtades: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: tvetydig jobbspecifikation" @@ -271,7 +280,7 @@ msgstr "kan endast användas i en funktion" msgid "cannot use `-f' to make functions" msgstr "det går inte att använda \"-f\" för att göra funktioner" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: endast läsbar funktion" @@ -310,7 +319,7 @@ msgstr "%s: inte dynamiskt laddad" msgid "%s: cannot delete: %s" msgstr "%s: kan inte ta bort: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -326,7 +335,7 @@ msgstr "%s: inte en normal fil" msgid "%s: file is too large" msgstr "%s: filen är för stor" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: det kår inte att köra binär fil" @@ -410,8 +419,11 @@ msgstr[1] "Skalkommandon som matchar nyckelorden '" #: builtins/help.def:168 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "inget hjälpämne matchar \"%s\". Prova \"help help\" eller \"man -k %s\" eller \"info %s\"." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "" +"inget hjälpämne matchar \"%s\". Prova \"help help\" eller \"man -k %s\" " +"eller \"info %s\"." #: builtins/help.def:185 #, c-format @@ -446,7 +458,7 @@ msgstr "det går inte att använda mer än en av -anrw" msgid "history position" msgstr "historieposition" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: historieexpansionen misslyckades" @@ -473,12 +485,12 @@ msgstr "Okänt fel" msgid "expression expected" msgstr "uttryck förväntades" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: ogiltig filidentifierarspecifikation" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: ogiltig filbeskrivare: %s" @@ -556,10 +568,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" "\tdirs when invoked without options, starting with zero." msgstr "" "Visa listan av kataloger i minnet just nu. Kataloger hamnar i listan\n" @@ -665,19 +679,20 @@ msgstr "" " \n" " Den inbyggda \"dirs\" visar katalogstacken." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: ogiltig tidsgränsspecifikation" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "läsfel: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" -msgstr "det går bara att göra \"return\" från en funktion eller källinläst skript" +msgstr "" +"det går bara att göra \"return\" från en funktion eller källinläst skript" #: builtins/set.def:768 msgid "cannot simultaneously unset a function and a variable" @@ -846,36 +861,36 @@ msgstr "%s: obunden variabel" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\atiden gick ut i väntan på indata: automatisk utloggning\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "det går inte att omdiregera standard in från /dev/null: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: \"%c\": ogiltigt formateringstecken" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "rörfel" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: begränsat: det går inte att ange \"/\" i kommandonamn" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: kommandot finns inte" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: felaktig tolk" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "det går inte att duplicera fb %d till fb %d" @@ -950,7 +965,7 @@ msgstr "%s: uttrycksfel\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: det går inte att komma åt föräldrakatalogen" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "det går inte att återställa fördröjningsfritt läge för fb %d" @@ -958,151 +973,152 @@ msgstr "det går inte att återställa fördröjningsfritt läge för fb %d" #: input.c:258 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "det går inte att allokera en ny filbeskrivare för bashindata från fb %d" +msgstr "" +"det går inte att allokera en ny filbeskrivare för bashindata från fb %d" #: input.c:266 #, c-format msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffert finns redan för ny fb %d" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp rör" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "avgrenad pid %d fins i körande jobb %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "tar bort stoppat jobb %d med processgrupp %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) i the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) markerad som fortfarande vid liv" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ingen sådan pid" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Klart" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Stoppat" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Stoppat(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Kör" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Klart(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Avslut %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Okänd status" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(minnesutskrift skapad) " -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (ak: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "barns setpgid (%ld till %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld är inte ett barn till detta skal" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ingen uppgift om process %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: jobb %d är stoppat" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: jobbet har avslutat" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: jobb %d är redan i bakgrunden" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: rad %d: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (minnesutskrift skapad)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(ak nu: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp misslyckades" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: linjedisciplin" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "det går inte att sätta terminalprocessgrupp (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "ingen jobbstyrning i detta skal" @@ -1233,7 +1249,8 @@ msgstr "här-dokument på rad %d avgränsas av filslut (ville ha \"%s\")" #: make_cmd.c:746 #, c-format msgid "make_redirection: redirection instruction `%d' out of range" -msgstr "make_redirection: omdirigeringsinstruktion \"%d\" utanför giltigt intervall" +msgstr "" +"make_redirection: omdirigeringsinstruktion \"%d\" utanför giltigt intervall" #: parse.y:2982 parse.y:3204 #, c-format @@ -1355,31 +1372,31 @@ msgstr "cprintf: \"%c\": ogiltigt formateringstecken" msgid "file descriptor out of range" msgstr "filbeskrivare utanför giltigt intervall" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: tvetydig omdirigering" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: begränsad: det går inte att skriva över en existerande fil" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: begränsad: det går inte att omdirigera utdata" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "det går inte att skapa temporärfil för här-dokument: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port stöds inte utan nätverksfunktion" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "omdirigeringsfel: det går inte att duplicera fb" @@ -1448,7 +1465,7 @@ msgstr "" "Använd kommandot \"bashbug\" för att rapportera fel.\n" "Skicka synpunkter på översättningen till .\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: ogiltig operation" @@ -1622,77 +1639,77 @@ msgstr "Okänd signal nr " msgid "Unknown Signal #%d" msgstr "Okänd signal nr %d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "felaktig substitution: ingen avslutande \"%s\" i %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: det går inte att tilldela listor till vektormedlemmar" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "det går inte att skapa rör för processubstitution" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "det går inte att skapa barn för processubstitution" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "det går inte att öppna namngivet rör %s för läsning" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "det går inte att öppna namngivet rör %s för skrivning" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "det går inte att duplicera namngivet rör %s som fb %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "det går inte att skapa rör för kommandosubstitution" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "det går inte att skapa barn för kommandosubstitution" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: det går inte att duplicera rör som fb 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametern tom eller inte satt" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: delstränguttryck < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: felaktig substitution" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: det går inte att tilldela på detta sätt" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "felaktig ersättning: ingen avslutande \"`\" i %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "ingen match: %s" @@ -1729,21 +1746,24 @@ msgstr "%s: binär operator förväntades" msgid "missing `]'" msgstr "\"]\" saknas" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "ogiltigt signalnummer" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: felaktigt värde i trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "run_pending_traps: signalhanterare är SIG_DFL, skickar om %d (%s) till mig själv" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "" +"run_pending_traps: signalhanterare är SIG_DFL, skickar om %d (%s) till mig " +"själv" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: felaktig signal %d" @@ -1758,43 +1778,49 @@ msgstr "fel vid import av funktionsdefinition för \"%s\"" msgid "shell level (%d) too high, resetting to 1" msgstr "skalnivå (%d) för hög, återställer till 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ingen funktionskontext i aktuellt sammanhang" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ingen funktionskontext i aktuellt sammanhang" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "ogiltigt tecken %d i exportstr för %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "inget \"=\" i exportstr för %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" -msgstr "pop_var_context: huvudet på shell_variables är inte en funktionskontext" +msgstr "" +"pop_var_context: huvudet på shell_variables är inte en funktionskontext" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: ingen kontext global_variables" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "pop_scope: huvudet på shell_variables är inte en temporär omgivningsräckvidd" +msgstr "" +"pop_scope: huvudet på shell_variables är inte en temporär omgivningsräckvidd" #: version.c:46 msgid "Copyright (C) 2008 Free Software Foundation, Inc." msgstr "Copyright © 2008 Free Software Foundation, Inc." #: version.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Licens GPLv3+: GNU GPL version 3 eller senare \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Licens GPLv3+: GNU GPL version 3 eller senare \n" #: version.c:86 #, c-format @@ -1804,7 +1830,8 @@ msgstr "GNU bash, version %s (%s)\n" #: version.c:91 #, c-format msgid "This is free software; you are free to change and redistribute it.\n" -msgstr "Detta är fri programvara, det får fritt ändra och vidaredistribuera den.\n" +msgstr "" +"Detta är fri programvara, det får fritt ändra och vidaredistribuera den.\n" #: version.c:92 #, c-format @@ -1860,8 +1887,13 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] namn [namn ...]" #: builtins.c:51 -msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m tangentkarta] [-f filenamn] [-q namn] [-u namn] [-r tangentsekv] [-x tangentsekv:skalkommando] [tangentsekv:readline-funktion eller readline-kommando]" +msgid "" +"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpvsPVS] [-m tangentkarta] [-f filenamn] [-q namn] [-u namn] [-r " +"tangentsekv] [-x tangentsekv:skalkommando] [tangentsekv:readline-funktion " +"eller readline-kommando]" #: builtins.c:54 msgid "break [n]" @@ -1949,7 +1981,8 @@ msgstr "logout [n]" #: builtins.c:103 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e rnamn] [-lnr] [första] [sista] eller fc -s [mnst=ers] [kommando]" +msgstr "" +"fc [-e rnamn] [-lnr] [första] [sista] eller fc -s [mnst=ers] [kommando]" #: builtins.c:107 msgid "fg [job_spec]" @@ -1968,8 +2001,12 @@ msgid "help [-ds] [pattern ...]" msgstr "help [-ds] [mönster ...]" #: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [-d avstånd] [n] eller history -anrw [filnamn] eller history -ps arg [arg...]" +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"history [-c] [-d avstånd] [n] eller history -anrw [filnamn] eller history -" +"ps arg [arg...]" #: builtins.c:125 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" @@ -1980,16 +2017,24 @@ msgid "disown [-h] [-ar] [jobspec ...]" msgstr "disown [-h] [-ar] [jobbspec ...]" #: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s sigspec | -n signum | -sigspec] pid | jobbspec ... eller kill -l [sigspec]" +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobbspec ... eller kill -l " +"[sigspec]" #: builtins.c:134 msgid "let arg [arg ...]" msgstr "let arg [arg ...]" #: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a vektor] [-d avgr] [-i text] [-n ntkn] [-p prompt] [-t tidgräns] [-u fb] [namn ...]" +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a vektor] [-d avgr] [-i text] [-n ntkn] [-p prompt] [-t " +"tidgräns] [-u fb] [namn ...]" #: builtins.c:138 msgid "return [n]" @@ -2084,8 +2129,12 @@ msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case ORD in [MÖNSTER [| MÖNSTER]...) KOMMANDON ;;]... esac" #: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if KOMMANDON; then KOMMANDON; [ elif KOMMANDON; then KOMMANDON; ]... [ else KOMMANDON; ] fi" +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if KOMMANDON; then KOMMANDON; [ elif KOMMANDON; then KOMMANDON; ]... [ else " +"KOMMANDON; ] fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" @@ -2140,20 +2189,35 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v var] format [argument]" #: builtins.c:227 -msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-o flagga] [-A åtgärd] [-G globmnst] [-W ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S suffix] [namn ...]" +msgid "" +"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W " +"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o flagga] [-A åtgärd] [-G globmnst] [-W " +"ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S " +"suffix] [namn ...]" #: builtins.c:231 -msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-abcdefgjksuv] [-o flagga] [-A åtgärd] [-G globmnst] [-W ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S suffix] [ord]" +msgid "" +"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "" +"compgen [-abcdefgjksuv] [-o flagga] [-A åtgärd] [-G globmnst] [-W " +"ordlista] [-F funktion] [-C kommando] [-X filtermnst] [-P prefix] [-S " +"suffix] [ord]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" msgstr "compopt [-o|+o flagga] [namn ...]" #: builtins.c:238 -msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-n antal] [-O start] [-s antal] [-t] [-u fb] [-C återanrop] [-c kvanta] [vektor]" +msgid "" +"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"mapfile [-n antal] [-O start] [-s antal] [-t] [-u fb] [-C återanrop] [-c " +"kvanta] [vektor]" #: builtins.c:250 msgid "" @@ -2170,12 +2234,14 @@ msgid "" " -p\tPrint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has been\n" +" alias returns true unless a NAME is supplied for which no alias has " +"been\n" " defined." msgstr "" "Definiera eller visa alias.\n" " \n" -" Utan argumen skriver \"alias\" listan på alias på den återanvändbara formen\n" +" Utan argumen skriver \"alias\" listan på alias på den återanvändbara " +"formen\n" " \"alias NAMN=VÄRDE\" på standard ut.\n" " \n" " Annars är ett alias definierat för varje NAMN vars VÄRDE är angivet.\n" @@ -2217,20 +2283,24 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their values\n" -" -s List key sequences that invoke macros and their values\n" +" -S List key sequences that invoke macros and their " +"values\n" +" -s List key sequences that invoke macros and their " +"values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named function.\n" +" -u function-name Unbind all keys which are bound to the named " +"function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" @@ -2241,28 +2311,35 @@ msgid "" msgstr "" "Sätt Readline-tangentbindningar och -variabler.\n" " \n" -" Bind en tangentsekvens till en Readline-funktion eller -makro, eller sätt\n" +" Bind en tangentsekvens till en Readline-funktion eller -makro, eller " +"sätt\n" " en Readline-variabel. Syntaxen för argument vid sidan om flaggor är\n" -" densamma som den i ~/.inputrc, men måste skickas som ett ensamt argument:\n" +" densamma som den i ~/.inputrc, men måste skickas som ett ensamt " +"argument:\n" " t.ex., bind '\"\\C-x\\C-r\": re-read-init-file'.\n" " \n" " Flaggor:\n" " -m tangentkarta Använt TANGENTKARTA som tangentkarta under detta\n" " kommando. Acceptabla tangentkartenamn är emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command och vi-insert.\n" " -l Lista namnen på funktioner.\n" " -P List funktionsnamn och bindningar.\n" " -p List funktioner och bindningar på ett sätt som kan\n" " återanvändas som indata.\n" -" -S Lista tangentsekvenser som anropar makron och deras\n" +" -S Lista tangentsekvenser som anropar makron och " +"deras\n" " värden.\n" -" -s Lista tangentskevenser som anropar makron och deras\n" -" värden på ett sätt som kan återanvändas som indata.\n" +" -s Lista tangentskevenser som anropar makron och " +"deras\n" +" värden på ett sätt som kan återanvändas som " +"indata.\n" " -V Lista variabelnamn och värden\n" " -v Lista variabelnamn och värden på ett sätt som kan\n" " återanvändas som indata.\n" -" -q funktionsnamn Fråga efter vilka tangenter som anroper den namngivna\n" +" -q funktionsnamn Fråga efter vilka tangenter som anroper den " +"namngivna\n" " funktionen\n" " -u funktionsnamn Tag bort alla tangenter som är bundna till den\n" " namngivna funktionen.\n" @@ -2304,7 +2381,8 @@ msgid "" msgstr "" "Återuppta for-, while eller until-slinga.\n" " \n" -" Återuppta nästa iteration i den omslutande FOR-, WHILE- eller UNTIL-slingan.\n" +" Återuppta nästa iteration i den omslutande FOR-, WHILE- eller UNTIL-" +"slingan.\n" " Om N anges, återuppta den N:e omslutande slingan.\n" " \n" " Slutstatus:\n" @@ -2316,7 +2394,8 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the function.\n" +" as a shell function, but need to execute the builtin within the " +"function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2324,13 +2403,15 @@ msgid "" msgstr "" "Exekvera en i skalet inbyggd funktion.\n" " \n" -" Exekvera SKALINBYGGD med argument ARG utan att utföra kommandouppslagning.\n" +" Exekvera SKALINBYGGD med argument ARG utan att utföra " +"kommandouppslagning.\n" " Detta är användbart när du vill implementera om en inbyggd funktion i\n" " skalet som en skalfunktion, men behöver köra den inbyggda funktionen i\n" " skalfunktionen.\n" " \n" " Slutstatus:\n" -" Returnerar slutstatus från SKALINBYGGD, eller falkst om SKALINBYGGD inte\n" +" Returnerar slutstatus från SKALINBYGGD, eller falkst om SKALINBYGGD " +"inte\n" " är inbyggd i skalet." #: builtins.c:361 @@ -2365,16 +2446,22 @@ msgstr "" msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of the\n" +" Change the current directory to DIR. The default DIR is the value of " +"the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" -" A null directory name is the same as the current directory. If DIR begins\n" +" The variable CDPATH defines the search path for the directory " +"containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon " +"(:).\n" +" A null directory name is the same as the current directory. If DIR " +"begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is set,\n" -" the word is assumed to be a variable name. If that variable has a value,\n" +" If the directory is not found, and the shell option `cdable_vars' is " +"set,\n" +" the word is assumed to be a variable name. If that variable has a " +"value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2397,7 +2484,8 @@ msgstr "" " katalognamn är detsamma som aktuell katalog. Om KAT börjar med ett\n" " snedstreck (/) används inte CDPATH.\n" " \n" -" Om katalogen inte kan hittas, och skalvariabeln \"cdable_vars\" är satt,\n" +" Om katalogen inte kan hittas, och skalvariabeln \"cdable_vars\" är " +"satt,\n" " antas ordet vara ett variabelnamn. Om den variabeln har ett värde\n" " används dess värde för KAT.\n" " \n" @@ -2406,7 +2494,8 @@ msgstr "" " -P\tanvänd den fysiska katalogstrukturen utan att följa\n" " \tsymboliska länkar\n" " \n" -" Standardvärde är att följa symboliska längar, som om \"-L\" vore angivet.\n" +" Standardvärde är att följa symboliska längar, som om \"-L\" vore " +"angivet.\n" " \n" " Slutstatus:\n" " Returnerar 0 om katalogen är ändrad; skilt från noll annars." @@ -2436,7 +2525,8 @@ msgstr "" " Som standard beter sig \"pwd\" som om \"-L\" vore angivet.\n" " \n" " Slutstatus:\n" -" Returnerar 0 om inte en ogiltig flagga anges eller den aktuella katalogen\n" +" Returnerar 0 om inte en ogiltig flagga anges eller den aktuella " +"katalogen\n" " inte kan läsas." #: builtins.c:424 @@ -2484,7 +2574,8 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke commands\n" +" information about the specified COMMANDs. Can be used to invoke " +"commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2509,7 +2600,8 @@ msgstr "" " -V\tskriv en mer utförlig beskrivning om varje KOMMANDO\n" " \n" " Slutstatus:\n" -" Returnerar slutstatus från KOMMANDO, eller misslyckande om KOMMANDO inte\n" +" Returnerar slutstatus från KOMMANDO, eller misslyckande om KOMMANDO " +"inte\n" " finns." #: builtins.c:472 @@ -2540,7 +2632,8 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the `local'\n" +" When used in a function, `declare' makes NAMEs local, as with the " +"`local'\n" " command.\n" " \n" " Exit Status:\n" @@ -2572,11 +2665,13 @@ msgstr "" " För variabler med attributet heltal utförs atitmetisk beräkning (se\n" " kommandot \"let\") när variabeln tilldelas ett värde.\n" " \n" -" Vid användning i en funktion gör \"declare\" NAMN lokala, som med kommandot\n" +" Vid användning i en funktion gör \"declare\" NAMN lokala, som med " +"kommandot\n" " \"local\".\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar." #: builtins.c:508 msgid "" @@ -2607,7 +2702,8 @@ msgstr "" " Skapa en lokal variabel kallad NAMN, och ge den VÄRDE. FLAGGA kan\n" " vara alla flaggor som accepteras av \"declare\".\n" " \n" -" Lokala variabler kan endast användas i en funktion; de är synliga endast\n" +" Lokala variabler kan endast användas i en funktion; de är synliga " +"endast\n" " för funktionen de definieras i och dess barn.\n" " \n" " Slutstatus:\n" @@ -2752,7 +2848,8 @@ msgstr "" msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the shell,\n" +" Combine ARGs into a single string, use the result as input to the " +"shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2760,7 +2857,8 @@ msgid "" msgstr "" "Exekvera argument som ett skalkommando.\n" " \n" -" Kombinera ARGument till en enda sträng, och använd resultatet som indata\n" +" Kombinera ARGument till en enda sträng, och använd resultatet som " +"indata\n" " till skalet och exekvera de resulterande kommandona.\n" " \n" " Slutstatus:\n" @@ -2848,7 +2946,8 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " +"specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2856,15 +2955,18 @@ msgid "" " -c\t\texecute COMMAND with an empty environment\n" " -l\t\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, unless\n" +" If the command cannot be executed, a non-interactive shell exits, " +"unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error occurs." +" Returns success unless COMMAND is not found or a redirection error " +"occurs." msgstr "" "Ersätt skalet med det givna kommandot.\n" " \n" -" Exekvera KOMMANDO genom att ersätta detta skal med det angivna programmet.\n" +" Exekvera KOMMANDO genom att ersätta detta skal med det angivna " +"programmet.\n" " ARGUMENT blir argument till KOMMANDO. Om KOMMANDO inte anges kommer\n" " eventuella omdirigeringar att gälla för det aktuella skalet.\n" " \n" @@ -2896,7 +2998,8 @@ msgstr "" msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not executed\n" +" Exits a login shell with exit status N. Returns an error if not " +"executed\n" " in a login shell." msgstr "" "Avsluta ett inloggningsskal.\n" @@ -2908,13 +3011,15 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history list.\n" +" fc is used to list or edit and re-execute commands from the history " +"list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then " +"EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -2928,7 +3033,8 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error occurs." +" Returns success or status of executed command; non-zero if an error " +"occurs." msgstr "" "Visa eller kör kommandon från historielistan.\n" " \n" @@ -2947,8 +3053,10 @@ msgstr "" " Med formatet \"fc -s [mnst=ers ...] [kommando]\" körs KOMMANDO om efter\n" " att substitutionen GAMMALT=NYTT har utförts.\n" " \n" -" Ett användbart alias att använda med detta är r=\"fc -s\", så att skriva\n" -" \"r cc\" kör senaste kommandot som börjar med \"cc\" och att skriva \"r\" kör\n" +" Ett användbart alias att använda med detta är r=\"fc -s\", så att " +"skriva\n" +" \"r cc\" kör senaste kommandot som börjar med \"cc\" och att skriva \"r" +"\" kör\n" " om senaste kommandot.\n" " \n" " Slutstatus:\n" @@ -2980,8 +3088,10 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if " +"they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's " +"notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -2989,12 +3099,15 @@ msgid "" msgstr "" "Flytta jobb till bakgrunden.\n" " \n" -" Placera jobben som idintifieras av varje JOBBSPEC i bakgrunden som om de\n" -" hade startats med \"&\". Om ingen JOBBSPEC finns används skalets begrepp\n" +" Placera jobben som idintifieras av varje JOBBSPEC i bakgrunden som om " +"de\n" +" hade startats med \"&\". Om ingen JOBBSPEC finns används skalets " +"begrepp\n" " om det aktuella jobbet.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte jobbstyrning inte är aktiverat eller ett fel\n" +" Returnerar framgång om inte jobbstyrning inte är aktiverat eller ett " +"fel\n" " inträffar." #: builtins.c:763 @@ -3002,7 +3115,8 @@ msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is displayed.\n" +" no arguments are given, information about remembered commands is " +"displayed.\n" " \n" " Options:\n" " -d\t\tforget the remembered location of each NAME\n" @@ -3022,7 +3136,8 @@ msgstr "" "Kom ihåg eller visa programlägen.\n" " \n" " Bestäm och kom ihåg den fullständiga sökvägen till varje kommando NAMN.\n" -" Om inget argument ges visas information om kommandon som finns i minnet.\n" +" Om inget argument ges visas information om kommandon som finns i " +"minnet.\n" " \n" " Flaggor:\n" " -d\t\tglöm platsen i minnet för varje NAMN\n" @@ -3056,12 +3171,14 @@ msgid "" " PATTERN\tPattern specifiying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is given." +" Returns success unless PATTERN is not found or an invalid option is " +"given." msgstr "" "Visa information om inbyggda kommandon.\n" " \n" " Visar korta sammanfattningar om inbyggda kommandon. Om MÖNSTER anges\n" -" ges detaljerad hjälp om alla kommandon som matchar MÖNSTER, annars skrivs\n" +" ges detaljerad hjälp om alla kommandon som matchar MÖNSTER, annars " +"skrivs\n" " listan med hjälpämnen.\n" " \n" " Flaggor:\n" @@ -3074,7 +3191,8 @@ msgstr "" " MÖNSTER\tMönster som anger hjälpämnen\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte MÖNSTER inte finns eller en ogiltig flagga ges." +" Returnerar framgång om inte MÖNSTER inte finns eller en ogiltig flagga " +"ges." #: builtins.c:812 msgid "" @@ -3103,7 +3221,8 @@ msgid "" " \n" " If the $HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed otherwise.\n" +" with each displayed history entry. No time stamps are printed " +"otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -3127,15 +3246,19 @@ msgstr "" " \tatt lagra det i historielistan\n" " -s\tlägg till ARG till historielistan som en ensam post\n" " \n" -" Om FILENAMN anges används det som historiefil. Annars, om $HISTFILE har\n" +" Om FILENAMN anges används det som historiefil. Annars, om $HISTFILE " +"har\n" " ett värde används det, annars ~/.bash_history.\n" " \n" -" Om variabeln $HISTTIMEFORMAT är satt och inte tom används dess värde som\n" -" en formatsträng till strftime(3) för att skriva tidsstämplar tillhörande\n" +" Om variabeln $HISTTIMEFORMAT är satt och inte tom används dess värde " +"som\n" +" en formatsträng till strftime(3) för att skriva tidsstämplar " +"tillhörande\n" " varje visad historiepost. Inga tidsstämplar skrivs annars.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar." #: builtins.c:848 msgid "" @@ -3177,7 +3300,8 @@ msgstr "" " i ARG har ersatts med process-id:t för det jobbets processgruppledare.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar.\n" +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar.\n" " Om -x används returneras slutstatus från KOMMANDO." #: builtins.c:875 @@ -3233,7 +3357,8 @@ msgid "" msgstr "" "Skicka en signal till ett jobb.\n" " \n" -" Skicka processerna som identifieras av PID eller JOBBSPEC signalerna som\n" +" Skicka processerna som identifieras av PID eller JOBBSPEC signalerna " +"som\n" " namnges av SIGSPEC eller SIGNUM. Om varken SIGSPEC eller SIGNUM är\n" " angivna antas SIGTERM.\n" " \n" @@ -3243,8 +3368,10 @@ msgstr "" " -l\tlista signalnamnen. Om argument följer \"-l\" antas de vara\n" " \tsignalnummer som namn skall listas för\n" " \n" -" Kill är inbyggt i skalet av två skäl: det tillåter att jobb-id:n används\n" -" istället för process-id:n, och det tillåter processer att dödas om gränsen\n" +" Kill är inbyggt i skalet av två skäl: det tillåter att jobb-id:n " +"används\n" +" istället för process-id:n, och det tillåter processer att dödas om " +"gränsen\n" " för hur många processer du får skapa har nåtts.\n" " \n" " Slutstatus:\n" @@ -3258,7 +3385,8 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are listed\n" +" grouped into levels of equal-precedence operators. The levels are " +"listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -3296,10 +3424,12 @@ msgid "" msgstr "" "Evaluera aritmetiska uttryck.\n" " \n" -" Evaluera varje ARG som ett aritmetiskt uttryck. Evaluering görs i heltal\n" +" Evaluera varje ARG som ett aritmetiskt uttryck. Evaluering görs i " +"heltal\n" " med fix bredd utan kontroll av spill, fast division med 0 fångas och\n" " flaggas som ett fel. Följande lista över operatorer är grupperad i\n" -" nivåer av operatorer med samma precedens. Nivåerna är listade i ordning\n" +" nivåer av operatorer med samma precedens. Nivåerna är listade i " +"ordning\n" " med sjunkande precedens.\n" " \n" " \tid++, id--\tpostinkrementering av variabel, postdekrementering\n" @@ -3328,24 +3458,30 @@ msgstr "" " uttryck. Variablerna behöver inte ha sina heltalsattribut påslagna för\n" " att användas i ett uttryck.\n" " \n" -" Operatorer beräknas i precedensordning. Delutryck i parenteser beräknas\n" +" Operatorer beräknas i precedensordning. Delutryck i parenteser " +"beräknas\n" " först och kan åsidosätta precedensreglerna ovan.\n" " \n" " Slutstatus:\n" -" Om det sista ARG beräknas till 0, returnerar let 1; let returnerar 0 annars." +" Om det sista ARG beräknas till 0, returnerar let 1; let returnerar 0 " +"annars." #: builtins.c:962 +#, fuzzy msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with word\n" +" if the -u option is supplied. The line is split into fields as with " +"word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as word\n" +" the last NAME. Only the characters found in $IFS are recognized as " +"word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY " +"variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3360,29 +3496,35 @@ msgid "" " \t\tattempting to read\n" " -r\t\tdo not allow backslashes to escape any characters\n" " -s\t\tdo not echo input coming from a terminal\n" -" -t timeout\ttime out and return failure if a complete line of input is\n" +" -t timeout\ttime out and return failure if a complete line of input " +"is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times out,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" "Läs en rad från standard in och dela upp den i fält.\n" " \n" " Läser en ensam rad från standard in, eller från filbeskrivare FB om\n" -" flaggan -u ges. Raden delas upp i fält som vid orduppdelning, och första\n" -" ordet tilldelas det första NAMNet, andra ordet till det andra NAMNet, och\n" +" flaggan -u ges. Raden delas upp i fält som vid orduppdelning, och " +"första\n" +" ordet tilldelas det första NAMNet, andra ordet till det andra NAMNet, " +"och\n" " så vidare, med eventuella återstående ord tilldelade till det sista\n" " NAMNet. Endast tecknen som finns i $IFS används som ordavgränsare.\n" " \n" " Om inga NAMN anges, lagras den inlästa raden i variabeln REPLY.\n" " \n" " Flaggor:\n" -" -a vektor\ttilldela de inlästa orden till sekvensiella index i vektor-\n" +" -a vektor\ttilldela de inlästa orden till sekvensiella index i " +"vektor-\n" " \t\tvariabeln VEKTOR, med start från noll\n" " -d avgr\tfortsätt tills det första tecknet i AVGR lästs, istället för\n" " \t\tnyrad\n" @@ -3405,7 +3547,7 @@ msgstr "" " Returkoden är noll om inte filslut nås, läsningens tidsgräns överskrids\n" " eller en ogiltig filbeskrivare ges som argument till -u." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3426,7 +3568,7 @@ msgstr "" " Returnerar N, eller misslyckande om skalet inte kör en funktion eller\n" " skript." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3469,7 +3611,8 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero status\n" +" or zero if no command exited with a non-zero " +"status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3517,7 +3660,8 @@ msgstr "" " -e Avsluta omedelbart om ett kommando avslutar med nollskild status.\n" " -f Avaktivera filnamnsgenerering (globbing).\n" " -h Kom ihåg platsen för kommandon när de slås upp.\n" -" -k Alla tilldelningsargument placeras i miljön för ett kommando, inte\n" +" -k Alla tilldelningsargument placeras i miljön för ett kommando, " +"inte\n" " bara de som föregår kommandonamnet.\n" " -m Jobbstyrning är aktiverat.\n" " -n Läs kommandon men exekvera dem inte.\n" @@ -3532,7 +3676,8 @@ msgstr "" " hashall samma som -h\n" " histexpand samma som -H\n" " history aktivera kommandohistoria\n" -" ignoreeof skalet kommer inte avsluta vid läsning av filslut\n" +" ignoreeof skalet kommer inte avsluta vid läsning av " +"filslut\n" " interactive-comments\n" " tillåt kommentarer att förekomma i interaktiva\n" " kommandon\n" @@ -3559,7 +3704,8 @@ msgstr "" " xtrace samma som -x\n" " -p Slås på när den verkliga och effektiva användar-id:n inte stämmer\n" " överens. Avaktiverar bearbetning av $ENV-filen och import av\n" -" skalfunktioner. Att slå av denna flagga får den effektiva uid och\n" +" skalfunktioner. Att slå av denna flagga får den effektiva uid " +"och\n" " gid att sättas till den verkliga uid och gid.\n" " -t Avsluta efter att ha läst och exekverat ett kommando.\n" " -u Behandla osatta variabler som fel vid substitution.\n" @@ -3574,10 +3720,12 @@ msgstr "" " -P Om satt följs inte symboliska länkar när kommandon såsom cd körs\n" " som ändrar aktuell katalog.\n" " -T Om satt ärvs DEBUG-fällan av skalfunktioner.\n" -" - Tilldela eventuella återstående argument till positionsparametrar.\n" +" - Tilldela eventuella återstående argument till " +"positionsparametrar.\n" " Flaggorna -x och -v slås av.\n" " \n" -" Användning av + istället för - får dessa flaggor att slås av. Flaggorna\n" +" Användning av + istället för - får dessa flaggor att slås av. " +"Flaggorna\n" " kan även användas vid uppstart av skalet. Den aktuella uppsättningen\n" " flaggor finns i $-. De återstående n ARGumenten är positionsparametrar\n" " och tilldelas, i ordning, till $1, $2, .. $n. Om inga ARGument ges\n" @@ -3586,7 +3734,7 @@ msgstr "" " Slutstatus:\n" " Returnerar framgång om inte en ogiltig flagga ges." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3596,7 +3744,8 @@ msgid "" " -f\ttreat each NAME as a shell function\n" " -v\ttreat each NAME as a shell variable\n" " \n" -" Without options, unset first tries to unset a variable, and if that fails,\n" +" Without options, unset first tries to unset a variable, and if that " +"fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3621,12 +3770,13 @@ msgstr "" " Returnerar framgång om inte en ogiltig flagga ges eller NAMN endast är\n" " läsbart." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before " +"exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3653,7 +3803,7 @@ msgstr "" " Slutstatus:\n" " Returnerar framgång om inte en ogiltig flagga ges eller NAMN är ogiltigt." -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3689,7 +3839,7 @@ msgstr "" " Slutstatus:\n" " Returnerar framgång om inte en ogiltig flagga ges eller NAMN är ogiltigt." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3701,13 +3851,14 @@ msgid "" msgstr "" "Skifta positionsparametrar.\n" " \n" -" Byt namn på positionsparametrarna $N+1,$N+2 ... till $1,$2 ... Om N inte\n" +" Byt namn på positionsparametrarna $N+1,$N+2 ... till $1,$2 ... Om N " +"inte\n" " anges antas det vara 1.\n" " \n" " Slutstatus:\n" " Returnerar framgång om inte N är negativt eller större än $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3722,7 +3873,8 @@ msgid "" msgstr "" "Exekvera kommandon från en fil i det aktuella skalet.\n" " \n" -" Läs och exekvera kommandon från FILNAMN i det aktuella skalet. Posterna\n" +" Läs och exekvera kommandon från FILNAMN i det aktuella skalet. " +"Posterna\n" " i $PATH används för att hitta katalogen som innehåller FILNAMN. Om\n" " något ARGUMENT ges blir de positionsparametrar när FILNAMN körs.\n" " \n" @@ -3730,7 +3882,7 @@ msgstr "" " Returnerar status på det sista kommandot som körs i FILNAMN, misslyckas\n" " om FILNAMN inte kan läsas." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3752,10 +3904,11 @@ msgstr "" " -f\tframtvinga suspendering, även om skalet är ett inloggningsskal\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte jobbstyrning inte är aktiverat eller ett fel\n" +" Returnerar framgång om inte jobbstyrning inte är aktiverat eller ett " +"fel\n" " inträffar." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3786,7 +3939,8 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last read.\n" +" -N FILE True if the file has been modified since it was last " +"read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3807,7 +3961,8 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 lexicographically.\n" +" True if STRING1 sorts before STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3901,7 +4056,7 @@ msgstr "" " Returnerar framgång om UTTR beräknas till sant. Misslyckas ifall UTTR\n" " beräknas till falskt eller ett ogiltigt argument ges." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3910,14 +4065,16 @@ msgid "" msgstr "" "Beräkna villkorligt uttryck.\n" " \n" -" Detta är en synonym till det inbyggda \"test\", men det sista argumentet\n" +" Detta är en synonym till det inbyggda \"test\", men det sista " +"argumentet\n" " måste vara en bokstavlig \"]\", för att matcha den inledande \"[\"." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of its\n" +" Prints the accumulated user and system times for the shell and all of " +"its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -3925,17 +4082,19 @@ msgid "" msgstr "" "Visa processtider.\n" " \n" -" Skriver ut den sammanlagda användar- och systemtiden för skalet och alla\n" +" Skriver ut den sammanlagda användar- och systemtiden för skalet och " +"alla\n" " dess barnprocesser.\n" " \n" " Slutstatus:\n" " Lyckas alltid." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives signals\n" +" Defines and activates handlers to be run when the shell receives " +"signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -3944,22 +4103,26 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " +"If\n" " a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\n" " \n" -" If no arguments are supplied, trap prints the list of commands associated\n" +" If no arguments are supplied, trap prints the list of commands " +"associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal " +"number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is given." +" Returns success unless a SIGSPEC is invalid or an invalid option is " +"given." msgstr "" "Fånga signaler och andra händelser.\n" " \n" @@ -3975,7 +4138,8 @@ msgstr "" " Om en SIGNALSPEC är EXIT (0) exekveras ARG vid avslut från skalet. Om\n" " en SIGNALSPEC är DEBUG exekveras ARG före varje enkelt kommando.\n" " \n" -" Om inga argument ges skriver trap listan av kommandon som hör till varje\n" +" Om inga argument ges skriver trap listan av kommandon som hör till " +"varje\n" " signal.\n" " \n" " Flaggor:\n" @@ -3987,10 +4151,11 @@ msgstr "" " frivilligt. En signal kan skickas till skalet med \"kill -signal $$\".\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en SIGSPEC är ogiltig eller en ogiltig flagga\n" +" Returnerar framgång om inte en SIGSPEC är ogiltig eller en ogiltig " +"flagga\n" " ges." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -4016,7 +4181,8 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not found." +" Returns success if all of the NAMEs are found; fails if any are not " +"found." msgstr "" "Visa information om kommandotyper.\n" " \n" @@ -4034,8 +4200,10 @@ msgstr "" " -p\treturnerar antingen namnet på diskfilen som skulle exekverats,\n" " \teller ingenting om \"type -t NAMN\" inte skulle returnerat \"file\".\n" " -t\tskriv ut ett ensamt ord som är ett av \"alias\", \"keyword\",\n" -" \t\"function\", \"builtin\", \"file\" eller \"\", om NAMN är ett alias, ett\n" -" \treserverat ord i skalet, en skalfunktion, inbyggt i skalet, en diskfil\n" +" \t\"function\", \"builtin\", \"file\" eller \"\", om NAMN är ett alias, " +"ett\n" +" \treserverat ord i skalet, en skalfunktion, inbyggt i skalet, en " +"diskfil\n" " \trespektive inte finns\n" " \n" " Argument:\n" @@ -4044,11 +4212,12 @@ msgstr "" " Slutstatus:\n" " Returnerar framgång om alla NAMNen finns, misslyckas om något inte finns." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and processes\n" +" Provides control over the resources available to the shell and " +"processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -4088,7 +4257,8 @@ msgid "" msgstr "" "Modifiera skalresursgränser.\n" " \n" -" Ger kontroll över resurserna som är tillgängliga till skalet och processer\n" +" Ger kontroll över resurserna som är tillgängliga till skalet och " +"processer\n" " det skapar, på system som möjliggör sådan styrning.\n" " \n" " Flaggor:\n" @@ -4115,18 +4285,22 @@ msgstr "" " -x\tdet maximala antalet fillås\n" " \n" " Om GRÄNS anges är det ett nytt värde för den specificerade resursen; de\n" -" speciella GRÄNS-värdena \"soft\", \"hard\" och \"unlimited\" står för den\n" -" aktuella mjuka gränsen, den aktuella hårda grånsen respektive inge gräns.\n" +" speciella GRÄNS-värdena \"soft\", \"hard\" och \"unlimited\" står för " +"den\n" +" aktuella mjuka gränsen, den aktuella hårda grånsen respektive inge " +"gräns.\n" " Annars skrivs det aktuella värdet på den specificerade resursen. Om\n" " ingen flagga ges antas -f.\n" " \n" -" Värden är i 1024-bytesteg, utom för -t som är i sekunder, -p som är i steg\n" +" Värden är i 1024-bytesteg, utom för -t som är i sekunder, -p som är i " +"steg\n" " på 512 byte och -u som är ett antal processer utan någon skalning.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga anges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga anges eller ett fel " +"inträffar." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4148,7 +4322,8 @@ msgstr "" " Sätter användarens filskapningsmask till RÄTTIGHETER. Om RÄTTIGHETER\n" " utelämnas skrivs det aktuella värdet på masken.\n" " \n" -" Om RÄTTIGHETER börjar med en siffra tolkas det som ett oktalt tal, annars\n" +" Om RÄTTIGHETER börjar med en siffra tolkas det som ett oktalt tal, " +"annars\n" " är det en symbolisk rättighetssträng som den som tas av chmod(1).\n" " \n" " Flaggor:\n" @@ -4157,21 +4332,24 @@ msgstr "" " -S\tgör utmatningen symbolisk, annars används oktala tal\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte RÄTTIGHETER är ogiltig eller en ogiltig flagga\n" +" Returnerar framgång om inte RÄTTIGHETER är ogiltig eller en ogiltig " +"flagga\n" " ges." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" " Waits for the process identified by ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" -" status is zero. If ID is a a job specification, waits for all processes\n" +" status is zero. If ID is a a job specification, waits for all " +"processes\n" " in the job's pipeline.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Vänta på att jobb blir färdiga och returnerar slutstatus.\n" @@ -4183,10 +4361,11 @@ msgstr "" " jobbets rör.\n" " \n" " Slutstatus:\n" -" Returnerar status på ID, misslyckas ifall ID är ogiltig eller en ogiltig\n" +" Returnerar status på ID, misslyckas ifall ID är ogiltig eller en " +"ogiltig\n" " flagga ges." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4195,20 +4374,24 @@ msgid "" " and the return code is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Vänta på att en process blir färdig och returnerar slutstatus.\n" " \n" -" Väntar på den angivna processen och rapportera dess avslutningsstatus. Om\n" -" PID inte ges, vänta på alla nu körande barnprocesser, och returstatus är\n" +" Väntar på den angivna processen och rapportera dess avslutningsstatus. " +"Om\n" +" PID inte ges, vänta på alla nu körande barnprocesser, och returstatus " +"är\n" " noll. PID måste vara en process-id.\n" " \n" " Slutstatus:\n" -" Returnerar status på ID, misslyckas ifall ID är ogiltig eller en ogiltig\n" +" Returnerar status på ID, misslyckas ifall ID är ogiltig eller en " +"ogiltig\n" " flagga ges." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4223,14 +4406,15 @@ msgstr "" "Exekvera kommandon för varje medlem i en lista.\n" " \n" " \"for\"-slingan exekverar en sekvens av kommandon för varje medlem i en\n" -" lista av element. Om \"in ORD ...;\" inte är med antas 'in \"$@\"'. För\n" +" lista av element. Om \"in ORD ...;\" inte är med antas 'in \"$@\"'. " +"För\n" " varje element i ORD sätts NAMN till det elementet, och KOMMANDON\n" " exekveras.\n" " \n" " Slutstatus:\n" " Returnerar status för det sist exekverade kommandot." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4260,7 +4444,7 @@ msgstr "" " Slutstatus:\n" " Returnerar statusen från det sist exekverade kommandot." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4295,7 +4479,7 @@ msgstr "" " Sluttatus:\n" " Returnerar statusen från det sist exekverade kommandot." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4324,7 +4508,7 @@ msgstr "" " Slutstatus:\n" " Returstatusen är returstatusen från RÖR." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4342,16 +4526,21 @@ msgstr "" " Slutstatus:\n" " Returnerar statusen från det sist exekverade kommandot." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then " +"the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " +"is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of the\n" -" entire construct is the exit status of the last command executed, or zero\n" +" `then COMMANDS' list is executed and the if command completes. " +"Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of " +"the\n" +" entire construct is the exit status of the last command executed, or " +"zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -4359,10 +4548,13 @@ msgid "" msgstr "" "Exekvera kommndon baserat på ett villkor.\n" " \n" -" Listan \"if KOMMANDON\" exekveras. Om des slutstatus är noll så exekveras\n" -" listan \"then COMMANDS\". Annars exekveras varje lista \"elif KOMMANDON\"\n" +" Listan \"if KOMMANDON\" exekveras. Om des slutstatus är noll så " +"exekveras\n" +" listan \"then COMMANDS\". Annars exekveras varje lista \"elif KOMMANDON" +"\"\n" " i tur och ordning, och om dess slutstatus är noll exekveras motsvarande\n" -" lista \"then COMMANDS\" och if-kommandot avslutar. Annars exekveras listan\n" +" lista \"then COMMANDS\" och if-kommandot avslutar. Annars exekveras " +"listan\n" " \"else COMMANDS\" om den finns. Slutstatus av hela konstruktionen är\n" " slutstatusen på det sist exekverade kommandot, eller noll om inget\n" " villkor returnerade sant.\n" @@ -4370,7 +4562,7 @@ msgstr "" " Slutstatus:\n" " Returnerar status från det sist exekverade kommandot." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4388,7 +4580,7 @@ msgstr "" " Slutstatus:\n" " Returnerar statusen från det sist exekverade kommandot." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4406,12 +4598,13 @@ msgstr "" " Slutstatus:\n" " Returnerar statusen från det sist exekverade kommandot." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is " +"invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4428,7 +4621,7 @@ msgstr "" " Slutstatus:\n" " Returnerar framgång om inte NAMN endast är läsbart." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4446,7 +4639,7 @@ msgstr "" " Slutstatus:\n" " Returnerar stutusen från det sist exekverade kommandot." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4470,7 +4663,7 @@ msgstr "" " Slutstatus:\n" " Returnerar statusen på det återupptagna jobbet." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4488,13 +4681,16 @@ msgstr "" " Slutstatus:\n" " Returnerar 1 om UTTRYCK beräknas till 0, returnerar 0 annars." -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries used\n" -" by the `test' builtin, and may be combined using the following operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the " +"conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries " +"used\n" +" by the `test' builtin, and may be combined using the following " +"operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -4515,7 +4711,8 @@ msgstr "" "Kör ett villkorligt kommando.\n" " \n" " Returnerar en status av 0 eller 1 beroende på evalueringen av det\n" -" villkorliga uttrycket UTTRYCK. Uttryck är sammansatta av samma primitiver\n" +" villkorliga uttrycket UTTRYCK. Uttryck är sammansatta av samma " +"primitiver\n" " som används av det inbyggda \"test\", och kan kombineras med följande\n" " operatorer:\n" " \n" @@ -4525,8 +4722,10 @@ msgstr "" " UTTR1 || UTTR2\tSant om antingen UTTR1 eller UTTR2 är sant, annars\n" " falskt\n" " \n" -" När operatorerna \"==\" och \"!=\" används används strängen till höger om\n" -" som ett mönster och mönstermatchning utförs. När operatorn \"=~\" används\n" +" När operatorerna \"==\" och \"!=\" används används strängen till höger " +"om\n" +" som ett mönster och mönstermatchning utförs. När operatorn \"=~\" " +"används\n" " matchas strängen till höger om operatorn som ett reguljärt uttryck.\n" " \n" " Operatorerna && och || beräknar inte UTTR2 om UTTR1 är tillräckligt för\n" @@ -4535,7 +4734,7 @@ msgstr "" " Slutstatus:\n" " 0 eller 1 beroende på värdet av UTTRYCK." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4640,7 +4839,7 @@ msgstr "" " HISTIGNORE\tEn kolonseparerad lista av mönster som används för att\n" " \t\tbestämma vilka kommandon som skall sparas i historielistan.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4698,7 +4897,7 @@ msgstr "" " Returnerar framgång om inte ett ogiltigt argument ges eller bytet av\n" " katalog misslyckas." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4748,7 +4947,7 @@ msgstr "" " Returnerar framgång om inte ett ogiltigt argument ges eller bytet av\n" " katalog misslyckas." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4765,10 +4964,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" " Exit Status:\n" @@ -4796,14 +4997,16 @@ msgstr "" " \tav dirs när det anropas utan fläggor, med början från noll.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" " Change the setting of each shell option OPTNAME. Without any option\n" -" arguments, list all shell options with an indication of whether or not each\n" +" arguments, list all shell options with an indication of whether or not " +"each\n" " is set.\n" " \n" " Options:\n" @@ -4833,7 +5036,7 @@ msgstr "" " Returnerar framgång om FLGNAMN är aktiverat, misslyckas om en ogiltig\n" " flagga ges eller FLGNAMN är avaktiverat." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4841,20 +5044,25 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: plain\n" -" characters, which are simply copied to standard output; character escape\n" +" FORMAT is a character string which contains three types of objects: " +"plain\n" +" characters, which are simply copied to standard output; character " +"escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next successive\n" +" format specifications, each of which causes printing of the next " +"successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in printf(1)\n" +" In addition to the standard format specifications described in printf" +"(1)\n" " and printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or assignment\n" +" Returns success unless an invalid option is given or a write or " +"assignment\n" " error occurs." msgstr "" "Formatera och skriv ARGUMENT styrda av FORMAT.\n" @@ -4865,7 +5073,8 @@ msgstr "" " \n" " FORMAT är en teckensträng som innehåller tre sortes objekt: vanliga\n" " tecken, som helt enkelt kopieras till standard ut, teckenstyrsekvenser\n" -" som konverteras och kopieras till standard ut och formatspecifikationer,\n" +" som konverteras och kopieras till standard ut och " +"formatspecifikationer,\n" " där var och en medför utskrift av det nästföljande argumentet.\n" " argument.\n" " \n" @@ -4880,12 +5089,14 @@ msgstr "" " Returnerar framgång om inte en ogiltig flagga ges eller ett skriv-\n" " eller tilldelningsfel inträffar." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no options\n" -" are supplied, existing completion specifications are printed in a way that\n" +" For each NAME, specify how arguments are to be completed. If no " +"options\n" +" are supplied, existing completion specifications are printed in a way " +"that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -4915,14 +5126,16 @@ msgstr "" " versala flaggorna är uppräknade ovan.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches against\n" +" completions. If the optional WORD argument is supplied, matches " +"against\n" " WORD are generated.\n" " \n" " Exit Status:\n" @@ -4935,15 +5148,19 @@ msgstr "" " matchningar av ORD.\n" " \n" " Slutstatus:\n" -" Returnerar framgång om inte en ogiltig flagga ges eller ett fel inträffar." +" Returnerar framgång om inte en ogiltig flagga ges eller ett fel " +"inträffar." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" -" the completion currently begin executed. If no OPTIONs are givenm, print\n" -" the completion options for each NAME or the current completion specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are " +"supplied,\n" +" the completion currently begin executed. If no OPTIONs are givenm, " +"print\n" +" the completion options for each NAME or the current completion " +"specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -4964,7 +5181,8 @@ msgid "" msgstr "" "Modifiera eller visa kompletteringsflaggor.\n" " \n" -" Modifiera kompletteringsflaggorna för varje NAMN, eller, om inga NAMN är\n" +" Modifiera kompletteringsflaggorna för varje NAMN, eller, om inga NAMN " +"är\n" " givna, den komplettering som för närvarande körs. Om ingen FLAGGA är\n" " given skrivs kompletteringsflaggorna för varje NAMN eller den aktuella\n" " kompletteringsspecifikationen.\n" @@ -4972,12 +5190,14 @@ msgstr "" " Flaggor:\n" " \t-o flagga\tSätt kompletteringsflagga FLAGGA för varje NAMN\n" " \n" -" Genom att använda \"+o\" istället för \"-o\" slås den angivna flaggan av.\n" +" Genom att använda \"+o\" istället för \"-o\" slås den angivna flaggan " +"av.\n" " \n" " Argument:\n" " \n" " Varje NAMN refererar till ett kommando för vilket en kompletterings-\n" -" specifikation måste ha definierats tidigare med det inbyggda \"complete\".\n" +" specifikation måste ha definierats tidigare med det inbyggda \"complete" +"\".\n" " Om inget NAMN ges måste compopt anropas av en funktion som just nu\n" " genererar kompletteringar, och flaggorna för den just nu exekverande\n" " kompletteringsgeneratorn modifieras.\n" @@ -4986,29 +5206,36 @@ msgstr "" " Returnerar framgång om inte en ogiltig flagga ges eller NAMN inte har\n" " någon kompletteringsspecifikaation definierad." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" -" Read lines from the standard input into the array variable ARRAY, or from\n" -" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n" +" Read lines from the standard input into the array variable ARRAY, or " +"from\n" +" file descriptor FD if the -u option is supplied. The variable MAPFILE " +"is\n" " the default ARRAY.\n" " \n" " Options:\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied.\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0.\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " +"copied.\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " +"index is 0.\n" " -s count \tDiscard the first COUNT lines read.\n" " -t\t\tRemove a trailing newline from each line read.\n" -" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n" +" -u fd\t\tRead lines from file descriptor FD instead of the standard " +"input.\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read.\n" -" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n" +" -c quantum\tSpecify the number of lines read between each call to " +"CALLBACK.\n" " \n" " Arguments:\n" " ARRAY\t\tArray variable name to use for file data.\n" " \n" " If -C is supplied without -c, the default quantum is 5000.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY " +"before\n" " assigning to it.\n" " \n" " Exit Status:\n" @@ -5021,8 +5248,10 @@ msgstr "" " för VEKTOR.\n" " \n" " Flaggor:\n" -" -n antal\tKopiera högs ANTAL rader. Om ANTAL är 0 kopieras alla rader.\n" -" -O start\tBörja tilldela till VEKTOR vid index START. Standardindex är 0.\n" +" -n antal\tKopiera högs ANTAL rader. Om ANTAL är 0 kopieras alla " +"rader.\n" +" -O start\tBörja tilldela till VEKTOR vid index START. Standardindex " +"är 0.\n" " -s antal \tSläng de första ANTAL inlästa raderna.\n" " -t\t\tTa bort en avslutande nyrad från varje inläst rad.\n" " -u fb\t\tLäs rader från filbeskrivare FB istället för standard in.\n" @@ -5035,7 +5264,8 @@ msgstr "" " \n" " Om -C ges utan -c är standardkvanta 5000.\n" " \n" -" Om det inte ges någon specificerad start kommer mapfile nollställa VEKTOR\n" +" Om det inte ges någon specificerad start kommer mapfile nollställa " +"VEKTOR\n" " före tilldelning till den.\n" " \n" " Slutstatus:\n" diff --git a/po/tr.gmo b/po/tr.gmo index 34e827a947ee297b9bff141281b04ca3bc1f3791..13c639ac18388d8a9cd6593b59da64a8f021fcc7 100644 GIT binary patch delta 25 hcmaEQobl;##tn>CT$Z{CTo$@UrV56JR))r#xvg$#0swhD2sZ!# diff --git a/po/tr.po b/po/tr.po index 5898bdbb..a8ff6dd9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2006-10-30 20:00+0200\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -16,26 +16,26 @@ msgstr "" "X-Generator: KBabel 1.11.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "hatalı dizi indisi" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: eylem adı geçersiz" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: sayısal olmayan indise atama yapılamaz" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -64,32 +64,32 @@ msgstr "%2$s içinde kapatan `%1$c' yok" msgid "%s: missing colon separator" msgstr "%s: ikinokta imi eksik" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "`%s': kısayol ismi geçersiz" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: okunamıyor: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "`%s': kısayol değiştirilemiyor" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s': işlev ismi bilinmiyor" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s için bir kısayol atanmamış.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s bunun üzerinden çağrılabilir: " @@ -238,12 +238,12 @@ msgstr "%s: bir kabuk yerleşiği değil" msgid "write error: %s" msgstr "yazma hatası: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: geçerli dizin alınırken hata: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: iş belirtimi belirsiz" @@ -279,7 +279,7 @@ msgstr "sadece bir işlevde kullanılabilir" msgid "cannot use `-f' to make functions" msgstr "işlev yapmak için `-f' kullanılamaz" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: salt okunur işlev" @@ -318,7 +318,7 @@ msgstr "%s: özdevimli olarak yüklenmemiş" msgid "%s: cannot delete: %s" msgstr "%s: silinemiyor: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -334,7 +334,7 @@ msgstr "%s: bir dosya değil" msgid "%s: file is too large" msgstr "%s: dosya çok büyük" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ikili dosya çalıştırılamıyor" @@ -457,7 +457,7 @@ msgstr "tek bir -anrw kullanılabilir" msgid "history position" msgstr "geçmiş konumu" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: geçmiş yorumlaması başarısız" @@ -484,12 +484,12 @@ msgstr "Bilinmeyen hata" msgid "expression expected" msgstr "ifade bekleniyordu" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: dosya tanıtıcı belirtimi geçersiz" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: dosya tanıtıcı geçersiz: %s" @@ -676,17 +676,17 @@ msgstr "" " engeller, böylece sadece yığıt değiştirilmiş olur. \n" " Dizin yığıtını `dirs' komutuyla görebilirsiniz." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: zamanaşımı belirtimi geçersiz" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "okuma hatası: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "sadece bir işlev veya betikten kaynaklı olarak `return' yapılabilir" @@ -857,37 +857,37 @@ msgstr "%s: bağlanmamış değişken" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\agirdi beklerken zamanaşımı: auto-logout\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "/dev/null'dan standart girdiye yönlendirme yapılamaz: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': biçim karakteri geçersiz" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "yazma hatası: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: kısıtlı: komut adında `/' kullanamazsınız" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: komut yok" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: hatalı yorumlayıcı" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "fd %d, fd %d olarak yinelenemiyor" @@ -962,7 +962,7 @@ msgstr "%s: tamsayı ifadesi bekleniyordu" msgid "getcwd: cannot access parent directories" msgstr "getcwd: üst dizinlere erişilemiyor" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor" @@ -978,144 +978,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: yeni fd %d için tampon zaten var" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "çatallanan pid %d, çalışan iş %d içinde görünüyor" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "durdurulan %2$ld süreç gruplu iş %1$d siliniyor" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: böyle bir pid yok" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld bu kabuğun bir alt sürecine ait değil" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: süreç %ld için kayıt yok" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: iş %d durdu" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: iş sonlanmış" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: iş %d zaten artalanda" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: uyarı: " -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "bu kabukta iş denetimi yok" @@ -1369,31 +1369,31 @@ msgstr "cprintf: `%c': geçersiz biçim karakteri" msgid "file descriptor out of range" msgstr "dosya tanıtıcı aralık dışında" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: belirsiz yönlendirme" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: mevcut dosyanın üzerine yazılamıyor" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: kısıtlı: çıktı yönlendirilemiyor" -#: redir.c:160 +#: redir.c:161 #, fuzzy, c-format msgid "cannot create temp file for here-document: %s" msgstr "belge için geçici dosya oluşturulamıyor: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "/dev/(tcp|udp)/host/port ağ olmaksızın desteklenmiyor" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "yönlendirme hatası: fd yinelenemiyor" @@ -1465,7 +1465,7 @@ msgstr "" "Yazılım hatalarını raporlamak için `bashbug' komutunu kullanınız.\n" "Çeviri hatalarını ise adresine bildiriniz.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: geçersiz işlem" @@ -1641,77 +1641,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: dizi üyesine liste atanamaz" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "süreç ikamesi için borulama yapılamıyor" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "süreç ikamesi için alt süreç yapılamıyor" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "isimli boru %s okumak için açılamıyor" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "isimli boru %s yazmak için açılamıyor" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "isimli boru %s fd %d olarak yinelenemiyor" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "komut ikamesi için boru yapılamıyor" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "komut ikamesi için alt süreç yapılamıyor" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: boru fd 1 olarak yinelenemiyor" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametre boş ya da değer atanmamış" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: altdizge ifadesi < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: hatalı ikame" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: bu yolla atama yapılmaz" -#: subst.c:7441 +#: subst.c:7454 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "eşleşme yok: %s" @@ -1748,23 +1748,23 @@ msgstr "%s: iki terimli işleci bekleniyordu" msgid "missing `]'" msgstr "eksik `]'" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "geçersiz sinyal numarası" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps:trap_list[%d] içinde hatalı değer: %p" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "" "run_pending_traps: sinyal yakalayıcı SIG_DFL'dir, kendime %d (%s) göndererek" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler:hatalı sinyal %d" @@ -1779,33 +1779,33 @@ msgstr "`%s'nin işlev tanımının içeri aktarılmasında hata" msgid "shell level (%d) too high, resetting to 1" msgstr "kabuk düzeyi (%d) çok yüksek, 1 yapılıyor" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: geçerli etki alanında hiç işlev bağlamı yok" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: geçerli etki alanında hiç işlev bağlamı yok" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "%2$s için exportstr içinde geçersiz karakter %1$d" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s için exportstr içinde `=' yok" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: kabuk değişkenlerinin başı bir işlev bağlamı değil" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: genel değişkenler bağlamı yok" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: kabuk değişkenlerinin başı bir geçici ortam etki alanı değil" @@ -3249,8 +3249,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -3303,7 +3304,7 @@ msgstr "" " okuma zamanaşımına düşmedikçe ya da -u seçeneği ile sağlanan\n" " DoSYaTaNıTıcı geçersiz olmadıkça dönüş durumu sıfırdır." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3315,7 +3316,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 #, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3488,7 +3489,7 @@ msgstr "" " atanır. Özel parametre # ise N'e ayarlanır. Hiç argüman verilmezse,\n" " tüm kabuk değişkenleri basılır." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3508,7 +3509,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -3527,7 +3528,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3547,7 +3548,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3558,7 +3559,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 #, fuzzy msgid "" "Execute commands from a file in the current shell.\n" @@ -3586,7 +3587,7 @@ msgstr "" "parametreler\n" " değiştirilmez." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3600,7 +3601,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3754,7 +3755,7 @@ msgstr "" " küçüklük, büyüklük, küçüklük veya eşitlik, büyüklük veya eşitlik varsa\n" " ifadenin sonucu doğrudur." -#: builtins.c:1291 +#: builtins.c:1292 #, fuzzy msgid "" "Evaluate conditional expression.\n" @@ -3766,7 +3767,7 @@ msgstr "" " test yerleşiği ile aynıdır, fakat son argüman açan `[' ile eşleşen\n" " kapatan `]' olmak zorundadır." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3778,7 +3779,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 #, fuzzy msgid "" "Trap signals and other events.\n" @@ -3831,7 +3832,7 @@ msgstr "" " numaraları ile birlikte listelemesini sağlar. Kabuğa bir sinyal\n" " göndermek isterseniz \"kill -SİGNAL $$\" sözdizimini kullanabilirsiniz." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3861,7 +3862,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 #, fuzzy msgid "" "Modify shell resource limits.\n" @@ -3938,7 +3939,7 @@ msgstr "" " için 512 baytlık blok sayısı olarak, -n ve -u için birimsiz, kalan\n" " seçenekler için 1024 baytlık blok sayısı olarak belirtilmelidir." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3956,7 +3957,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3973,7 +3974,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 #, fuzzy msgid "" "Wait for process completion and return exit status.\n" @@ -3994,7 +3995,7 @@ msgstr "" " belirtimi de olabilir; bir iş belirtimi verilirse işin\n" " boruhattındaki tüm süreçler için beklenir." -#: builtins.c:1473 +#: builtins.c:1474 #, fuzzy msgid "" "Execute commands for each member in a list.\n" @@ -4013,7 +4014,7 @@ msgstr "" " yoksa, `in \"$@\"' belirtilmiş gibi kümeyi oluşturan her parametre\n" " için KOMUTlar birer kere çalıştırılır." -#: builtins.c:1487 +#: builtins.c:1488 #, fuzzy msgid "" "Arithmetic for loop.\n" @@ -4040,7 +4041,7 @@ msgstr "" " İFADE1, İFADE2 ve İFADE3 aritmetik ifadelerdir. Verilmeyen her\n" " ifade için 1 verilmiş gibi işlem yapılır." -#: builtins.c:1505 +#: builtins.c:1506 #, fuzzy msgid "" "Select words from a list and execute commands.\n" @@ -4080,7 +4081,7 @@ msgstr "" " değişkeninde tutulur. Her seçimden sonra bir break komutu ile\n" " sonlandırılıncaya kadar komutlar çalıştırılır." -#: builtins.c:1526 +#: builtins.c:1527 #, fuzzy msgid "" "Report time consumed by pipeline's execution.\n" @@ -4104,7 +4105,7 @@ msgstr "" " istatistiklerinin biraz farklı bir biçimde basılmasını sağlar; çıktı\n" " biçimi olarak TIMEFORMAT değişkeninin değerini kullanır." -#: builtins.c:1543 +#: builtins.c:1544 #, fuzzy msgid "" "Execute commands based on pattern matching.\n" @@ -4119,7 +4120,7 @@ msgstr "" " SÖZcük ile eşleşen ilk KALIP'a karşı düşen KOMUTları çalıştırır.\n" " `|' çok sayıda kalıbı ayırmak için kullanılır." -#: builtins.c:1555 +#: builtins.c:1556 #, fuzzy msgid "" "Execute commands based on conditional.\n" @@ -4154,7 +4155,7 @@ msgstr "" " çıkış durumudur. Bir komut çalıştırılmamışsa ve hiçbir koşul\n" " doğru sonuç vermemişse sıfır döner." -#: builtins.c:1572 +#: builtins.c:1573 #, fuzzy msgid "" "Execute commands as long as a test succeeds.\n" @@ -4169,7 +4170,7 @@ msgstr "" " `while KOMUTlar; listesinin çıkış durumu sıfır olduğu sürece\n" " `do KOMUTlar;' listesi çalıştırılır." -#: builtins.c:1584 +#: builtins.c:1585 #, fuzzy msgid "" "Execute commands as long as a test does not succeed.\n" @@ -4184,7 +4185,7 @@ msgstr "" " `until KOMUTlar; listesinin çıkış durumu sıfırdan farklı olduğu sürece\n" " `do KOMUTlar;' listesi çalıştırılır." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -4198,7 +4199,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 #, fuzzy msgid "" "Group commands as a unit.\n" @@ -4213,7 +4214,7 @@ msgstr "" " KOMUTlar bir grup olarak çalıştırılır. Bu, bir komut kümesini bir\n" " yönlendirmede kullanmanın tek yoludur." -#: builtins.c:1622 +#: builtins.c:1623 #, fuzzy msgid "" "Resume job in foreground.\n" @@ -4234,7 +4235,7 @@ msgstr "" " İŞ_BELİRTİMİ'nden sonra bir & gelmesi işin `bg' komutununa argüman\n" " olarak kullanılmış gibi artalana yerleştirilmesine sebep olur." -#: builtins.c:1637 +#: builtins.c:1638 #, fuzzy msgid "" "Evaluate arithmetic expression.\n" @@ -4249,7 +4250,7 @@ msgstr "" " Verilen aritmetik İFADE aritmetik değerlendirme kurallarına göre\n" " değerlendirilir. \"let İFADE\" ile eşdeğerdir." -#: builtins.c:1649 +#: builtins.c:1650 #, fuzzy msgid "" "Execute conditional command.\n" @@ -4292,7 +4293,7 @@ msgstr "" " olarak ele alınır ve kalıp eşleştirmesi uygulanır. && ve || işleçleri\n" " eğer ilk ifade sonuç için belirleyici ise ikincisine bakmazlar." -#: builtins.c:1675 +#: builtins.c:1676 #, fuzzy msgid "" "Common shell variable names and usage.\n" @@ -4413,7 +4414,7 @@ msgstr "" " gerektiğine karar vermek için kullanılan kalıpların\n" " ikinokta imi ayraçlı listesi.\n" -#: builtins.c:1732 +#: builtins.c:1733 #, fuzzy msgid "" "Add directories to stack.\n" @@ -4465,7 +4466,7 @@ msgstr "" "\n" " Dizin yığıtını `dirs' komutuyla görebilirsiniz." -#: builtins.c:1766 +#: builtins.c:1767 #, fuzzy msgid "" "Remove directories from stack.\n" @@ -4506,7 +4507,7 @@ msgstr "" " engeller, böylece sadece yığıt değiştirilmiş olur. \n" " Dizin yığıtını `dirs' komutuyla görebilirsiniz." -#: builtins.c:1796 +#: builtins.c:1797 #, fuzzy msgid "" "Display directory stack.\n" @@ -4552,7 +4553,7 @@ msgstr "" " -N dirs seçeneksiz çağrıldığında gösterdiği listenin sağından\n" " sıfırla başlayarak sayılan N'inci girdiyi gösterir." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -4573,7 +4574,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 #, fuzzy msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4615,7 +4616,7 @@ msgstr "" " biçimde çıktılamasını sağlar. -v seçeneği çıktının standart çıktıya\n" " basılması yerine DEĞİŞKENe atanmasını sağlar. " -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -4637,7 +4638,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 #, fuzzy msgid "" "Display possible completions depending on the options.\n" @@ -4657,7 +4658,7 @@ msgstr "" " amacıyla tasarlanmıştır. İsteğe bağlı SÖZCÜK argümanı sağlandığı\n" " takdirde eşleşmelerden sadece SÖZCÜK ile eşleşenler üretilir." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -4686,7 +4687,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/po/vi.gmo b/po/vi.gmo index 26cc97075cd062d8fe6b1efe4a996c6bedc92bfd..e66cb1a4b9263c98e246ba7594557eec241044a9 100644 GIT binary patch literal 167197 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 J*L!=t{{l8&M=AgS diff --git a/po/vi.po b/po/vi.po index 6df9295a..d7d59462 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.0-pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-09-08 17:26+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -17,26 +17,26 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.7b3\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "sai mảng in thấp" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: không thể chuyển đổi mảng theo số mũ sang mảng kết hợp" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, c-format msgid "%s: invalid associative array key" msgstr "%s: khoá màng kết hợp không hợp lệ" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: không thể cấp phát cho chỉ số không thuộc số" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: phải sử dụng chữ thấp khi gán mảng kết hợp" @@ -53,7 +53,8 @@ msgstr "bash_execute_unix_command: không tìm thấy sơ đồ phím cho câu l #: bashline.c:3268 #, c-format msgid "%s: first non-whitespace character is not `\"'" -msgstr "%s: ký tự khác khoảng trắng đầu tiên không phải là dấu sổ chéo ngược « / »" +msgstr "" +"%s: ký tự khác khoảng trắng đầu tiên không phải là dấu sổ chéo ngược « / »" #: bashline.c:3297 #, c-format @@ -65,32 +66,32 @@ msgstr "thiếu « %c » đóng trong %s" msgid "%s: missing colon separator" msgstr "%s: thiếu dấu hai chấm định giới" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "« %s »: tên sơ đồ phím không hợp lệ" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s: không thể đọc %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "« %s »: không thể hủy tổ hợp" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "« %s »: tên hàm không rõ" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "%s không được tổ hợp với phím.\n" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "%s có thể được gọi thông qua " @@ -107,6 +108,13 @@ msgstr "" " • while\ttrong khi\n" " • until\tđến khi" +#: builtins/caller.def:133 +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns " +msgstr "" + #: builtins/cd.def:215 msgid "HOME not set" msgstr "Chưa đặt biến môi trường HOME (nhà)" @@ -233,12 +241,12 @@ msgstr "%s: không phải dựng sẵn trình bao" msgid "write error: %s" msgstr "lỗi ghi: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: gặp lỗi khi lấy thư mục hiện thời: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: đặc tả công việc mơ hồ" @@ -274,7 +282,7 @@ msgstr "chỉ có thể được dùng trong một hàm" msgid "cannot use `-f' to make functions" msgstr "không thể dùng « -f » để tạo hàm" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s: hàm chỉ đọc" @@ -313,7 +321,7 @@ msgstr "%s không phải được nạp động" msgid "%s: cannot delete: %s" msgstr "%s: không thể xoá: %s" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -329,7 +337,7 @@ msgstr "%s: không phải là tập tin chuẩn" msgid "%s: file is too large" msgstr "%s: tập tin quá lớn" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: không thể thực hiện tập tin nhị phân" @@ -412,7 +420,8 @@ msgstr[0] "Câu lệnh trình bao tương ứng với từ khoá `" #: builtins/help.def:168 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." msgstr "" "không có chủ đề trợ giúp tương ứng với « %s ». Hãy thử câu lệnh:\n" " • help help\n" @@ -438,7 +447,8 @@ msgstr "" "Những câu lệnh trình bao này được xác định nội bộ. Hãy gõ :\n" " • help\t\tđể xem danh sách này.\n" " • info bash\tđể tìm thêm thông tin chung về trình bao.\n" -" • man -k\t} • info\t\t} để tìm thêm thông tin về lệnh không có trong danh sách này.\n" +" • man -k\t} • info\t\t} để tìm thêm thông tin về lệnh không có trong danh " +"sách này.\n" "\n" "Dấu sao « * » bên cạnh tên thì ngụ ý nó bị tắt.\n" "\n" @@ -451,7 +461,7 @@ msgstr "chỉ có thể dùng một của những tùy chọn « -a », « -n » msgid "history position" msgstr "vị trí lịch sử" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "%s: lỗi mở rộng lịch sử" @@ -478,12 +488,12 @@ msgstr "Lỗi không rõ" msgid "expression expected" msgstr "đợi biểu thức" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "%s: sai xác định bộ mô tả tập tin" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "%d: bộ mô tả tập tin không hợp lệ: %s" @@ -561,10 +571,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" "\tdirs when invoked without options, starting with zero." msgstr "" "Hiển thị danh sách các thư mục được nhớ hiện thời.\n" @@ -675,19 +687,20 @@ msgstr "" "\n" "\tDựng sẵn « dirs » sẽ hiển thị đống thư mục." -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "%s: sai xác định quá hạn" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "lỗi đọc: %d: %s" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" -msgstr "chỉ có thể « return » (trở về) từ một hàm hoặc văn lệnh được gọi từ nguồn" +msgstr "" +"chỉ có thể « return » (trở về) từ một hàm hoặc văn lệnh được gọi từ nguồn" #: builtins/set.def:768 msgid "cannot simultaneously unset a function and a variable" @@ -856,36 +869,36 @@ msgstr "%s: biến chưa tổ hợp" msgid "\atimed out waiting for input: auto-logout\n" msgstr "\tquá hạn trong khi đợi dữ liệu nhập nên tự động đăng xuất\n" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "không thể chuyển hướng đầu vào tiêu chuẩn từ « /dev/null »: %s" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "ĐỊNH DẠNG THỜI GIAN: « %c »: ký tự định dạng không hợp lệ" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 msgid "pipe error" msgstr "lỗi ống dẫn" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: bị hạn chế: không thể ghi rõ dấu sổ chéo « / » trong tên câu lệnh" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s: không tìm thấy lệnh" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bộ thông dịch sai" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "không thể nhân đôi fd %d tới fd %d" @@ -960,7 +973,7 @@ msgstr "%s: lỗi biểu thức\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: không thể truy cập thư mục cấp trên" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "không thể đặt lại chế độ nodelay (không hoãn) cho fd %d" @@ -976,145 +989,145 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: đã có bộ đệm cho fd mới %d" # Nghĩa chữ ? -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "tiến trình con đã tạo (PID %d) xuất hiện trong công việc đang chạy %d" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "đang xoá công việc bị dừng chạy %d với nhóm tiến trình %ld" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: tiến trình %5ld (%s) trong the_pipeline" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) được đánh dấu vẫn hoạt động" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: không có PID (mã số tiến trình) như vậy" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "Tín hiệu %d" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "Hoàn tất" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "Bị dừng" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "Bị dừng(%s)" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "Đang chạy" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "Hoàn tất(%d)" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "Thoát %d" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "Không rõ trạng thái" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "(lõi bị đổ)" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid tiến trình con (%ld thành %ld)" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld không phải là tiến trình con của trình bao này" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Không có mục ghi về tiến trình %ld" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: công việc %d bị dừng chạy" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "%s: công việc bị chấm dứt" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "%s: công việc %d đã chạy trong nền" -#: jobs.c:3482 +#: jobs.c:3487 #, c-format msgid "%s: line %d: " msgstr "%s: dòng %d:" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr " (lõi bị đổ)" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "(wd bây giờ: %s)\n" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp bị lỗi" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: kỷ luật dòng" # Nghĩa chữ : dừng dịch -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "không thể đặt nhóm tiến trình cuối cùng (%d)" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "không có điều khiển công việc trong trình bao này" @@ -1138,7 +1151,9 @@ msgstr "không rõ" #: lib/malloc/malloc.c:797 msgid "malloc: block on free list clobbered" -msgstr "malloc (cấp phát bộ nhớ): khối bộ nhớ dành riêng trên danh sách các khối còn rảnh bị ghi vào" +msgstr "" +"malloc (cấp phát bộ nhớ): khối bộ nhớ dành riêng trên danh sách các khối còn " +"rảnh bị ghi vào" #: lib/malloc/malloc.c:874 msgid "free: called with already freed block argument" @@ -1240,7 +1255,8 @@ msgstr "make_here_document: kiểu chỉ dẫn sai %d" #: make_cmd.c:651 #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" -msgstr "tài liệu này ở dòng %d định giới bằng kết thúc tập tin (mong đợi « %s »)" +msgstr "" +"tài liệu này ở dòng %d định giới bằng kết thúc tập tin (mong đợi « %s »)" #: make_cmd.c:746 #, c-format @@ -1341,7 +1357,8 @@ msgstr "Dùng « %s » để rời trình bao.\n" #: parse.y:5433 msgid "unexpected EOF while looking for matching `)'" -msgstr "gặp kết thúc tập tin bất thường trong khi tìm dấu ngoặc đóng « ) » tương ứng" +msgstr "" +"gặp kết thúc tập tin bất thường trong khi tìm dấu ngoặc đóng « ) » tương ứng" #: pcomplete.c:1016 #, c-format @@ -1367,31 +1384,32 @@ msgstr "cprintf: « %c »: ký tự định dạng không hợp lệ" msgid "file descriptor out of range" msgstr "bộ mô tả tập tin ở ngoại phạm vi" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "%s: lời chuyển hướng mơ hồ" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "%s: không thể ghi đè lên tập tin đã có" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "%s: bị hạn chế: không thể chuyển hướng kết xuất" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "không thể tạo tập tin tạm thời cho tài liệu này: %s" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" -msgstr "/dev/(tcp|udp)/host/port không được hỗ trợ khi không có chức năng chạy mạng" +msgstr "" +"/dev/(tcp|udp)/host/port không được hỗ trợ khi không có chức năng chạy mạng" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "gặp lỗi chuyển hướng nên không thể nhân đôi fd" @@ -1446,19 +1464,23 @@ msgstr "\t-%s hoặc -o tùy chọn\n" #: shell.c:1806 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "Gõ câu lệnh trợ giúp « %s -c \"help set\" » để xem thêm thông tin về các tùy chọn trình bao.\n" +msgstr "" +"Gõ câu lệnh trợ giúp « %s -c \"help set\" » để xem thêm thông tin về các tùy " +"chọn trình bao.\n" #: shell.c:1807 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "Gõ câu lệnh trợ giúp « %s -c help » để xem thêm thông tin về các câu lệnh trình bao dựng sẵn.\n" +msgstr "" +"Gõ câu lệnh trợ giúp « %s -c help » để xem thêm thông tin về các câu lệnh " +"trình bao dựng sẵn.\n" #: shell.c:1808 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Dùng lệnh « bashbug » để thông báo lỗi.\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: thao tác không hợp lệ" @@ -1632,77 +1654,77 @@ msgstr "Không rõ tín hiệu #" msgid "Unknown Signal #%d" msgstr "Không rõ tín hiệu #%d" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "sai thay thế: không có « %s » đóng trong %s" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: không thể gán danh sách cho bộ phận của mảng" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "không thể tạo ống dẫn để thay thế tiến trình" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "không thể tạo tiến trình con để thay thế tiến trình" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "không thể mở ống dẫn đặt tên %s để đọc" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "không thể mở ống dẫn đặt tên %s để ghi" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "không thể nhân đôi ống dẫn đặt tên %s thành fd %d" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "không thể tạo ống dẫn để thay thế lệnh" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "không thể tạo tiến trình con để thay thế lệnh" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: không thể nhân đôi ống dẫn thành fd 1" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "%s: tham số vô giá trị hoặc chưa được đặt" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "%s: biểu thức chuỗi phụ < 0" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "%s: sai thay thế" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: không thể gán bằng cách này" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sai thay thế: không có « ` » đóng trong %s" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "không khớp: %s" @@ -1739,21 +1761,24 @@ msgstr "%s: đợi toán tử nhị phân" msgid "missing `]'" msgstr "thiếu dấu ngoặc vụ đóng « ] »" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "số thứ tự tín hiệu không hợp lệ" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: giá trị sai trong danh sách trap_list[%d]: %p" -#: trap.c:327 +#: trap.c:328 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "run_pending_traps: bộ xử lý tín hiệu là SIG_DFL, đang gửi lại %d (%s) cho mình" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "" +"run_pending_traps: bộ xử lý tín hiệu là SIG_DFL, đang gửi lại %d (%s) cho " +"mình" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: tín hiệu sai %d" @@ -1768,43 +1793,52 @@ msgstr "gặp lỗi khi nhập lời xác định hàm cho « %s »" msgid "shell level (%d) too high, resetting to 1" msgstr "cấp trình bao (%d) quá cao nên đặt lại thành 1" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: không có ngữ cảnh hàm ở phạm vi hiện thời" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: không có ngữ cảnh hàm ở phạm vi hiện thời" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "sai ký tự %d trong chuỗi exportstr cho %s" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "không có dấu bằng « = » trong chuỗi exportstr cho %s" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" -msgstr "pop_var_context: đầu của shell_variables (các biến trình bao) không phải là ngữ cảnh hàm" +msgstr "" +"pop_var_context: đầu của shell_variables (các biến trình bao) không phải là " +"ngữ cảnh hàm" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" -msgstr "pop_var_context: không có ngữ cảnh global_variables (các biến toàn cục)" +msgstr "" +"pop_var_context: không có ngữ cảnh global_variables (các biến toàn cục)" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "pop_scope: đầu của shell_variables (các biến trình bao) không phải là phạm vi môi trường tạm thời" +msgstr "" +"pop_scope: đầu của shell_variables (các biến trình bao) không phải là phạm " +"vi môi trường tạm thời" #: version.c:46 msgid "Copyright (C) 2008 Free Software Foundation, Inc." msgstr "Tác quyền © năm 2008 của Tổ chức Phần mềm Tự do." #: version.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Giấy phép GPLv3+: Giấy Phép Công Cộng GNU phiên bản 3 hay sau \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Giấy phép GPLv3+: Giấy Phép Công Cộng GNU phiên bản 3 hay sau \n" #: version.c:86 #, c-format @@ -1854,7 +1888,8 @@ msgstr "xmalloc: %s:%d: không thể cấp phát %lu byte" #: xmalloc.c:174 #, c-format msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "xrealloc: %s:%d: không thể cấp phát lại %lu byte (%lu byte đã cấp phát)" +msgstr "" +"xrealloc: %s:%d: không thể cấp phát lại %lu byte (%lu byte đã cấp phát)" #: xmalloc.c:176 #, c-format @@ -1870,8 +1905,13 @@ msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] tên [tên ...]" #: builtins.c:51 -msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m sơ_đồ_phím] [-f tên_tập_tin] [-q tên] [-u tên] [-r dãy_phím] [-x dãy_phím:lệnh_trình_bao] [dãy_phím:chức_năng-readline hay lệnh-readline]" +msgid "" +"bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpvsPVS] [-m sơ_đồ_phím] [-f tên_tập_tin] [-q tên] [-u tên] [-r " +"dãy_phím] [-x dãy_phím:lệnh_trình_bao] [dãy_phím:chức_năng-readline hay lệnh-" +"readline]" #: builtins.c:54 msgid "break [n]" @@ -1981,7 +2021,9 @@ msgid "help [-ds] [pattern ...]" msgstr "help [-ds] [mẫu ...]" #: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" msgstr "" "history [-c] [-d hiệu] [n]\n" "\thay\n" @@ -2001,9 +2043,12 @@ msgid "disown [-h] [-ar] [jobspec ...]" msgstr "disown [-h] [-ar] [đặc_tả_công_việc ...]" #: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" msgstr "" -"kill [-s đặc_tả_tín_hiệu | -n số_tín_hiệu | -đặc_tả_tín_hiệu] pid | đặc_tả_công_việc ...\n" +"kill [-s đặc_tả_tín_hiệu | -n số_tín_hiệu | -đặc_tả_tín_hiệu] pid | " +"đặc_tả_công_việc ...\n" "\thay\n" "kill -l [đặc_tả_tín_hiệu]" @@ -2012,8 +2057,12 @@ msgid "let arg [arg ...]" msgstr "let đối_số [đối_số ...]" #: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a mảng] [-d giới_hạn] [-i văn_bản] [-n số_ký_tự] [-p nhắc] [-t thời_hạn] [-u fd] [tên ...]" +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-p prompt] [-t " +"timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a mảng] [-d giới_hạn] [-i văn_bản] [-n số_ký_tự] [-p nhắc] [-t " +"thời_hạn] [-u fd] [tên ...]" # nghĩa chữ #: builtins.c:138 @@ -2115,8 +2164,12 @@ msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case TỪ in [MẪU [| MẪU]...) các_CÂU_LỆNH ;;]... esac" #: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if các_CÂU_LỆNH; then các_CÂU_LỆNH; [ elif các_CÂU_LỆNH; then các_CÂU_LỆNH; ]... [ else các_CÂU_LỆNH; ] fi" +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if các_CÂU_LỆNH; then các_CÂU_LỆNH; [ elif các_CÂU_LỆNH; then " +"các_CÂU_LỆNH; ]... [ else các_CÂU_LỆNH; ] fi" #: builtins.c:194 msgid "while COMMANDS; do COMMANDS; done" @@ -2174,20 +2227,34 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v biến] định_dạng [đối_số]" #: builtins.c:227 -msgid "complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-o tùy_chọn] [-A hành_động] [-G mẫu_glob] [-W danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] [tên ...]" +msgid "" +"complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W " +"wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] " +"[name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-o tùy_chọn] [-A hành_động] [-G mẫu_glob] [-" +"W danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] " +"[tên ...]" #: builtins.c:231 -msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "compgen [-abcdefgjksuv] [-o tùy_chọn] [-A hành_động] [-G mẫu_glob] [-W danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] [từ]" +msgid "" +"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "" +"compgen [-abcdefgjksuv] [-o tùy_chọn] [-A hành_động] [-G mẫu_glob] [-W " +"danh_sách_từ] [-F hàm] [-C lệnh] [-X mẫu_lọc] [-P tiền_tố] [-S hậu_tố] [từ]" #: builtins.c:235 msgid "compopt [-o|+o option] [name ...]" msgstr "compopt [-o|+o tùy_chọn] [tên ...]" #: builtins.c:238 -msgid "mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-n đếm] [-O gốc] [-s đếm] [-t] [-u fd] [-C gọi_ngược] [-c lượng] [mảng]" +msgid "" +"mapfile [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"mapfile [-n đếm] [-O gốc] [-s đếm] [-t] [-u fd] [-C gọi_ngược] [-c lượng] " +"[mảng]" #: builtins.c:250 msgid "" @@ -2204,7 +2271,8 @@ msgid "" " -p\tPrint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has been\n" +" alias returns true unless a NAME is supplied for which no alias has " +"been\n" " defined." msgstr "" "Xác định hoặc hiển thị bí danh.\n" @@ -2252,20 +2320,24 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" +"move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their values\n" -" -s List key sequences that invoke macros and their values\n" +" -S List key sequences that invoke macros and their " +"values\n" +" -s List key sequences that invoke macros and their " +"values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named function.\n" +" -u function-name Unbind all keys which are bound to the named " +"function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" @@ -2352,7 +2424,8 @@ msgid "" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the function.\n" +" as a shell function, but need to execute the builtin within the " +"function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2403,16 +2476,22 @@ msgstr "" msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of the\n" +" Change the current directory to DIR. The default DIR is the value of " +"the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" -" A null directory name is the same as the current directory. If DIR begins\n" +" The variable CDPATH defines the search path for the directory " +"containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon " +"(:).\n" +" A null directory name is the same as the current directory. If DIR " +"begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is set,\n" -" the word is assumed to be a variable name. If that variable has a value,\n" +" If the directory is not found, and the shell option `cdable_vars' is " +"set,\n" +" the word is assumed to be a variable name. If that variable has a " +"value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2431,7 +2510,8 @@ msgstr "" "\tThư mục mặc định là giá trị của biến trình bao HOME.\n" "\n" "\tBiến CDPATH thì xác định đường dẫn tìm kiếm cho thư mục chứa TMỤC.\n" -"\tCác tên thư mục xen kẽ trong CDPATH cũng định giới bằng dấu hai chấm « : ».\n" +"\tCác tên thư mục xen kẽ trong CDPATH cũng định giới bằng dấu hai chấm « : " +"».\n" "\tMột tên thư mục trống tương đương với thư mục hiện tại.\n" "\tNếu TMỤC bắt đầu với dấu chéo « / » thì không dùng CDPATH.\n" "\n" @@ -2521,7 +2601,8 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke commands\n" +" information about the specified COMMANDs. Can be used to invoke " +"commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2546,7 +2627,8 @@ msgstr "" "\t-V\tin ra mô tả chi tiết hơn về mỗi câu LỆNH\n" "\n" "Trạng thái thoát:\n" -"Trả lại trạng thái thoát của câu LỆNH, hoặc bị lỗi nếu không tìm thấy câu LỆNH." +"Trả lại trạng thái thoát của câu LỆNH, hoặc bị lỗi nếu không tìm thấy câu " +"LỆNH." #: builtins.c:472 msgid "" @@ -2576,7 +2658,8 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the `local'\n" +" When used in a function, `declare' makes NAMEs local, as with the " +"`local'\n" " command.\n" " \n" " Exit Status:\n" @@ -2704,7 +2787,8 @@ msgstr "" "\t\t\\xHH\tký tự 8-bit có giá trị HH (1-2 chữ số thập lục)\n" "\n" "\tTrạng thái thoát:\n" -"\tTrả lại thành công nếu không gặp lỗi ghi.\t\t\\t\tkhoảng tab theo chiều ngang\n" +"\tTrả lại thành công nếu không gặp lỗi ghi.\t\t\\t\tkhoảng tab theo chiều " +"ngang\n" "\t\t\\v\tkhoảng tab theo chiều dọc\n" "\t\t\\\\\tgạch chéo ngược" @@ -2757,14 +2841,16 @@ msgid "" " Returns success unless NAME is not a shell builtin or an error occurs." msgstr "" "Bật/tắt dựng sẵn trình bao.\n" -"\b\tBật và tắt các dựng sẵn trình bao.\b\tChức năng tắt thì cho phép bạn thực thi một câu lệnh đĩa\n" +"\b\tBật và tắt các dựng sẵn trình bao.\b\tChức năng tắt thì cho phép bạn " +"thực thi một câu lệnh đĩa\n" "\tmà cùng tên với một dựng sẵn trình bao,\n" "\tkhông cần dùng tên đường dẫn đầy đủ.\n" "\n" "\tTùy chọn:\n" "\t\t-a\tin ra một danh sách các dựng sẳn, cũng hiển thị trạng thái bật/tắt\n" "\t\t-b\ttắt mỗi TÊN hoặc hiển thị danh sách các dựng sẵn bị tắt\n" -"\t\t-p\tin ra danh sách các dựng sẵn theo một định dạng có thể dùng lại được\n" +"\t\t-p\tin ra danh sách các dựng sẵn theo một định dạng có thể dùng lại " +"được\n" "\t\t-s\tin ra chỉ tên mỗi dựng sẵn Posix « đặc biệt »\n" "\n" "\tTùy chọn điều khiển chức năng nạp động:\n" @@ -2784,7 +2870,8 @@ msgstr "" msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the shell,\n" +" Combine ARGs into a single string, use the result as input to the " +"shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -2891,7 +2978,8 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " +"specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -2899,15 +2987,18 @@ msgid "" " -c\t\texecute COMMAND with an empty environment\n" " -l\t\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, unless\n" +" If the command cannot be executed, a non-interactive shell exits, " +"unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error occurs." +" Returns success unless COMMAND is not found or a redirection error " +"occurs." msgstr "" "Thay thế trình bao bằng câu lệnh đưa ra.\n" "\n" -"\tThực thi câu LỆNH, cũng thay thế trình bao này bằng chương trình được ghi rõ.\n" +"\tThực thi câu LỆNH, cũng thay thế trình bao này bằng chương trình được ghi " +"rõ.\n" "\tCác ĐỐI_SỐ trở thành các đối số đối với câu LỆNH.\n" "\tKhông đưa ra câu LỆNH thì bất cứ việc chuyển hướng nào\n" "\tsẽ xảy ra trong trình bao đang chạy.\n" @@ -2940,7 +3031,8 @@ msgstr "" msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not executed\n" +" Exits a login shell with exit status N. Returns an error if not " +"executed\n" " in a login shell." msgstr "" "Thoát khỏi một trình bao đăng nhập.\n" @@ -2952,13 +3044,15 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history list.\n" +" fc is used to list or edit and re-execute commands from the history " +"list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then " +"EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -2972,7 +3066,8 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error occurs." +" Returns success or status of executed command; non-zero if an error " +"occurs." msgstr "" "Hiển thị hoặc thực thi các câu lệnh từ danh sách lược sử.\n" "\n" @@ -3026,8 +3121,10 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if " +"they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's " +"notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" @@ -3049,7 +3146,8 @@ msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is displayed.\n" +" no arguments are given, information about remembered commands is " +"displayed.\n" " \n" " Options:\n" " -d\t\tforget the remembered location of each NAME\n" @@ -3105,7 +3203,8 @@ msgid "" " PATTERN\tPattern specifiying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is given." +" Returns success unless PATTERN is not found or an invalid option is " +"given." msgstr "" "Hiển thị thông tin về các câu lệnh dựng sẵn.\n" "\n" @@ -3154,7 +3253,8 @@ msgid "" " \n" " If the $HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed otherwise.\n" +" with each displayed history entry. No time stamps are printed " +"otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -3255,8 +3355,10 @@ msgid "" msgstr "" "Gỡ bỏ công việc khỏi trình bao đang chạy.\n" "\n" -"\tGỡ bỏ mỗi đối số JOBSPEC (đặc tả công việc) khỏi bảng các công việc đang chạy.\n" -"\tKhông có JOBSPEC thì trình bao dùng thông tin riêng về công việc đang đang chạy.\n" +"\tGỡ bỏ mỗi đối số JOBSPEC (đặc tả công việc) khỏi bảng các công việc đang " +"chạy.\n" +"\tKhông có JOBSPEC thì trình bao dùng thông tin riêng về công việc đang đang " +"chạy.\n" "\n" "\tTùy chọn:\n" "\t\t-a\tgỡ bỏ mọi công việc nếu không đưa ra JOBSPEC\n" @@ -3316,7 +3418,8 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are listed\n" +" grouped into levels of equal-precedence operators. The levels are " +"listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -3394,17 +3497,21 @@ msgstr "" "\tkhông thì let trả lại 0." #: builtins.c:962 +#, fuzzy msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with word\n" +" if the -u option is supplied. The line is split into fields as with " +"word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as word\n" +" the last NAME. Only the characters found in $IFS are recognized as " +"word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY " +"variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3419,15 +3526,18 @@ msgid "" " \t\tattempting to read\n" " -r\t\tdo not allow backslashes to escape any characters\n" " -s\t\tdo not echo input coming from a terminal\n" -" -t timeout\ttime out and return failure if a complete line of input is\n" +" -t timeout\ttime out and return failure if a complete line of input " +"is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times out,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" "Đọc một dòng từ đầu vào tiêu chuẩn, sau đó chia nó ra nhiều trường.\n" @@ -3440,7 +3550,8 @@ msgstr "" "\tvà từ còn lại nào được gán cho TÊN cuối cùng.\n" "\tChỉ những ký tự được tìm trong $IFS được nhận ra là ký tự định giới từ.\n" "\n" -"\tKhông đưa ra TÊN thì dòng được đọc sẽ được ghi nhớ vào biến REPLY (trả lời).\n" +"\tKhông đưa ra TÊN thì dòng được đọc sẽ được ghi nhớ vào biến REPLY (trả " +"lời).\n" "\n" "\tTùy chọn:\n" "\t\t-a MẢNG\tgán các từ được đọc cho những số mũ tuần tự\n" @@ -3467,7 +3578,7 @@ msgstr "" "\tkhông quá thời khi đọc, và không đưa ra bộ mô tả tập tin sai\n" "\tlàm đối số tới « -u »." -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -3489,7 +3600,7 @@ msgstr "" "\tTrả lại N, hoặc bị lỗi nếu trình bao không đang chạy\n" "\t\tmột chức năng hay văn lệnh." -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3532,7 +3643,8 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero status\n" +" or zero if no command exited with a non-zero " +"status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -3651,7 +3763,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không gặp tùy chọn sai." -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3661,7 +3773,8 @@ msgid "" " -f\ttreat each NAME as a shell function\n" " -v\ttreat each NAME as a shell variable\n" " \n" -" Without options, unset first tries to unset a variable, and if that fails,\n" +" Without options, unset first tries to unset a variable, and if that " +"fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -3683,12 +3796,13 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai, và TÊN không chỉ đọc." -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before " +"exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -3702,7 +3816,8 @@ msgid "" msgstr "" "Đặt thuộc tính xuất khẩu cho biến trình bao.\n" "\n" -"\tĐánh dấu mỗi TÊN để tự động xuất vào môi trường của câu lệnh được chạy về sau.\n" +"\tĐánh dấu mỗi TÊN để tự động xuất vào môi trường của câu lệnh được chạy về " +"sau.\n" "\tĐưa ra GIÁ_TRỊ thì gán GIÁ_TRỊ trước khi xuất ra.\n" "\n" "\tTùy chọn:\n" @@ -3715,7 +3830,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay TÊN sai," -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3751,7 +3866,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay TÊN sai." -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3769,7 +3884,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu N không âm hay lớn hơn $#." -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3792,10 +3907,11 @@ msgstr "" "\tkhi TÊN_TẬP_TIN được thực thi.\n" "\n" "\tTrạng thái thoát:\n" -"\tTrả lại trạng thái của câu lệnh cuối cùng được thực thi trong TÊN_TẬP_TIN;\n" +"\tTrả lại trạng thái của câu lệnh cuối cùng được thực thi trong " +"TÊN_TẬP_TIN;\n" "\tkhông thành công nếu không thể đọc TÊN_TẬP_TIN." -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3817,9 +3933,10 @@ msgstr "" "\t\t-f\tép buộc việc ngưng, thậm chí nếu trình bao có kiểu đăng nhập\n" "\n" "\tTrạng thái thoát:\n" -"\tTrả lại thành công nếu chức năng điều khiển công việc đã được bật, và không gặp lỗi." +"\tTrả lại thành công nếu chức năng điều khiển công việc đã được bật, và " +"không gặp lỗi." -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3850,7 +3967,8 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last read.\n" +" -N FILE True if the file has been modified since it was last " +"read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -3871,7 +3989,8 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 lexicographically.\n" +" True if STRING1 sorts before STRING2 " +"lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -3909,22 +4028,27 @@ msgstr "" " -e TẬP_TIN Đúng nếu tập tin có phải tồn tại.\n" " -f TẬP_TIN Đúng nếu tập tin có phải tồn tại\n" "\t\t\t\t\tcũng là một tập tin bình thường.\n" -" -g TẬP_TIN Đúng nếu tập tin là set-group-id (đặt mã số nhóm).\n" +" -g TẬP_TIN Đúng nếu tập tin là set-group-id (đặt mã số " +"nhóm).\n" " -h TẬP_TIN Đúng nếu tập tin là một liên kết tượng trưng.\n" " -L TẬP_TIN Đúng nếu tập tin là một liên kết tượng trưng.\n" " -k TẬP_TIN Đúng nếu tập tin có bit « dính » được đặt.\n" " -p TẬP_TIN Đúng nếu tập tin là một ống dẫn đặt tên.\n" " -r TẬP_TIN Đúng nếu tập tin cho bạn đọc được.\n" -" -s TẬP_TIN Đúng nếu tập tin có phải tồn tại và không phải rỗng.\n" +" -s TẬP_TIN Đúng nếu tập tin có phải tồn tại và không phải " +"rỗng.\n" " -S TẬP_TIN Đúng nếu tập tin là một ổ cắm.\n" -" -t FD Đúng nếu FD (bộ mô tả tập tin) được mở trên thiết bị cuối.\n" +" -t FD Đúng nếu FD (bộ mô tả tập tin) được mở trên thiết bị " +"cuối.\n" " -u TẬP_TIN Đúng nếu tập tin is set-user-id.\n" " -w TẬP_TIN Đúng nếu tập tin cho bạn ghi vào được.\n" " -x TẬP_TIN Đúng nếu tập tin cho bạn thực hiện được.\n" -" -O TẬP_TIN Đúng nếu tập tin được bạn sở hữu một cách hiệu quả.\n" +" -O TẬP_TIN Đúng nếu tập tin được bạn sở hữu một cách hiệu " +"quả.\n" " -G TẬP_TIN Đúng nếu tập tin được nhóm của bạn sở hữu\n" "\t\t\t\t\tmột cách hiệu quả.\n" -" -N TẬP_TIN Đúng nếu tập tin đã bị sửa đổi kể từ lần đọc cuối cùng.\n" +" -N TẬP_TIN Đúng nếu tập tin đã bị sửa đổi kể từ lần đọc cuối " +"cùng.\n" " \n" " TẬP_TIN1 -nt TẬP_TIN2 Đúng nếu tập tin 1 mới hơn tập tin 2\n" "\t\t(tùy theo ngày sửa đổi)\n" @@ -3967,7 +4091,7 @@ msgstr "" "\tTrả lại thành công nếu B_THỨC định giá thành Đúng;\n" "\tkhông thành công nếu B_THỨC định giá thành Sai hay đưa ra đối số sai." -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3980,11 +4104,12 @@ msgstr "" "\tnhưng đối số cuối cùng phải là một « ] » nghĩa chữ,\n" "\tđổ tương ứng với « [ » mở." -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of its\n" +" Prints the accumulated user and system times for the shell and all of " +"its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -3998,11 +4123,12 @@ msgstr "" "\tTrạng thái thoát:\n" "\tLúc nào cũng thành công." -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives signals\n" +" Defines and activates handlers to be run when the shell receives " +"signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -4011,22 +4137,26 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " +"If\n" " a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command.\n" " \n" -" If no arguments are supplied, trap prints the list of commands associated\n" +" If no arguments are supplied, trap prints the list of commands " +"associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal " +"number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is given." +" Returns success unless a SIGSPEC is invalid or an invalid option is " +"given." msgstr "" "Bắt các tín hiệu và dữ kiện khác.\n" "\n" @@ -4063,7 +4193,7 @@ msgstr "" "\tTrả lại thành công nếu không đưa ra ĐẶC_TẢ_TÍN_HIỆU sai\n" "\thay tùy chọn sai." -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -4089,7 +4219,8 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not found." +" Returns success if all of the NAMEs are found; fails if any are not " +"found." msgstr "" "Hiển thị thông tin về kiểu câu lệnh.\n" "\n" @@ -4121,11 +4252,12 @@ msgstr "" "\tTráng thái thoát:\n" "\tTrả lại thành công nếu tìm thấy tất cả các TÊN; không thì bị lỗi." -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and processes\n" +" Provides control over the resources available to the shell and " +"processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -4208,7 +4340,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi." -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -4243,18 +4375,20 @@ msgstr "" "\tTráng thái thoát:\n" "\tTrả lại thành công nếu không có CHẾ_ĐỘ sai hay tùy chọn sai." -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" " Waits for the process identified by ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" -" status is zero. If ID is a a job specification, waits for all processes\n" +" status is zero. If ID is a a job specification, waits for all " +"processes\n" " in the job's pipeline.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Đợi công việc chạy xong, sau đó trả lại trạng thái thoát.\n" @@ -4270,7 +4404,7 @@ msgstr "" "\tTrả lại trạng thái của ID; không thành công nếu ID sai\n" "\t\thoặc đưa ra tùy chọn sai." -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -4279,7 +4413,8 @@ msgid "" " and the return code is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of ID; fails if ID is invalid or an invalid option is\n" +" Returns the status of ID; fails if ID is invalid or an invalid option " +"is\n" " given." msgstr "" "Đợi tiến trình chạy xong, sau đó thông báo trạng thái thoát của nó.\n" @@ -4296,7 +4431,7 @@ msgstr "" "\tkhông thành công nếu ID sai,\n" "\thoặc nếu đưa ra tùy chọn sai." -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4320,7 +4455,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -4349,7 +4484,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4388,7 +4523,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4419,7 +4554,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrạng thái trả lai là trạng thái trả lại của PIPELINE." -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4438,16 +4573,21 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then " +"the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " +"is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of the\n" -" entire construct is the exit status of the last command executed, or zero\n" +" `then COMMANDS' list is executed and the if command completes. " +"Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of " +"the\n" +" entire construct is the exit status of the last command executed, or " +"zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -4470,7 +4610,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4489,7 +4629,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4508,12 +4648,13 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is " +"invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4531,7 +4672,7 @@ msgstr "" "\tTráng thái thoát:\n" "\tTrả lại thành công nếu TÊN không phải chỉ đọc." -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -4550,7 +4691,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của câu lệnh cuối cùng được chạy." -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -4575,7 +4716,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại trạng thái của công việc đã tiếp tục lại." -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4593,13 +4734,16 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại 1 nếu BIỂU_THỨC tính là 0; không thì trả lại 0." -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries used\n" -" by the `test' builtin, and may be combined using the following operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the " +"conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries " +"used\n" +" by the `test' builtin, and may be combined using the following " +"operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -4639,7 +4783,7 @@ msgstr "" "\tTrạng thái thoát:\n" "\t0 hay 1 phụ thuộc vào giá trị của BIỂU_THỨC." -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -4701,7 +4845,8 @@ msgstr "" "\tmà diễn tả các tên tập tin cần bỏ qua khi mở rộng tên đường dẫn.\n" " HISTFILE\tTên của tập tin chứa lịch sử câu lệnh của bạn.\n" " HISTFILESIZE\tSố tối đa các dòng có thể được tập tin này chứa.\n" -" HISTSIZE\tSố tối đa các dòng lịch sử mà trình bao đang chạy có thể truy cập.\n" +" HISTSIZE\tSố tối đa các dòng lịch sử mà trình bao đang chạy có thể truy " +"cập.\n" " HOME\tTên đường dẫn đầy đủ đến thư mục đăng nhập của bạn.\n" " HOSTNAME\tTên của máy chủ hiện thời của bạn.\n" " HOSTTYPE\tKiểu CPU dưới đó phiên bản Bash này đang chạy.\n" @@ -4728,7 +4873,8 @@ msgstr "" " TERM\tTên của kiểu thiết bị cuối hiện thời.\n" " TIMEFORMAT\tĐịnh dạng kết xuất cho thống kê đếm thời gian\n" "\tđược hiển thị bởi từ dành riêng « time ».\n" -" auto_resume\tCó giá trị thì trước tiên tìm một từ lệnh xuất hiện một mình\n" +" auto_resume\tCó giá trị thì trước tiên tìm một từ lệnh xuất hiện một " +"mình\n" "\ttrên một dòng, trong danh sách các công việc bị dừng chạy.\n" "\tTìm được thì đặt công việc đó vào trước.\n" "\tGiá trị « exact » (chính xác) có nghĩa là từ lệnh phải tương ứng\n" @@ -4743,7 +4889,7 @@ msgstr "" "\tđược ùng để quyết định những câu lệnh nào nên được lưu\n" "\tvào danh sách lịch sử.\n" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -4797,7 +4943,7 @@ msgstr "" "\tTrả lại thành công nếu không đưa ra đối số sai,\n" "\tcũng không sai chuyển đổi thư mục." -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -4850,7 +4996,7 @@ msgstr "" "\tTrả lại thành công nếu không đưa ra đối số sai,\n" "\tcũng không sai chuyển đổi thư mục." -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -4867,10 +5013,12 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown " +"by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" " Exit Status:\n" @@ -4904,12 +5052,13 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi." -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" " Change the setting of each shell option OPTNAME. Without any option\n" -" arguments, list all shell options with an indication of whether or not each\n" +" arguments, list all shell options with an indication of whether or not " +"each\n" " is set.\n" " \n" " Options:\n" @@ -4940,7 +5089,7 @@ msgstr "" "\tTrả lại thành công nếu TÊN_TÙY_CHỌN được bật;\n" "\tkhông thành công nếu đưa ra tùy chọn sai hay TÊN_TÙY_CHỌN bị tắt." -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -4948,20 +5097,25 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: plain\n" -" characters, which are simply copied to standard output; character escape\n" +" FORMAT is a character string which contains three types of objects: " +"plain\n" +" characters, which are simply copied to standard output; character " +"escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next successive\n" +" format specifications, each of which causes printing of the next " +"successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in printf(1)\n" +" In addition to the standard format specifications described in printf" +"(1)\n" " and printf(3), printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or assignment\n" +" Returns success unless an invalid option is given or a write or " +"assignment\n" " error occurs." msgstr "" "Định dạng và in ra các ĐỐI_SỐ tùy theo ĐỊNH_DẠNG.\n" @@ -4983,14 +5137,17 @@ msgstr "" "\t\t\tlàm dữ liệu nhập vào trình bao\n" "\n" "\tTrạng thái thoát:\n" -"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi kiểu ghi hay gán." +"\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi kiểu ghi hay " +"gán." -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no options\n" -" are supplied, existing completion specifications are printed in a way that\n" +" For each NAME, specify how arguments are to be completed. If no " +"options\n" +" are supplied, existing completion specifications are printed in a way " +"that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -5022,12 +5179,13 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi." -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches against\n" +" completions. If the optional WORD argument is supplied, matches " +"against\n" " WORD are generated.\n" " \n" " Exit Status:\n" @@ -5043,13 +5201,16 @@ msgstr "" "\tTrạng thái thoát:\n" "\tTrả lại thành công nếu không đưa ra tùy chọn sai hay gặp lỗi." -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" -" the completion currently begin executed. If no OPTIONs are givenm, print\n" -" the completion options for each NAME or the current completion specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are " +"supplied,\n" +" the completion currently begin executed. If no OPTIONs are givenm, " +"print\n" +" the completion options for each NAME or the current completion " +"specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -5092,29 +5253,36 @@ msgstr "" "\tTrả lại thành công nếu không đưa ra tùy chọn sai,\n" "\tvà TÊN có một đặc tả điền nốt được xác định." -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" -" Read lines from the standard input into the array variable ARRAY, or from\n" -" file descriptor FD if the -u option is supplied. The variable MAPFILE is\n" +" Read lines from the standard input into the array variable ARRAY, or " +"from\n" +" file descriptor FD if the -u option is supplied. The variable MAPFILE " +"is\n" " the default ARRAY.\n" " \n" " Options:\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied.\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0.\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " +"copied.\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " +"index is 0.\n" " -s count \tDiscard the first COUNT lines read.\n" " -t\t\tRemove a trailing newline from each line read.\n" -" -u fd\t\tRead lines from file descriptor FD instead of the standard input.\n" +" -u fd\t\tRead lines from file descriptor FD instead of the standard " +"input.\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read.\n" -" -c quantum\tSpecify the number of lines read between each call to CALLBACK.\n" +" -c quantum\tSpecify the number of lines read between each call to " +"CALLBACK.\n" " \n" " Arguments:\n" " ARRAY\t\tArray variable name to use for file data.\n" " \n" " If -C is supplied without -c, the default quantum is 5000.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY " +"before\n" " assigning to it.\n" " \n" " Exit Status:\n" @@ -5131,7 +5299,8 @@ msgstr "" "\t\t-O GỐC\tbắt đầu gán cho MẢNG ở chỉ mục GỐC. Chỉ mục mặc định là 0.\n" "\t\t-s SỐ\thủy SỐ dòng đầu tiên được đọc.\n" "\t\t-t\tgỡ bỏ một ký tự dòng mới theo sau khỏi mỗi dòng được đọc.\n" -"\t\t-u FD\tđọc các dòng từ bộ mô tả tập tin FD thay vào từ đầu vào tiêu chuẩn.\n" +"\t\t-u FD\tđọc các dòng từ bộ mô tả tập tin FD thay vào từ đầu vào tiêu " +"chuẩn.\n" "\t\t-C GỌI_NGƯỢC\tđịnh giá GỌI_NGƯỢC mỗi lần đọc LƯỢNG dòng.\n" "\t\t-c LƯỢNG\tghi rõ số các dòng được đọc giữa hai lần gọi GỌI_NGƯỢC.\n" "\n" @@ -5144,4 +5313,5 @@ msgstr "" "\t\tsẽ xoá sạch MẢNG trước khi gán cho nó.\n" "\n" "\tTráng thái thoát:\n" -"\tTrả lại thành công nếu không đưa ra tùy chọn sai và MẢNG không phải chỉ đọc." +"\tTrả lại thành công nếu không đưa ra tùy chọn sai và MẢNG không phải chỉ " +"đọc." diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo index aa9a5b7f5fe580bf07468f15155d02ae6398dc2e..cbd7927aca7cd6e5f972181a31e6af825e92989e 100644 GIT binary patch delta 23 ecmaE<_fl^|2_KiGu91m?p`n$D<>orR*Bk(1PzRC# delta 23 ecmaE<_fl^|2_Kh*u92yNp`n$b@#Z?d*Bk(16bFd_ diff --git a/po/zh_TW.po b/po/zh_TW.po index cb913bb8..91cedeef 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-08-25 11:13-0400\n" +"POT-Creation-Date: 2008-09-24 11:49-0400\n" "PO-Revision-Date: 2008-08-20 20:12+0800\n" "Last-Translator: Zi-You Dai \n" "Language-Team: Chinese (traditional) \n" @@ -16,26 +16,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: arrayfunc.c:49 +#: arrayfunc.c:50 msgid "bad array subscript" msgstr "" -#: arrayfunc.c:312 builtins/declare.def:467 +#: arrayfunc.c:313 builtins/declare.def:467 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:478 +#: arrayfunc.c:479 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s:無效的功能名稱" -#: arrayfunc.c:480 +#: arrayfunc.c:481 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:516 +#: arrayfunc.c:517 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" @@ -64,32 +64,32 @@ msgstr "" msgid "%s: missing colon separator" msgstr "" -#: builtins/bind.def:199 +#: builtins/bind.def:202 #, c-format msgid "`%s': invalid keymap name" msgstr "" -#: builtins/bind.def:238 +#: builtins/bind.def:241 #, c-format msgid "%s: cannot read: %s" msgstr "%s:不能讀取: %s" -#: builtins/bind.def:253 +#: builtins/bind.def:256 #, c-format msgid "`%s': cannot unbind" msgstr "" -#: builtins/bind.def:288 builtins/bind.def:318 +#: builtins/bind.def:291 builtins/bind.def:321 #, c-format msgid "`%s': unknown function name" msgstr "`%s':未知函數名稱" -#: builtins/bind.def:296 +#: builtins/bind.def:299 #, c-format msgid "%s is not bound to any keys.\n" msgstr "" -#: builtins/bind.def:300 +#: builtins/bind.def:303 #, c-format msgid "%s can be invoked via " msgstr "" @@ -237,12 +237,12 @@ msgstr "%s:不是一個內建 shell" msgid "write error: %s" msgstr "寫入錯誤: %s" -#: builtins/common.c:523 +#: builtins/common.c:524 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s:錯誤檢索當前目錄: %s: %s\n" -#: builtins/common.c:589 builtins/common.c:591 +#: builtins/common.c:590 builtins/common.c:592 #, c-format msgid "%s: ambiguous job spec" msgstr "%s:含糊的工作規格" @@ -278,7 +278,7 @@ msgstr "只能用在一個函數" msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:365 execute_cmd.c:4696 +#: builtins/declare.def:365 execute_cmd.c:4707 #, c-format msgid "%s: readonly function" msgstr "%s:只讀函數" @@ -317,7 +317,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "" -#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4553 +#: builtins/evalfile.c:134 builtins/hash.def:169 execute_cmd.c:4564 #: shell.c:1439 #, c-format msgid "%s: is a directory" @@ -333,7 +333,7 @@ msgstr "" msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:185 execute_cmd.c:4623 shell.c:1449 +#: builtins/evalfile.c:185 execute_cmd.c:4634 shell.c:1449 #, c-format msgid "%s: cannot execute binary file" msgstr "" @@ -445,7 +445,7 @@ msgstr "" msgid "history position" msgstr "" -#: builtins/history.def:366 +#: builtins/history.def:365 #, c-format msgid "%s: history expansion failed" msgstr "" @@ -472,12 +472,12 @@ msgstr "" msgid "expression expected" msgstr "" -#: builtins/mapfile.def:215 builtins/read.def:271 +#: builtins/mapfile.def:215 builtins/read.def:272 #, c-format msgid "%s: invalid file descriptor specification" msgstr "" -#: builtins/mapfile.def:223 builtins/read.def:278 +#: builtins/mapfile.def:223 builtins/read.def:279 #, c-format msgid "%d: invalid file descriptor: %s" msgstr "" @@ -610,17 +610,17 @@ msgid "" " The `dirs' builtin displays the directory stack." msgstr "" -#: builtins/read.def:247 +#: builtins/read.def:248 #, c-format msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:569 +#: builtins/read.def:574 #, c-format msgid "read error: %d: %s" msgstr "" -#: builtins/return.def:68 +#: builtins/return.def:73 msgid "can only `return' from a function or sourced script" msgstr "" @@ -791,37 +791,37 @@ msgstr "" msgid "\atimed out waiting for input: auto-logout\n" msgstr "" -#: execute_cmd.c:483 +#: execute_cmd.c:486 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1079 +#: execute_cmd.c:1082 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:1930 +#: execute_cmd.c:1933 #, fuzzy msgid "pipe error" msgstr "寫入錯誤: %s" -#: execute_cmd.c:4243 +#: execute_cmd.c:4251 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:4334 +#: execute_cmd.c:4342 #, c-format msgid "%s: command not found" msgstr "%s:命令找不到" -#: execute_cmd.c:4586 +#: execute_cmd.c:4597 #, c-format msgid "%s: %s: bad interpreter" msgstr "" -#: execute_cmd.c:4735 +#: execute_cmd.c:4746 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -896,7 +896,7 @@ msgstr "" msgid "getcwd: cannot access parent directories" msgstr "" -#: input.c:94 subst.c:4551 +#: input.c:94 subst.c:4554 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -911,144 +911,144 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:464 +#: jobs.c:466 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:879 +#: jobs.c:882 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:997 +#: jobs.c:1000 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1102 +#: jobs.c:1105 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1105 +#: jobs.c:1108 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1393 +#: jobs.c:1396 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" -#: jobs.c:1408 +#: jobs.c:1411 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1422 jobs.c:1447 +#: jobs.c:1425 jobs.c:1450 msgid "Done" msgstr "" -#: jobs.c:1427 siglist.c:122 +#: jobs.c:1430 siglist.c:122 msgid "Stopped" msgstr "" -#: jobs.c:1431 +#: jobs.c:1434 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1435 +#: jobs.c:1438 msgid "Running" msgstr "" -#: jobs.c:1449 +#: jobs.c:1452 #, c-format msgid "Done(%d)" msgstr "" -#: jobs.c:1451 +#: jobs.c:1454 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1454 +#: jobs.c:1457 msgid "Unknown status" msgstr "" -#: jobs.c:1541 +#: jobs.c:1544 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1560 +#: jobs.c:1563 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1761 +#: jobs.c:1766 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2089 nojobs.c:576 +#: jobs.c:2094 nojobs.c:576 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2316 +#: jobs.c:2321 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2588 +#: jobs.c:2593 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:2810 +#: jobs.c:2815 #, c-format msgid "%s: job has terminated" msgstr "" -#: jobs.c:2819 +#: jobs.c:2824 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3482 +#: jobs.c:3487 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s:警告:" -#: jobs.c:3496 nojobs.c:805 +#: jobs.c:3501 nojobs.c:805 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3508 jobs.c:3521 +#: jobs.c:3513 jobs.c:3526 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:3553 +#: jobs.c:3558 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:3613 +#: jobs.c:3618 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3623 +#: jobs.c:3628 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:3651 +#: jobs.c:3656 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:3656 +#: jobs.c:3661 msgid "no job control in this shell" msgstr "" @@ -1300,31 +1300,31 @@ msgstr "" msgid "file descriptor out of range" msgstr "" -#: redir.c:146 +#: redir.c:147 #, c-format msgid "%s: ambiguous redirect" msgstr "" -#: redir.c:150 +#: redir.c:151 #, c-format msgid "%s: cannot overwrite existing file" msgstr "" -#: redir.c:155 +#: redir.c:156 #, c-format msgid "%s: restricted: cannot redirect output" msgstr "" -#: redir.c:160 +#: redir.c:161 #, c-format msgid "cannot create temp file for here-document: %s" msgstr "" -#: redir.c:515 +#: redir.c:516 msgid "/dev/(tcp|udp)/host/port not supported without networking" msgstr "" -#: redir.c:992 +#: redir.c:993 msgid "redirection error: cannot duplicate fd" msgstr "" @@ -1391,7 +1391,7 @@ msgstr "輸入 `%s -c help' 更多訊息關於內建 shell 命令。\n" msgid "Use the `bashbug' command to report bugs.\n" msgstr "使用 `bashbug' 命令報告臭蟲。\n" -#: sig.c:576 +#: sig.c:577 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d:無效操作" @@ -1567,77 +1567,77 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1177 subst.c:1298 +#: subst.c:1179 subst.c:1300 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:2450 +#: subst.c:2452 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:4448 subst.c:4464 +#: subst.c:4451 subst.c:4467 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:4496 +#: subst.c:4499 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:4541 +#: subst.c:4544 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:4543 +#: subst.c:4546 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:4561 +#: subst.c:4564 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:4757 +#: subst.c:4760 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:4791 +#: subst.c:4794 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:4808 +#: subst.c:4811 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:5310 +#: subst.c:5313 #, c-format msgid "%s: parameter null or not set" msgstr "" -#: subst.c:5600 +#: subst.c:5603 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:6646 +#: subst.c:6655 #, c-format msgid "%s: bad substitution" msgstr "" -#: subst.c:6722 +#: subst.c:6735 #, c-format msgid "$%s: cannot assign in this way" msgstr "" -#: subst.c:7441 +#: subst.c:7454 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "" -#: subst.c:8314 +#: subst.c:8327 #, c-format msgid "no match: %s" msgstr "" @@ -1674,22 +1674,22 @@ msgstr "" msgid "missing `]'" msgstr "" -#: trap.c:200 +#: trap.c:201 msgid "invalid signal number" msgstr "無效信號數" -#: trap.c:323 +#: trap.c:324 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:327 +#: trap.c:328 #, c-format msgid "" "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" msgstr "run_pending_traps: 信號處理是 SIG_DFL, resending %d (%s) to myself" -#: trap.c:371 +#: trap.c:372 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler:壞的信號 %d" @@ -1704,33 +1704,33 @@ msgstr "錯誤,輸入的函數定義為 `%s'" msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1891 +#: variables.c:1893 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:3120 +#: variables.c:3122 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:3337 variables.c:3346 +#: variables.c:3339 variables.c:3348 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:3352 +#: variables.c:3354 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:3787 +#: variables.c:3789 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:3800 +#: variables.c:3802 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:3874 +#: variables.c:3876 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" @@ -2842,8 +2842,9 @@ msgid "" "is\n" " \t\tnot read withint TIMEOUT seconds. The value of the TMOUT\n" " \t\tvariable is the default timeout. TIMEOUT may be a\n" -" \t\tfractional number. The exit status is greater than 128 if\n" -" \t\tthe timeout is exceeded\n" +" \t\tfractional number. If TIMEOUT is 0, read returns success only\n" +" \t\tif input is available on the specified file descriptor. The\n" +" \t\texit status is greater than 128 if the timeout is exceeded\n" " -u fd\t\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" @@ -2852,7 +2853,7 @@ msgid "" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1001 +#: builtins.c:1002 msgid "" "Return from a shell function.\n" " \n" @@ -2864,7 +2865,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1014 +#: builtins.c:1015 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -2946,7 +2947,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1096 +#: builtins.c:1097 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -2966,7 +2967,7 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1116 +#: builtins.c:1117 msgid "" "Set export attribute for shell variables.\n" " \n" @@ -2985,7 +2986,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1135 +#: builtins.c:1136 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3005,7 +3006,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1156 +#: builtins.c:1157 msgid "" "Shift positional parameters.\n" " \n" @@ -3016,7 +3017,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1168 builtins.c:1183 +#: builtins.c:1169 builtins.c:1184 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3030,7 +3031,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1199 +#: builtins.c:1200 msgid "" "Suspend shell execution.\n" " \n" @@ -3044,7 +3045,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1215 +#: builtins.c:1216 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3121,7 +3122,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1291 +#: builtins.c:1292 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3129,7 +3130,7 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1300 +#: builtins.c:1301 msgid "" "Display process times.\n" " \n" @@ -3141,7 +3142,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:1312 +#: builtins.c:1313 msgid "" "Trap signals and other events.\n" " \n" @@ -3177,7 +3178,7 @@ msgid "" "given." msgstr "" -#: builtins.c:1344 +#: builtins.c:1345 msgid "" "Display information about command type.\n" " \n" @@ -3207,7 +3208,7 @@ msgid "" "found." msgstr "" -#: builtins.c:1375 +#: builtins.c:1376 msgid "" "Modify shell resource limits.\n" " \n" @@ -3251,7 +3252,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1420 +#: builtins.c:1421 msgid "" "Display or set file mode mask.\n" " \n" @@ -3269,7 +3270,7 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1440 +#: builtins.c:1441 msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -3286,7 +3287,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1458 +#: builtins.c:1459 msgid "" "Wait for process completion and return exit status.\n" " \n" @@ -3300,7 +3301,7 @@ msgid "" " given." msgstr "" -#: builtins.c:1473 +#: builtins.c:1474 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3313,7 +3314,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1487 +#: builtins.c:1488 msgid "" "Arithmetic for loop.\n" " \n" @@ -3330,7 +3331,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1505 +#: builtins.c:1506 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3350,7 +3351,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1526 +#: builtins.c:1527 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3366,7 +3367,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1543 +#: builtins.c:1544 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3377,7 +3378,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1555 +#: builtins.c:1556 msgid "" "Execute commands based on conditional.\n" " \n" @@ -3398,7 +3399,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1572 +#: builtins.c:1573 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3409,7 +3410,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1584 +#: builtins.c:1585 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3420,7 +3421,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1596 +#: builtins.c:1597 msgid "" "Define shell function.\n" " \n" @@ -3434,7 +3435,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1610 +#: builtins.c:1611 msgid "" "Group commands as a unit.\n" " \n" @@ -3445,7 +3446,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1622 +#: builtins.c:1623 msgid "" "Resume job in foreground.\n" " \n" @@ -3459,7 +3460,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1637 +#: builtins.c:1638 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3470,7 +3471,7 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1649 +#: builtins.c:1650 msgid "" "Execute conditional command.\n" " \n" @@ -3498,7 +3499,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1675 +#: builtins.c:1676 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3552,7 +3553,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1732 +#: builtins.c:1733 msgid "" "Add directories to stack.\n" " \n" @@ -3583,7 +3584,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1766 +#: builtins.c:1767 msgid "" "Remove directories from stack.\n" " \n" @@ -3610,7 +3611,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1796 +#: builtins.c:1797 msgid "" "Display directory stack.\n" " \n" @@ -3639,7 +3640,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1825 +#: builtins.c:1826 msgid "" "Set and unset shell options.\n" " \n" @@ -3660,7 +3661,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1846 +#: builtins.c:1847 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3690,7 +3691,7 @@ msgid "" " error occurs." msgstr "" -#: builtins.c:1873 +#: builtins.c:1874 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -3712,7 +3713,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1896 +#: builtins.c:1897 msgid "" "Display possible completions depending on the options.\n" " \n" @@ -3725,7 +3726,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1911 +#: builtins.c:1912 msgid "" "Modify or display completion options.\n" " \n" @@ -3754,7 +3755,7 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:1939 +#: builtins.c:1940 msgid "" "Read lines from a file into an array variable.\n" " \n" diff --git a/redir.c b/redir.c index b6528719..6db8d70e 100644 --- a/redir.c +++ b/redir.c @@ -103,7 +103,8 @@ redirection_error (temp, error) exec 4294967297>x */ filename = _("file descriptor out of range"); #ifdef EBADF - else if (temp->redirector >= 0 && errno == EBADF) + /* This error can never involve NOCLOBBER */ + else if (error != NOCLOBBER_REDIRECT && temp->redirector >= 0 && errno == EBADF) { /* If we're dealing with two file descriptors, we have to guess about which one is invalid; in the cases of r_{duplicating,move}_input and