From 6df81145a8620a8e17e1475f41eea7cd04a9fbf1 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Mon, 11 Jul 2016 10:29:26 -0400 Subject: [PATCH] commit bash-20160708 snapshot --- CHANGES | 126 +++ CWRU/CWRU.chlog | 18 +- NEWS | 44 +- bashline.c | 2 +- po/af.gmo | Bin 1224 -> 1224 bytes po/af.po | 377 ++++--- po/bash.pot | 378 ++++--- po/bg.gmo | Bin 221117 -> 219827 bytes po/bg.po | 376 ++++--- po/ca.gmo | Bin 100922 -> 99978 bytes po/ca.po | 380 ++++--- po/cs.gmo | Bin 164762 -> 163831 bytes po/cs.po | 379 ++++--- po/da.gmo | Bin 80259 -> 79327 bytes po/da.po | 376 ++++--- po/de.gmo | Bin 92884 -> 92714 bytes po/de.po | 375 ++++--- po/el.gmo | Bin 35539 -> 38942 bytes po/el.po | 1278 ++++++++++++---------- po/en@boldquot.gmo | Bin 167875 -> 168977 bytes po/en@boldquot.po | 386 ++++--- po/en@quot.gmo | Bin 166283 -> 167369 bytes po/en@quot.po | 386 ++++--- po/eo.gmo | Bin 152929 -> 152073 bytes po/eo.po | 376 ++++--- po/es.gmo | Bin 96645 -> 95671 bytes po/es.po | 382 ++++--- po/et.gmo | Bin 12133 -> 12133 bytes po/et.po | 380 ++++--- po/fi.gmo | Bin 82372 -> 81468 bytes po/fi.po | 376 ++++--- po/fr.gmo | Bin 168604 -> 167615 bytes po/fr.po | 379 ++++--- po/ga.gmo | Bin 56108 -> 55927 bytes po/ga.po | 375 ++++--- po/gl.gmo | Bin 60045 -> 59107 bytes po/gl.po | 376 ++++--- po/hr.gmo | Bin 34055 -> 33869 bytes po/hr.po | 375 ++++--- po/hu.gmo | Bin 161944 -> 160974 bytes po/hu.po | 376 ++++--- po/id.gmo | Bin 100067 -> 99123 bytes po/id.po | 379 ++++--- po/it.gmo | Bin 96432 -> 95487 bytes po/it.po | 376 ++++--- po/ja.gmo | Bin 111407 -> 110336 bytes po/ja.po | 376 ++++--- po/lt.gmo | Bin 29236 -> 29236 bytes po/lt.po | 377 ++++--- po/nb.gmo | Bin 153934 -> 153011 bytes po/nb.po | 376 ++++--- po/nl.gmo | Bin 160780 -> 159883 bytes po/nl.po | 376 ++++--- po/pl.gmo | Bin 164214 -> 163262 bytes po/pl.po | 376 ++++--- po/pt_BR.gmo | Bin 163867 -> 162838 bytes po/pt_BR.po | 2476 +++++++++++++++++++++++++++---------------- po/ro.gmo | Bin 9312 -> 9312 bytes po/ro.po | 377 ++++--- po/ru.gmo | Bin 136146 -> 134863 bytes po/ru.po | 379 ++++--- po/sk.gmo | Bin 95577 -> 94657 bytes po/sk.po | 379 ++++--- po/sl.gmo | Bin 92535 -> 91641 bytes po/sl.po | 376 ++++--- po/sr.gmo | Bin 207222 -> 206012 bytes po/sr.po | 376 ++++--- po/sv.gmo | Bin 157714 -> 156808 bytes po/sv.po | 376 ++++--- po/tr.gmo | Bin 80237 -> 80056 bytes po/tr.po | 378 ++++--- po/uk.gmo | Bin 210917 -> 209686 bytes po/uk.po | 376 ++++--- po/vi.gmo | Bin 170241 -> 169284 bytes po/vi.po | 376 ++++--- po/zh_CN.gmo | Bin 148713 -> 147814 bytes po/zh_CN.po | 376 ++++--- po/zh_TW.gmo | Bin 94869 -> 93961 bytes po/zh_TW.po | 376 ++++--- tests/extglob4.sub | 3 + tests/nameref.right | 1 - tests/nameref11.sub | 2 +- tests/nameref12.sub | 2 +- 83 files changed, 10137 insertions(+), 7404 deletions(-) diff --git a/CHANGES b/CHANGES index 625f45b0..b27a753d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,129 @@ +This document details the changes between this version, bash-4.4-beta2, and +the previous version, bash-4.4-rc1. + +1. Changes to Bash + +a. Fixed a memory leak when processing ${!var[@]}. + +b. Fixed a bug that caused subshells to free trap strings associated with + inherited signals. + +c. Inheriting BASHOPTS from the environment now works to force actions + associated with enabling an option, instead of just marking the option + as enabled. + +d. Fixed a bug that allowed assignments to BASH_CMDS when the shell was in + restricted mode. + +e. Fixed a bug caused by an accidental omission of part of the original patch + for EXECIGNORE. + +e. Prompt expansion now quotes the results of the \s, \h, and \H expansions. + +f. Fixed a bug that caused parsing errors in command substitutions with + consecutive case statements separated by newlines. + +g. Updated logic used to decide whether bash is running inside an emacs + terminal emulator to work with future emacs versions. + +h. Fixed two extended pattern matching bugs caused by premature short- + circuiting. + +i. Fixed a memory leak in the code that removes duplicate history entries. + +j. There are a number of bug fixes to coproc, mapfile, declare, unset, + and assignment statements that prevent nameref variables from creating + and unsetting variables with invalid names. + +k. Fixed a bug that caused variables to be inadvertently marked as both an + associative and an indexed array. + +l. Fixed a bug that caused `bash -c' to not run a trap specified in the + command string. + +j. There are a number of bug fixes to coproc, mapfile, declare, and assignment + statements that prevent nameref variables from overwriting or modifying + attributes of readonly variables. + +k. Fixed a bug that caused command substitution to attempt to set the + terminal's process group incorrectly. + +l. Fixed a bug that could cause prompt string expansion to display error + messages when the `nounset' shell option is set. + +m. Fixed a bug that caused "$@" to not expand to an empty string under the + circumstances when Posix says it should ("${@-${@-$@}}"). + +n. Fixed several bugs caused by referencing nameref variables whose values + are names of unset variables (or names that are valid for referencing + but not assignment), including creating variables in the temporary + environment. + +o. Function tracing and error tracing are disabled if --debugger is supplied + at startup but the shell can't find the debugger start file. + +p. Fixed a bug when IFS is used as the control variable in a for statement. + +q. Fixed a bug with SIGINT received by a command substitution in an interactive + shell. + +r. The checks for nameref variable self-references are more thorough. + +s. Fixed several bugs with multi-line aliases. + +t. Fixed `test' to handle the four-argument case where $1 == '(' and + $4 == ')'. + +u. Fixed a bug in the expansion of $* in the cases where word splitting is + not performed. + +v. Fixed a bug in execution of case statements where IFS includes the + pattern matching characters. + +2. Changes to Readline + +a. When refreshing the line as the result of a key sequence, Readline attempts + to redraw only the last line of a multiline prompt. + +b. Fixed an issue that caused completion of git commands to display + incorrectly when using colored-completion-prefix. + +c. Fixed several redisplay bugs having to do with multibyte characters and + invisible characters in prompt strings. + +3. New Features in Bash + +a. Value conversions (arithmetic expansions, case modification, etc.) now + happen when assigning elements of an array using compound assignment. + +b. There is a new option settable in config-top.h that makes multiple + directory arguments to `cd' a fatal error. + +c. Bash now uses mktemp() when creating internal temporary files; it produces + a warning at build time on many Linux systems. + +4. New Features in Readline + +a. The default binding for ^W in vi mode now uses word boundaries specified + by Posix (vi-unix-word-rubout is bindable command name). + +b. rl_clear_visible_line: new application-callable function; clears all + screen lines occupied by the current visible readline line. + +c. rl_tty_set_echoing: application-callable function that controls whether + or not readline thinks it is echoing terminal output. + +d. Handle >| and strings of digits preceding and following redirection + specifications as single tokens when tokenizing the line for history + expansion. + +e. Fixed a bug with displaying completions when the prefix display length + is greater than the length of the completions to be displayed. + +f. The :p history modifier now applies to the entire line, so any expansion + specifying :p causes the line to be printed instead of expanded. + +------------------------------------------------------------------------------ This document details the changes between this version, bash-4.4-rc1, and the previous version, bash-4.4-beta. diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index d9860d6f..9e6d09e9 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -11163,9 +11163,10 @@ builtins/declare.def subst.c - make_internal_declare: handle += append op - - shell_expand_word_list: when transforming assignment statement arguments - to `declare', make sure to handle += append op to avoid passing invalid - identifiers to declare. Report by Grisha Levit + - shell_expand_word_list: when transforming assignment statement + arguments to `declare', make sure to handle += append op to avoid + passing invalid identifiers to declare. Report by Grisha Levit + 6/1 --- @@ -11330,3 +11331,14 @@ subst.c subst.[ch],arrayfunc.c - string_list_dollar_at: now takes a new third argument, currently reserved for future use; changed callers and declaration + + 7/7 + --- +[bash-4.4-beta2 frozen] + + 7/9 + --- +bashline.c + - check_redir: make sure that index is > 0 before checking previous + char; fixes out of bounds read reported by Hanno Böck + diff --git a/NEWS b/NEWS index bc9fedd4..138f1d7c 100644 --- a/NEWS +++ b/NEWS @@ -120,22 +120,33 @@ ii. inherit_errexit: a new `shopt' option that, when set, causes command substitutions to inherit the -e option. By default, those subshells disable -e. It's enabled as part of turning on posix mode. -jj. New prompt string: PS0. Expanded and displayed by interactive shells after +jj. New prompt string: PS0. Expanded and displayed by interactive shells after reading a complete command but before executing it. -kk. Interactive shells now behave as if SIGTSTP/SIGTTIN/SIGTTOU are set to SIG_DFL - when the shell is started, so they are set to SIG_DFL in child processes. +kk. Interactive shells now behave as if SIGTSTP/SIGTTIN/SIGTTOU are set to + SIG_DFL when the shell is started, so they are set to SIG_DFL in child + processes. ll. Posix-mode shells now allow double quotes to quote the history expansion character. mm. OLDPWD can be inherited from the environment if it names a directory. -nn. Shells running as root no longer inherit PS4 from the environment, closing a - security hole involving PS4 expansion performing command substitution. +nn. Shells running as root no longer inherit PS4 from the environment, closing + a security hole involving PS4 expansion performing command substitution. -oo. If executing an implicit `cd' when the `autocd' option is set, bash will now - invoke a function named `cd' if one exists before executing the `cd' builtin. +oo. If executing an implicit `cd' when the `autocd' option is set, bash will + now invoke a function named `cd' if one exists before executing the `cd' + builtin. + +pp. Value conversions (arithmetic expansions, case modification, etc.) now + happen when assigning elements of an array using compound assignment. + +qq. There is a new option settable in config-top.h that makes multiple + directory arguments to `cd' a fatal error. + +rr. Bash now uses mktemp() when creating internal temporary files; it produces + a warning at build time on many Linux systems. 2. New Features in Readline @@ -182,6 +193,25 @@ k. If readline reads a history file that begins with `#' (or the value of l. Readline now throws an error if it parses a key binding without a terminating `:' or whitespace. +m. The default binding for ^W in vi mode now uses word boundaries specified + by Posix (vi-unix-word-rubout is bindable command name). + +n. rl_clear_visible_line: new application-callable function; clears all + screen lines occupied by the current visible readline line. + +o. rl_tty_set_echoing: application-callable function that controls whether + or not readline thinks it is echoing terminal output. + +p. Handle >| and strings of digits preceding and following redirection + specifications as single tokens when tokenizing the line for history + expansion. + +q. Fixed a bug with displaying completions when the prefix display length + is greater than the length of the completions to be displayed. + +r. The :p history modifier now applies to the entire line, so any expansion + specifying :p causes the line to be printed instead of expanded. + ------------------------------------------------------------------------------- This is a terse description of the new features added to bash-4.3 since the release of bash-4.2. As always, the manual page (doc/bash.1) is diff --git a/bashline.c b/bashline.c index eb719443..a8b403cd 100644 --- a/bashline.c +++ b/bashline.c @@ -1279,7 +1279,7 @@ check_redir (ti) /* Handle the two character tokens `>&', `<&', and `>|'. We are not in a command position after one of these. */ this_char = rl_line_buffer[ti]; - prev_char = rl_line_buffer[ti - 1]; + prev_char = (ti > 0) ? rl_line_buffer[ti - 1] : 0; if ((this_char == '&' && (prev_char == '<' || prev_char == '>')) || (this_char == '|' && prev_char == '>')) diff --git a/po/af.gmo b/po/af.gmo index cfb8a4c68c6d4a2394f9c97502d696e41215ed74..fdf77ba636bd7de25fcbfc5b2613e4026dcefaa4 100644 GIT binary patch delta 26 hcmX@Xd4hApdL~|TT>~=(Ljx;gBV7ZN&3l-5m;h_D2MYiI delta 26 hcmX@Xd4hApdL~{YT|)x}19K}=OI-ug&3l-5m;h_92N3`O diff --git a/po/af.po b/po/af.po index c00ef0d1..b7e8eb3f 100644 --- a/po/af.po +++ b/po/af.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2004-03-17 13:48+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" @@ -20,46 +20,52 @@ msgstr "" msgid "bad array subscript" msgstr "Os/2 Biskaart Skikking" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: illegal option -- %c\n" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: kan nie %s skep nie" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "" @@ -79,7 +85,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "%s: illegal option -- %c\n" @@ -138,12 +144,17 @@ msgstr "" msgid "HOME not set" msgstr "" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 #, fuzzy msgid "too many arguments" msgstr "te veel parameters" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "boonste lêergids." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "" @@ -162,7 +173,7 @@ msgstr "besig om te skryf" msgid "%s: usage: " msgstr "" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, fuzzy, c-format msgid "%s: option requires an argument" msgstr "%s: option `%s' requires an argument\n" @@ -177,7 +188,7 @@ msgstr "" msgid "%s: not found" msgstr "%s: bevel nie gevind nie" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, fuzzy, c-format msgid "%s: invalid option" msgstr "%s: illegal option -- %c\n" @@ -187,7 +198,7 @@ msgstr "%s: illegal option -- %c\n" msgid "%s: invalid option name" msgstr "%s: illegal option -- %c\n" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, fuzzy, c-format msgid "`%s': not a valid identifier" msgstr "Die datum is nie geldige!" @@ -304,7 +315,7 @@ msgid "%s: invalid action name" msgstr "" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "" @@ -317,7 +328,7 @@ msgstr "" msgid "warning: -C option may not work as you expect" msgstr "" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -325,41 +336,47 @@ msgstr "" msgid "can only be used in a function" msgstr "" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: illegal option -- %c\n" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: leesalleen-funksie" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, fuzzy, c-format msgid "%s: cannot destroy array variables in this way" msgstr "Kan nie soek 'n handtekening in hierdie boodskap!" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -393,7 +410,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: kan nie %s skep nie" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: is 'n gids" @@ -408,7 +425,7 @@ msgstr "%s: kan nie 'n bin msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kan nie 'n binêre lêer uitvoer nie" @@ -451,7 +468,7 @@ msgstr "" msgid "%s: cannot open temp file: %s" msgstr "%s: kan nie %s skep nie" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "" @@ -737,21 +754,21 @@ msgstr "pypfout: %s" msgid "can only `return' from a function or sourced script" msgstr "" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" -#: builtins/set.def:878 +#: builtins/set.def:888 #, fuzzy, c-format msgid "%s: cannot unset" msgstr "%s: kan nie %s skep nie" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, fuzzy, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: kan nie %s skep nie" -#: builtins/set.def:912 +#: builtins/set.def:922 #, fuzzy, c-format msgid "%s: not an array variable" msgstr "Veranderlike boom" @@ -771,11 +788,11 @@ msgstr "%s: kan nie %s skep nie" msgid "shift count" msgstr "Shift" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "" @@ -928,62 +945,67 @@ msgstr "" msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 #, fuzzy msgid "pipe error" msgstr "pypfout: %s" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: bevel nie gevind nie" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: is 'n gids" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: kan nie 'n binêre lêer uitvoer nie" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" @@ -1067,7 +1089,7 @@ msgstr "%s: heelgetal-uitdrukking is verwag\n" msgid "getcwd: cannot access parent directories" msgstr "Kan nie die program uitvoer nie:" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" @@ -1082,152 +1104,152 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1584 +#: jobs.c:1586 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "E108: Geen veranderlike: \"%s\"" -#: jobs.c:1599 +#: jobs.c:1601 #, fuzzy, c-format msgid "Signal %d" msgstr "Sein kwaliteit:" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Klaar" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 #, fuzzy msgid "Stopped" msgstr "Op gehou" -#: jobs.c:1622 +#: jobs.c:1624 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Op gehou" -#: jobs.c:1626 +#: jobs.c:1628 #, fuzzy msgid "Running" msgstr "aktief" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Klaar(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Verlaat %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Onbekende status" -#: jobs.c:1735 +#: jobs.c:1737 #, fuzzy, c-format msgid "(core dumped) " msgstr "Kern Ontwikkelaar" -#: jobs.c:1754 +#: jobs.c:1756 #, fuzzy, c-format msgid " (wd: %s)" msgstr "Aktiveer nou dadelik" -#: jobs.c:1978 +#: jobs.c:1981 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "Fout in die skryf van %s" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:3201 +#: jobs.c:3212 #, fuzzy, c-format msgid "%s: job has terminated" msgstr "Die bediener beëindig Die verbinding." -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, fuzzy, c-format msgid "%s: line %d: " msgstr "3d modus" -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, fuzzy, c-format msgid " (core dumped)" msgstr "Kern Ontwikkelaar" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, fuzzy, c-format msgid "(wd now: %s)\n" msgstr "Aktiveer nou dadelik" -#: jobs.c:4019 +#: jobs.c:4030 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "Inisialisering van OpenGL het misluk." -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:4092 +#: jobs.c:4103 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "Inisialisering van OpenGL het misluk." -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "geen taakbeheer in hierdie dop nie" @@ -1383,107 +1405,114 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" -#: parse.y:4288 +#: parse.y:4419 #, fuzzy msgid "syntax error in conditional expression" msgstr "Sintaks fout in patroon" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "" -#: parse.y:4370 +#: parse.y:4501 #, fuzzy msgid "expected `)'" msgstr "')' is verwag\n" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4448 +#: parse.y:4579 #, fuzzy, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "%s: binêre operator is verwag\n" -#: parse.y:4452 +#: parse.y:4583 #, fuzzy msgid "conditional binary operator expected" msgstr "%s: binêre operator is verwag\n" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4489 +#: parse.y:4620 #, fuzzy, c-format msgid "unexpected token `%c' in conditional command" msgstr "Soek die lêer vir 'n uitdrukking" -#: parse.y:4492 +#: parse.y:4623 #, fuzzy, c-format msgid "unexpected token `%s' in conditional command" msgstr "Soek die lêer vir 'n uitdrukking" -#: parse.y:4496 +#: parse.y:4627 #, fuzzy, c-format msgid "unexpected token %d in conditional command" msgstr "Soek die lêer vir 'n uitdrukking" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "" -#: parse.y:5871 +#: parse.y:6013 #, fuzzy, c-format msgid "syntax error near `%s'" msgstr "Sintaks fout in patroon" -#: parse.y:5881 +#: parse.y:6023 #, fuzzy msgid "syntax error: unexpected end of file" msgstr "Onverwagte einde van lêer tydens inlees van hulpbron." -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "sintaksfout" -#: parse.y:5943 +#: parse.y:6085 #, fuzzy, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Gebruik Kaart na Los Tronk" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "" @@ -1492,6 +1521,11 @@ msgstr "" msgid "completion: function `%s' not found" msgstr "" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1559,97 +1593,101 @@ msgstr "" msgid "redirection error: cannot duplicate fd" msgstr "Pypfout.\n" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "" -#: shell.c:904 +#: shell.c:927 #, fuzzy, c-format msgid "%c%c: invalid option" msgstr "%s: illegal option -- %c\n" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "kan nie fd %d na fd 0 dupliseer nie: %s" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: is 'n gids" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ek het nie 'n naam nie!" -#: shell.c:1905 +#: shell.c:1930 #, fuzzy, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "bedryfstelselkernweergawe" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" msgstr "" -#: shell.c:1908 +#: shell.c:1933 #, fuzzy msgid "GNU long options:\n" msgstr "Gnu C Saamsteller Opsies" -#: shell.c:1912 +#: shell.c:1937 #, fuzzy msgid "Shell options:\n" msgstr "opneem opsies" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" -#: shell.c:1928 +#: shell.c:1953 #, fuzzy, c-format msgid "\t-%s or -o option\n" msgstr "" "Gebruik so: %s LÊER \n" " of: %s OPSIE\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1855,97 +1893,107 @@ msgstr "Sein kwaliteit:" msgid "Unknown Signal #%d" msgstr "Sein kwaliteit:" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "--Geen reëls in buffer--" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "Woord Substitusie" -#: subst.c:5703 +#: subst.c:5707 #, fuzzy msgid "cannot make child for process substitution" msgstr "Woord Substitusie" -#: subst.c:5753 +#: subst.c:5757 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:5755 +#: subst.c:5759 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:5778 +#: subst.c:5782 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Kan nie oopmaak vir skrip-afvoer nie: \"" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "--Geen reëls in buffer--" + +#: subst.c:5992 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "Woord Substitusie" -#: subst.c:6027 +#: subst.c:6036 #, fuzzy msgid "cannot make child for command substitution" msgstr "Woord Substitusie" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, fuzzy, c-format msgid "%s: bad substitution" msgstr "Woord Substitusie" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: illegal option -- %c\n" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "%s: illegal option -- %c\n" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, fuzzy, c-format msgid "%s: substring expression < 0" msgstr "ongeldige uitdrukking" -#: subst.c:8320 +#: subst.c:8348 #, fuzzy, c-format msgid "$%s: cannot assign in this way" msgstr "Kan nie soek 'n handtekening in hierdie boodskap!" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "--Geen reëls in buffer--" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "" @@ -1980,7 +2028,7 @@ msgstr "%s: unit msgid "%s: binary operator expected" msgstr "%s: binêre operator is verwag\n" -#: test.c:862 +#: test.c:869 #, fuzzy msgid "missing `]'" msgstr "Ontbrekende '>'" @@ -2006,72 +2054,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "Kan nie soek 'n handtekening in hierdie boodskap!" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: kan nie %s skep nie" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "" @@ -2760,7 +2808,7 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" #: builtins.c:538 @@ -3056,7 +3104,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3850,7 +3898,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 @@ -4267,9 +4315,6 @@ msgstr "" #~ msgid " new current working directory." #~ msgstr "Nuutste gebruik word werksaam gids" -#~ msgid "top directory." -#~ msgstr "boonste lêergids." - #, fuzzy #~ msgid "Obsolete. See `declare'." #~ msgstr "Verkeerde verklaring tipe" diff --git a/po/bash.pot b/po/bash.pot index fa022fd1..12ccda33 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: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,46 +21,52 @@ msgstr "" msgid "bad array subscript" msgstr "" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "" @@ -80,7 +86,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "" @@ -138,11 +144,15 @@ msgstr "" msgid "HOME not set" msgstr "" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +msgid "null directory" +msgstr "" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "" @@ -161,7 +171,7 @@ msgstr "" msgid "%s: usage: " msgstr "" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "" @@ -176,7 +186,7 @@ msgstr "" msgid "%s: not found" msgstr "" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "" @@ -186,7 +196,7 @@ msgstr "" msgid "%s: invalid option name" msgstr "" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "" @@ -295,7 +305,7 @@ msgid "%s: invalid action name" msgstr "" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "" @@ -308,7 +318,7 @@ msgstr "" msgid "warning: -C option may not work as you expect" msgstr "" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -316,41 +326,47 @@ msgstr "" msgid "can only be used in a function" msgstr "" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -384,7 +400,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "" @@ -399,7 +415,7 @@ msgstr "" msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "" @@ -441,7 +457,7 @@ msgstr "" msgid "%s: cannot open temp file: %s" msgstr "" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "" @@ -721,21 +737,21 @@ msgstr "" msgid "can only `return' from a function or sourced script" msgstr "" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "" @@ -754,11 +770,11 @@ msgstr "" msgid "shift count" msgstr "" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "" @@ -904,61 +920,66 @@ msgstr "" msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -1033,7 +1054,7 @@ msgstr "" msgid "getcwd: cannot access parent directories" msgstr "" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -1048,148 +1069,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "" -#: jobs.c:1643 -#, c-format -msgid "Done(%d)" -msgstr "" - #: jobs.c:1645 #, c-format +msgid "Done(%d)" +msgstr "" + +#: jobs.c:1647 +#, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "" -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "" @@ -1340,103 +1361,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "" @@ -1445,6 +1473,11 @@ msgstr "" msgid "completion: function `%s' not found" msgstr "" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1511,93 +1544,97 @@ msgstr "" msgid "redirection error: cannot duplicate fd" msgstr "" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" msgstr "" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1771,93 +1808,102 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:5988 +#: subst.c:5868 +msgid "command substitution: ignored null byte in input" +msgstr "" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "" @@ -1890,7 +1936,7 @@ msgstr "" msgid "%s: binary operator expected" msgstr "" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "" @@ -1914,72 +1960,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "" @@ -2620,7 +2666,7 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" #: builtins.c:538 @@ -2916,7 +2962,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3710,7 +3756,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 diff --git a/po/bg.gmo b/po/bg.gmo index da99b70cf9a06415118bbe64eca0f7a16ea2d303..92abfd7694f989cc0da3b7908c4efde244c92264 100644 GIT binary patch delta 12284 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 uQ*K+yn$C%)b2okF delta 13119 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 diff --git a/po/bg.po b/po/bg.po index 76f7ea2d..cb0d8dd7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-29 08:17+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -21,48 +21,54 @@ msgstr "" msgid "bad array subscript" msgstr "грешен Ð¸Ð½Ð´ÐµÐºÑ Ð½Ð° маÑив" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: маÑивът не може да бъде преобразуван към речник" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: грешно име на ключ в речник" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: не може да Ñе приÑвоÑва на нецифров индекÑ" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: при приÑвоÑване към речник трÑбва да Ñе използва индекÑ" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: не може да Ñе Ñъздаде: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "изпълнение на команда на Ð®Ð½Ð¸ÐºÑ Ð¾Ñ‚ bash: не може да Ñе открие подредбата на\n" "функциите на клавишите за командата" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: първиÑÑ‚ непразен знак не е „\"“" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "в %2$s липÑва затварÑщ знак „%1$c“" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: разделителÑÑ‚ „:“ липÑва" @@ -86,7 +92,7 @@ msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" "замеÑтване на изразите Ñ Ñ„Ð¸Ð³ÑƒÑ€Ð½Ð¸ Ñкоби: не може да Ñе задели памет за „%s“" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%s“: грешно име на Ñиноним" @@ -147,11 +153,16 @@ msgstr "" msgid "HOME not set" msgstr "Променливата „HOME“ не е зададена" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "прекалено много аргументи" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "нÑма друга директориÑ" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Променливата „OLDPWD“ не е зададена" @@ -170,7 +181,7 @@ msgstr "предупреждение: " msgid "%s: usage: " msgstr "%s: употреба: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: опциÑта изиÑква аргумент" @@ -185,7 +196,7 @@ msgstr "%s: изиÑква Ñе чиÑлов аргумент" msgid "%s: not found" msgstr "%s: не е открит" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: грешна опциÑ" @@ -195,7 +206,7 @@ msgstr "%s: грешна опциÑ" msgid "%s: invalid option name" msgstr "%s: грешно име на опциÑ" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%s“: грешен идентификатор" @@ -304,7 +315,7 @@ msgid "%s: invalid action name" msgstr "%s: грешно име на дейÑтвие" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: не е указано допиÑване" @@ -317,7 +328,7 @@ msgstr "предупреждение: опциÑта „-F“ може да не msgid "warning: -C option may not work as you expect" msgstr "предупреждение: опциÑта „-C“ може да не работи Ñпоред очакваниÑта ви" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "в момента не Ñе изпълнÑва Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð·Ð° допиÑване" @@ -325,41 +336,47 @@ msgstr "в момента не Ñе изпълнÑва Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð·Ð° до msgid "can only be used in a function" msgstr "може да Ñе използва Ñамо във функциÑ" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: променливата-указател не може да е маÑив" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: променливата-указател не може да Ñочи към Ñебе Ñи" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: цикъл в променливите-указатели" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: неправилно име за променлива-указател" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "„-f“ не може да Ñе използва за Ñъздаването на функции" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ñ Ð¿Ñ€Ð°Ð²Ð° Ñамо за четене" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: ÑÑŠÑтавното приÑвоÑване на маÑив чрез цитат е оÑтарÑло" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: променливите за маÑиви не могат да Ñе унищожават така" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: речник не може да Ñе преобразува в маÑив" @@ -393,7 +410,7 @@ msgstr "%s: не е зареден динамично" msgid "%s: cannot delete: %s" msgstr "%s: не може да Ñе изтрие: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: е директориÑ" @@ -408,7 +425,7 @@ msgstr "%s: не е обикновен файл" msgid "%s: file is too large" msgstr "%s: файлът е прекалено голÑм" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: двоичниÑÑ‚ файл не може да бъде изпълнен" @@ -450,7 +467,7 @@ msgstr "указване на иÑториÑта" msgid "%s: cannot open temp file: %s" msgstr "%s: не може да Ñе отвори временен файл: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "текуща" @@ -809,22 +826,22 @@ msgid "can only `return' from a function or sourced script" msgstr "" "„return“ е възможен Ñамо от Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð¸Ð»Ð¸ изпълнен в текущата обвивка Ñкрипт" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" "не може едновременно да Ñе премахват задаваниÑта на Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð¸ променлива" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: не може да Ñе премахне" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: не може да Ñе премахне: %s е Ñамо за четене" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: не е променлива за маÑив" @@ -843,12 +860,12 @@ msgstr "%s: не може да Ñе изнеÑе" msgid "shift count" msgstr "брой на премеÑтваниÑта" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" "не може едновременно да Ñе задават и да Ñе премахват опции на обвивката" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: грешно име на Ð¾Ð¿Ñ†Ð¸Ñ Ð½Ð° обвивката" @@ -996,62 +1013,67 @@ msgstr "" msgid "cannot redirect standard input from /dev/null: %s" msgstr "ÑтандартниÑÑ‚ вход не може да бъде пренаÑочен от „/dev/null“: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "в променливата $TIMEFORMAT: „%c“: грешен форматиращ знак" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "грешка в програмен канал" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: превишено е макÑималното ниво на влагане на „eval“ (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: превишено е макÑималното ниво на влагане на код (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: превишено е макÑималното ниво на влагане на функции (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" "%s: ограничение: в имената на командите не може да приÑÑŠÑтва знакът „/“" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: командата не е открита" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: лош интерпретатор" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: двоичниÑÑ‚ файл не може да бъде изпълнен: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "„%s“ е вградена команда в обвивката" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "файловиÑÑ‚ деÑкриптор %d не може да Ñе дублира като деÑкриптор %d" @@ -1126,7 +1148,7 @@ msgstr "%s: грешка в израза\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: нÑма доÑтъп до родителÑките директории" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "не може да Ñе изчиÑти режимът без забавÑне на Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð´ÐµÑкриптор %d" @@ -1144,155 +1166,155 @@ msgstr "" "запазване на входа на bash: вече ÑъщеÑтвува буфер за Ð½Ð¾Ð²Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² деÑкриптор " "%d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" "Ñтартиране на програмен канал: не може да Ñе комуникира Ñ Ð²Ð¾Ð´Ð°Ñ‡Ð° на канала\n" "(pgrp pipe)" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "ÑтартираниÑÑ‚ Ð¿Ñ€Ð¾Ñ†ÐµÑ %d е в изпълнÑваната задача %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "изтриване на ÑпрÑната задача %d в групата процеÑи %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "добавÑне на процеÑ: процеÑÑŠÑ‚ %5ld (%s) е в Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¸Ñ ÐºÐ°Ð½Ð°Ð»" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "добавÑне на процеÑ: процеÑÑŠÑ‚ %5ld (%s) е отбелÑзан като още жив" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "" "опиÑателен идентификатор на процеÑ: %ld: нÑма такъв идентификатор на процеÑ" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Сигнал %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Завършен" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "СпрÑн" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "СпрÑн (%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "ИзпълнÑван" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Завършен (%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Изход %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ðепознато ÑÑŠÑтоÑние" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(паметта е разтоварена)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "дъщерниÑÑ‚ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñмени групата при изпълнение (от %ld на %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "изчакване: процеÑÑŠÑ‚ Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€ %ld не е дъщерен на тази обвивка" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "изчакване: липÑват данни за Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€ %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "изчакване на задача: задачата %d е ÑпрÑна" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: задачата е приключила" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: задача %d вече е във фонов режим" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" "изчакване на дъщерен процеÑ: включване на незабавното излизане от функциÑта\n" "чрез WNOHANG, за да Ñе избегне недефиниран блок" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: ред %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (паметта е разтоварена)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(работната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ðµ: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "Ð¸Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° контрола на задачите: неуÑпешно изпълнение на getpgrp" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "Ð¸Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° контрола на задачите: диÑциплина на линиÑта" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "" "Ð¸Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° контрола на задачите: задаване на група при изпълнение " "(setpgid)" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "групата на процеÑите на терминала не може да бъде зададена (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "в тази обвивка нÑма управление на задачите" @@ -1456,104 +1478,111 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "пренаÑочване: инÑтрукциÑта за пренаÑочване „%d“ е извън допуÑÑ‚Ð¸Ð¼Ð¸Ñ Ð´Ð¸Ð°Ð¿Ð°Ð·Ð¾Ð½" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "превишен е маÑкималниÑÑ‚ брой възможни вътрешни документи" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "" "неочакван знак за край на файл „EOF“, а Ñе очакваше ÑъответÑтващ знак „%c“" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "неочакван знак за край на файл „EOF“, а Ñе очакваше „]]“" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "Ñинтактична грешка в уÑловен израз: неочаквана лекÑема „%s“" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "Ñинтактична грешка в уÑловен израз" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "неочаквана лекÑема „%s“, а Ñе очакваше знакът „)“" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "очакваше Ñе „)“" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "неочакван аргумент „%s“ за унарен уÑловен оператор" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "неочакван аргумент за унарен уÑловен оператор" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "неочаквана лекÑема „%s“, очакваше Ñе бинарен уÑловен оператор" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "очакваше Ñе бинарен уÑловен оператор" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "неочакван аргумент „%s“ за бинарен уÑловен оператор" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "неочакван аргумент за бинарен уÑловен оператор" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "неочаквана лекÑема „%c“ в уÑловна команда" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "неочаквана лекÑема „%s“ в уÑловна команда" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "неочаквана лекÑема %d в уÑловна команда" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "Ñинтактична грешка в близоÑÑ‚ до неочакваната лекÑема „%s“" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "Ñинтактична грешка в близоÑÑ‚ до „%s“" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "Ñинтактична грешка: неочакван край на файл" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "Ñинтактична грешка" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Използвайте „%s“, за да излезете от обвивката.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "неочакван знак за край на файл „EOF“, очакваше Ñе знакът „)“" @@ -1562,6 +1591,11 @@ msgstr "неочакван знак за край на файл „EOF“, оч msgid "completion: function `%s' not found" msgstr "допиÑване: функциÑта „%s“ не е открита" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1630,48 +1664,52 @@ msgstr "" msgid "redirection error: cannot duplicate fd" msgstr "грешка при пренаÑочване: файловиÑÑ‚ деÑкриптор не може да бъде дублиран" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "не е открита директориÑта „/tmp“. Създайте Ñ!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "„/tmp“ трÑбва да е директориÑ" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: неправилна опциÑ" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" "идентификаторът на потребител на процеÑа не може да Ñе зададе да е %d,\n" "ефективниÑÑ‚ идентификатор на потребител на процеÑа е %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" "идентификаторът на група на процеÑа не може да Ñе зададе да е %d,\n" "ефективниÑÑ‚ идентификатор на група на процеÑа е %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: е директориÑ" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ðе може да Ñе получи името на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, верÑÐ¸Ñ %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1680,53 +1718,53 @@ msgstr "" "Употреба: %s [дълга Ð¾Ð¿Ñ†Ð¸Ñ Ð½Ð° GNU] [опциÑ]…\n" " %s [дълга Ð¾Ð¿Ñ†Ð¸Ñ Ð½Ð° GNU] [опциÑ] файл-Ñкрипт…\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Дълги опции на GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Опции на обвивката:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" " -ilrsD или -c команда, или -O къÑа_Ð¾Ð¿Ñ†Ð¸Ñ (Ñамо при Ñтартиране)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr " -%s или -o опциÑ\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° опциите на обвивката въведете „%s -c \"help set\"“.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° вградените в обвивката команди въведете „%s -c " "help“.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "За да докладвате грешки, използвайте командата „bashbug“.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Интернет Ñтраница на bash: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "Помощ за Ñофтуера GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "маÑка за обработката на Ñигнали: %d: грешна операциÑ" @@ -1900,84 +1938,94 @@ msgstr "Ðепознат Ñигнал #" msgid "Unknown Signal #%d" msgstr "Ðепознат Ñигнал #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "лошо замеÑтване: липÑва затварÑщ знак „%s“ в %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: на член от маÑив не може да Ñе приÑвои ÑпиÑък" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "не може да Ñе Ñъздаде програмен канал за замеÑтване на процеÑи" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "не може да Ñе Ñъздаде дъщерен Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð° замеÑтване на процеÑи" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "именуваниÑÑ‚ програмен канал %s не може да Ñе отвори за четене" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "именуваниÑÑ‚ програмен канал %s не може да Ñе отвори за запиÑ" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "именуваниÑÑ‚ програмен канал %s не може да Ñе\n" "дублира като Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ð´ÐµÑкриптор %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "лошо замеÑтване: липÑва затварÑщ знак „`“ в %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "не може да Ñе Ñъздаде програмен канал за замеÑтване на команди" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "не може да Ñе Ñъздаде дъщерен Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð° замеÑтване на команди" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "замеÑтване на команди: каналът не може да Ñе дублира като fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: неправилно име за променлива-указател" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: лошо замеÑтване" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: грешно непрÑко замеÑтване" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "„%s“: грешно име на променлива" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: аргументът е „null“ или не е зададен" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: изразът от подниза е < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: не може да Ñе задава по този начин" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1985,12 +2033,12 @@ msgstr "" "бъдещите верÑии на обвивката ще използват изчиÑлÑване като аритметично\n" "замеÑтване" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "лошо замеÑтване: липÑва затварÑщ знак „`“ в %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "нÑма Ñъвпадение: %s" @@ -2023,7 +2071,7 @@ msgstr "%s: очаква Ñе унарен оператор" msgid "%s: binary operator expected" msgstr "%s: очаква Ñе бинарен оператор" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "липÑва „]“" @@ -2051,84 +2099,84 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "обработка на прихващаниÑ: неправилен Ñигнал %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "грешка при внаÑÑнето на дефинициÑта на Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð·Ð° „%s“" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "нивото на обвивката (%d) е прекалено голÑмо. Задава Ñе да е 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: цикъл в променливите-указатели" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" "Ñъздаване на локална променлива: липÑва контекÑÑ‚ на Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð² текущата " "облаÑÑ‚\n" "на видимоÑÑ‚" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: на тази променлива не може да Ñе приÑвои ÑтойноÑÑ‚" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: неправилно име за променлива-указател" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" "вÑички локални променливи: липÑва контекÑÑ‚ на Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð² текущата облаÑÑ‚ на\n" "видимоÑÑ‚" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s: аргументът за низа за изнаÑÑне не трÑбва да е „null“" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "неправилен знак на Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ñ %d в низа за изнаÑÑне за %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "липÑва „=“ в низа за изнаÑÑне за %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "изваждане на контекÑÑ‚ на променливи: в началото на Ñтруктурата за променливи " "на\n" "обвивката (shell_variables) е нещо, което не е контекÑÑ‚ на функциÑ" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" "изваждане на контекÑÑ‚ на променливи: липÑва контекÑÑ‚ за глобални променливи\n" "(global_variables)" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "изваждане на облаÑÑ‚: в началото на Ñтруктурата за променливи на обвивката\n" "(shell_variables) е нещо, което не е временна облаÑÑ‚ в обкръжението" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s не може да Ñе отвори като ФÐЙЛ" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: грешен файлов деÑкриптор за файла за траÑиране" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: е извън допуÑÑ‚Ð¸Ð¼Ð¸Ñ Ð´Ð¸Ð°Ð¿Ð°Ð·Ð¾Ð½" @@ -3050,10 +3098,11 @@ msgstr "" " на ÑтойноÑÑ‚ на променлива." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Задаване на ÑтойноÑÑ‚ и атрибути на променливи.\n" " \n" @@ -3630,7 +3679,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5206,6 +5255,7 @@ msgstr "" " ИзходниÑÑ‚ код е този на поÑледно изпълнената команда." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5215,7 +5265,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Създаване на ÐºÐ¾Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ Ð´Ð°Ð´ÐµÐ½Ð¾Ñ‚Ð¾ ИМЕ.\n" " \n" diff --git a/po/ca.gmo b/po/ca.gmo index dace2de0ab34ff05034021e572fc138cb046a3b0..7dbf7bfdcd07598ee704a35a7cbe494cd09162b4 100644 GIT binary patch delta 11204 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 diff --git a/po/ca.po b/po/ca.po index 866c865e..444d4e16 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-18 13:33+0200\n" "Last-Translator: Ernest Adrogué Calveras \n" "Language-Team: Catalan \n" @@ -22,47 +22,53 @@ msgstr "" msgid "bad array subscript" msgstr "subíndex erroni" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: no es pot convertir el vector indexat en associatiu" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: clau incorrecta de vector associatiu" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: no és possible assignar a un índex no-numèric" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: l'assignació en vectors associatius requereix un subíndex" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: no es pot crear: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: no s'ha trobat el mapa de tecles per a l'ordre" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: el primer caràcter no-blanc no és `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "falta un caràcter `%c' a %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: falten dos punts `:' de separació" @@ -82,7 +88,7 @@ msgstr "expansió de claus: ha fallat l'assignació de memòria per a %d element msgid "brace expansion: failed to allocate memory for `%s'" msgstr "expansió de claus: ha fallat l'assignació de memòria per a `%s'" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': el nom de l'àlies no és valid" @@ -141,11 +147,16 @@ msgstr "" msgid "HOME not set" msgstr "la variable HOME no està definida" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "sobren arguments" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "no hi ha més directoris" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "la variable OLDPWD no està definida" @@ -164,7 +175,7 @@ msgstr "atenció: " msgid "%s: usage: " msgstr "%s: sintaxi: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: l'opció requereix un argument" @@ -179,7 +190,7 @@ msgstr "%s: fa falta un argument numèric" msgid "%s: not found" msgstr "%s: no s'ha trobat" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: l'opció no és vàlida" @@ -189,7 +200,7 @@ msgstr "%s: l'opció no és vàlida" msgid "%s: invalid option name" msgstr "%s: el nom de l'opció no és vàlid" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': no és un identificador vàlid" @@ -299,7 +310,7 @@ msgid "%s: invalid action name" msgstr "%s: el nom de l'acció no és vàlid" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: no hi ha especificació de compleció" @@ -312,7 +323,7 @@ msgstr "atenció: l'opció -F pot no funcionar com us espereu" msgid "warning: -C option may not work as you expect" msgstr "atenció: l'opció -C pot no funcionar com us espereu" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "no s'està executant una funció de compleció" @@ -320,42 +331,48 @@ msgstr "no s'està executant una funció de compleció" msgid "can only be used in a function" msgstr "només es pot utilitzar en una funció" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: la variable referenciada no pot ser un vector" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: no és permès que una variable s'autoreferenciï" -# buscar context -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: la referència de nom és circular" + +# buscar context +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: el nom de la variable referenciada no és vàlid" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "no és possible usar `-f' per a fer funcions" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funció de només-lectura" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: les assignacions compostes amb cometes estan desfasades" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: no és possible destruir variables vector d'aquesta manera" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: no es pot convertir el vector associatiu en indexat" @@ -389,7 +406,7 @@ msgstr "%s: no s'ha carregat dinàmicament" msgid "%s: cannot delete: %s" msgstr "%s: no es pot eliminar: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: és un directori" @@ -404,7 +421,7 @@ msgstr "%s: no és un fitxer ordinari" msgid "%s: file is too large" msgstr "%s: el fitxer és massa gran" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: no es poden executar fitxers binaris" @@ -447,7 +464,7 @@ msgid "%s: cannot open temp file: %s" msgstr "%s: no es pot obrir el fitxer temporal: %s" # fg quan no hi ha cap tasca en segon pla -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "actual" @@ -810,22 +827,22 @@ msgid "can only `return' from a function or sourced script" msgstr "només es pot fer `return' des d'una funció o script" # unset -f -v foo -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "no és possible suprimir una funció i una variable alhora" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: no es pot suprimir" # unset UID -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: no es pot suprimir: %s de només-lectura" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: no és una variable vector" @@ -845,13 +862,13 @@ msgstr "%s: no es pot suprimir" msgid "shift count" msgstr "nombre de shifts" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" "no es poden activar i desactivar opcions de l'intèrpret al mateix temps" # shopt -s foo -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: l'opció de l'intèrpret no és vàlida" @@ -1006,62 +1023,67 @@ msgid "cannot redirect standard input from /dev/null: %s" msgstr "no s'ha pogut redirigir l'entrada estàndard des de /dev/null: %s" # error intern -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': el caràcter de format no és vàlid" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "error de canalització" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: s'ha excedit el nivell màxim d'imbricació de funcions (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: s'ha excedit el nivell màxim d'imbricació de funcions (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: s'ha excedit el nivell màxim d'imbricació de funcions (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restricció: no podeu especificar `/' en noms d'ordres" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: no s'ha trobat l'ordre" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: intèrpret erroni" # error intern -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: no es pot executar el fitxer binari: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s': és una ordre interna especial" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "no s'ha pogut duplicar l'fd %d com a fd %d" @@ -1138,7 +1160,7 @@ msgstr "%s: expressió errònia\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: els directoris superiors són inaccessibles" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "no s'ha pogut restablir el mode nodelay per a l'fd %d" @@ -1153,149 +1175,149 @@ msgstr "error en crear un fd nou a partir de l'fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: ja existia un buffer per al nou fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp de la canalització" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "el pid bifurcat %d apareix a la tasca en execució %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "s'elimina la tasca aturada %d amb grup de procés %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: procés %5ld (%s) a the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: el pid %5ld (%s) està marcat com a encara actiu" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no existeix tal pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Senyal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Fet" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Aturat" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Aturat(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Executant-se" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Fet(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Sortida %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Estat desconegut" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(s'ha bolcat la memòria)" # wd = working directory -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (dt: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid (de %ld a %ld) per al procés inferior" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: el pid %ld no és un fill d'aquest intèrpret" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No es té constància del procés %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: la tasca %d està aturada" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: la tasca ha acabat" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: la tasca %d ja es troba en segon pla" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: s'activa el WNOHANG per a evitar un bloqueig indefinit" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s línia %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (s'ha bolcat la memòria)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(dt ara: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp ha fallat" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: disciplina de línia" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "no s'ha pogut establir el grup de procés del terminal (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "aquesta sessió no té control de tasques" @@ -1447,104 +1469,111 @@ msgstr "document literal a la línia %d delimitat per EOF (volia `%s')" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: instrucció de redirecció `%d' fora del domini" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "s'ha excedit el nombre màxim de documents literals" # "echo $(echo" en un script -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF inesperat mentre es cercava un `%c'" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "EOF inesperat mentre es cercava `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "error de sintaxi a l'expressió condicional: element `%s' inesperat" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "error de sintaxi a l'expressió condicional" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "element `%s' inesperat, s'esperava `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "s'esperava `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argument `%s' inesperat a l'operador unari condicional" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argument inesperat a l'operador unari condicional" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "element `%s' inesperat, s'esperava un operador binari condicional" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "s'esperava un operador binari condicional" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argument inesperat `%s' a un operador binari condicional" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argument inesperat a un operador binari condicional" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "element `%c' inesperat en una ordre condicional" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "element `%s' inesperat en una ordre condicional" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "element `%d' inesperat en una ordre condicional" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "error de sintaxi a prop de l'element inesperat `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "error de sintaxi a prop de `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "error de sintaxi: final de fitxer inesperat" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "error de sintaxi" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Useu \"%s\" per a deixar l'intèrpret.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "EOF inesperat mentre es buscava un `)'" @@ -1553,6 +1582,11 @@ msgstr "EOF inesperat mentre es buscava un `)'" msgid "completion: function `%s' not found" msgstr "completion: la funció `%s' no s'ha trobat" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1620,45 +1654,49 @@ msgstr "/dev/(tcp|udp)/host/port no està suportat si no hi ha xarxa" msgid "redirection error: cannot duplicate fd" msgstr "error de redirecció: no es pot duplicar l'fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "no s'ha trobat el directori /tmp, sisplau creeu-lo!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp ha de ser un nom de directori vàlid" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: l'opció no és vàlida" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "no s'ha pogut restablir el mode nodelay per a l'fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "no s'ha pogut restablir el mode nodelay per a l'fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: és un directori" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "No teniu nom!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versió %s-(%s)\n" # -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1667,50 +1705,50 @@ msgstr "" "Sintaxi:\t%s [opció GNU llarga] [opció] ...\n" "\t\t%s [opció GNU llarga] [opció] fitxer-script ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Opcions GNU llargues:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opcions de l'intèrpret:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD, o -c ordre, o bé -O opció_intèrpret\t(només invocació)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s, o bé -o opció\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Feu `%s -c \"help set\"' per a informació sobre les opcions de l'intèrpret.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Feu `%s -c help' per a obtenir informació sobre les ordres internes.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Feu servir l'ordre `bashbug' per a comunicar `bugs'.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "pàgina web de bash: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "Ajuda general per a programari GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: l'operació no és vàlida" @@ -1886,94 +1924,105 @@ msgid "Unknown Signal #%d" msgstr "Senyal Desconegut #%d" # missatge similar a subst.c:75XX -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substitució errònia: falta un `%s' a %s" # foo[1]=(1 2 3) -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: no és possible assignar llistes a l'element d'un vector" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "no s'ha pogut crear la canalització per a la substitució de procés" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "no s'ha pogut crear el fill per a la substitució de procés" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "no s'ha pogut obrir la canalització %s amb permís de lectura" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "no s'ha pogut obrir la canalització %s per a escriure-hi" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "no s'ha pogut duplicar la canalització %s com a fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "subtitució errònia: no hi ha \"`\" final a %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "no s'ha pogut crear la canalització per a la substitució d'ordre" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "no s'ha pogut crear un fill per a la substitució d'ordre" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: no s'ha pogut duplicar la canalització com a fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +# buscar context +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: el nom de la variable referenciada no és vàlid" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: substitució errònia" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: el nombre de línies no és vàlid" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': el nom de l'àlies no és valid" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: paràmetre nul o no definit" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expressió de subcadena < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: no és possible assignar d'aquesta manera" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "en futures versions s'evaluarà com a substitució aritmètica" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "subtitució errònia: no hi ha \"`\" final a %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "cap coincidència: %s" @@ -2006,7 +2055,7 @@ msgstr "%s: s'esperava un operador unari" msgid "%s: binary operator expected" msgstr "%s: s'esperava un operador binari" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "falta un `]'" @@ -2032,79 +2081,80 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: senyal erroni %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "error en importar la definició de funció de `%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "el nivell de l'intèrpret (%d) és massa elevat, es restableix a 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: la referència de nom és circular" - # error intern -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: no és possible assignar un valor a la variable" +# buscar context +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: el nom de la variable referenciada no és vàlid" + # error intern -#: variables.c:3753 +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s: el paràmetre exportstr és nul" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "el caràcter %d en el paràmetre exportstr de %s no és vàlid" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "falta un `=' en el paràmetre exportstr de %s" # error intern -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" # error intern -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" # error intern -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" # error intern -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: no s'ha pogut obrir com a FITXER" # error intern -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: el valor de compatibilitat és fora del domini" @@ -2993,10 +3043,11 @@ msgstr "" " Torna èxit, excepte si rep una opció invàlida o es produeix un error." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Assigna valors i atributs a variables.\n" "\n" @@ -3544,7 +3595,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5045,6 +5096,7 @@ msgstr "" # help coproc #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5054,7 +5106,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Crea un coprocés anomenat NOM.\n" "\n" diff --git a/po/cs.gmo b/po/cs.gmo index 375e1b15ae2dd4198bc163b5ad10ac346c237b2e..51a5d0e95ad816017710a96c6c46c2e36f1894d8 100644 GIT binary patch delta 12270 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 delta 13004 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 I_%{#uFDTm8iU0rr diff --git a/po/cs.po b/po/cs.po index c787d39b..b8c22202 100644 --- a/po/cs.po +++ b/po/cs.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-17 12:43+0200\n" "Last-Translator: Petr Pisar \n" "Language-Team: Czech \n" @@ -28,46 +28,52 @@ msgstr "" msgid "bad array subscript" msgstr "chybný podskript pole" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: Äíslované pole nezle pÅ™evést na pole asociativní" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: neplatný klÃ­Ä asociativního pole" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: pÅ™es neÄíselný indexu nelze dosadit" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, 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 podskript" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nelze vytvoÅ™it: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: pro příkaz nelze nalézt klávesovou mapu " -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: první nebílý znak není „\"“" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "ne zavírající „%c“ v %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: chybí dvojteÄkový oddÄ›lovaÄ" @@ -88,7 +94,7 @@ msgstr "závorková expanze: alokace pamÄ›ti pro %d prvků selhala" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "závorková expanze: alokace pamÄ›ti pro „%s“ selhala" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%s“: chybný název aliasu" @@ -149,11 +155,16 @@ msgstr "" msgid "HOME not set" msgstr "není nestavena HOME" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "příliÅ¡ mnoho argumentů" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "vrcholového adresáře." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "není nastaveno OLDPWD" @@ -172,7 +183,7 @@ msgstr "varování: " msgid "%s: usage: " msgstr "%s: užití: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: pÅ™epínaÄ vyžaduje argument" @@ -187,7 +198,7 @@ msgstr "%s: vyžadován Äíselný argument" msgid "%s: not found" msgstr "%s: nenalezeno" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: chybný pÅ™epínaÄ" @@ -197,7 +208,7 @@ msgstr "%s: chybný pÅ™epínaÄ" msgid "%s: invalid option name" msgstr "%s: chybný název pÅ™epínaÄe" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%s“: není platným identifikátorem" @@ -306,7 +317,7 @@ msgid "%s: invalid action name" msgstr "%s: neplatný název akce" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: žádné doplňování neurÄeno" @@ -319,7 +330,7 @@ msgstr "varování: pÅ™epínaÄ -F možná nebude dÄ›lat, co jste Äekali" msgid "warning: -C option may not work as you expect" msgstr "varování: pÅ™epínaÄ -C možná nebude dÄ›lat, co jste Äekali" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "doplňovací funkce se právÄ› nevykonává" @@ -327,41 +338,47 @@ msgstr "doplňovací funkce se právÄ› nevykonává" msgid "can only be used in a function" msgstr "může být použito jen ve funkci" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: promÄ›nná s odkazem nemůže být polem" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: promÄ›nná s odkazem na název nemůže odkazovat sama na sebe" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: kruhový odkaz na název" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: neplatný název promÄ›nné pro odkaz na název" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "„-f“ nezle použít na výrobu funkce" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkce jen pro Ätení" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: pÅ™iÅ™azení do složeného pole uzavÅ™eného v uvozovkách je zastaralé" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: takto nelze likvidovat pole" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: asociativní pole nelze pÅ™evést na Äíslované pole" @@ -395,7 +412,7 @@ msgstr "%s: není dynamicky nahráno" msgid "%s: cannot delete: %s" msgstr "%s: nelze smazat: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: je adresářem" @@ -410,7 +427,7 @@ msgstr "%s: není obyÄejný soubor" msgid "%s: file is too large" msgstr "%s: soubor je příliÅ¡ velký" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: binární soubor nelze spustit" @@ -454,7 +471,7 @@ msgstr "urÄení historie" msgid "%s: cannot open temp file: %s" msgstr "%s: doÄasný soubor nelze otevřít: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "souÄasný" @@ -801,21 +818,21 @@ msgstr "chyba Ätení: %d: %s" 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“" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "funkci i promÄ›nnou nelze ruÅ¡it souÄasnÄ›" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: nelze zruÅ¡it" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nelze zruÅ¡it: %s jen pro Ätení" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: není (promÄ›nnou typu) pole" @@ -834,11 +851,11 @@ msgstr "%s: nelze exportovat" msgid "shift count" msgstr "poÄet shiftů" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "pÅ™epínaÄ shellu nelze zároveň nastavit a zruÅ¡it" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: chybný název pÅ™epínaÄe shellu" @@ -984,61 +1001,66 @@ msgstr "\aÄasový limit pro Äekání na vstup vyprÅ¡el: automatické odhláše msgid "cannot redirect standard input from /dev/null: %s" msgstr "standardní vstup nelze pÅ™esmÄ›rovat z /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: chybný formátovací znak" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "chyba v rouÅ™e" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: maximální úroveň zanoÅ™ení funkce eval byla pÅ™ekroÄena (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximální úroveň zanoÅ™ení funkce source byla pÅ™ekroÄena (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximální úroveň zanoÅ™ení funkcí byla pÅ™ekroÄena (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: omezeno: v názvu příkazu nesmí být „/“" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: příkaz nenalezen" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: chybný interpretr" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: binární soubor nelze spustit: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "„%s“: je zvláštní vestavÄ›ný příkaz shellu" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d" @@ -1113,7 +1135,7 @@ msgstr "%s: chyba výrazu\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: rodiÄovské adresáře nejsou přístupné" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "na deskriptoru %d nelze resetovat režim nodelay" @@ -1128,150 +1150,150 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp roury" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forknutý PID %d se objevil v běžící úloze %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "mažu pozastavenou úlohu %d se skupinou procesů %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) do the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, 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:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: žádný takový PID" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signál %d" # XXX: (úloha) dokonÄna. Používat ženský rod i unásledujících. Jedná se # o výpis úloh. -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "DokonÄena" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Pozastavena" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Pozastavena (%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Běží" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "DokonÄena (%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "UkonÄena %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Stav neznámý" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped [obraz pamÄ›ti uložen]) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (cwd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid na potomku (z %ld na %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: PID %ld není potomkem tohoto shellu" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Žádný záznam o procesu %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: úloha %d je pozastavena" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: úloha skonÄila" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: úloha %d je již na pozadí" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: zapíná se WNOHANG, aby se zabránilo neurÄitému zablokování" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: řádek %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped [obraz pamÄ›ti uložen])" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(cwd nyní: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp selhalo" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: disciplína linky" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "nelze nastavit skupinu procesů terminálu (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "žádná správa úloh v tomto shellu" @@ -1424,106 +1446,113 @@ msgstr "„here“ dokument na řádku %d ukonÄen koncem souboru (požadováno msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: instrukce pÅ™esmÄ›rování „%d“ mimo rozsah" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "maximální poÄet here dokumentů pÅ™ekroÄen" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "neoÄekávaný konec souboru pÅ™i hledání znaku odpovídajícímu „%c“" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "neoÄekávaný konec souboru pÅ™i hledání „]]“" # XXX: Condional means condition (adj.) probably. Can English distinguish # between the condition (podmínkový) and the code branch (podmínÄ›ný)? Check # for all "conditional" string occurences. -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "chyba syntaxe ve výrazu podmínky: neoÄekávaný token „%s“" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "chyba syntaxe ve výrazu podmínky" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "neoÄekávaný token „%s“, oÄekávána „)“" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "oÄekávána „)“" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "neoÄekávaný argument „%s“ u podmínkového unárního operátoru" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "neoÄekávaný argument u podmínkového unárního operátoru" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "neoÄekávaný token „%s“, oÄekáván podmínkový binární operátor" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "oÄekáván podmínkový binární operátor" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "neoÄekávaný argument „%s„ u podmínkového binárního operátoru" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "neoÄekávaný argument u podmínkového binárního operátoru" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "neoÄekávaný token „%c“ v podmínkovém příkazu" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "neoÄekávaný token „%s“ v podmínkovém příkazu" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "neoÄekávaný token %d v podmínkovém příkazu" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "chyba syntaxe poblíž neoÄekávaného tokenu „%s“" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "chyba syntaxe poblíž „%s“" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "chyba syntaxe: nenadálý konec souboru" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "chyba syntaxe" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Shell lze ukonÄit příkazem „%s“.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "nenadálý konec souboru pÅ™i hledání odpovídající „)“" @@ -1532,6 +1561,11 @@ msgstr "nenadálý konec souboru pÅ™i hledání odpovídající „)“" msgid "completion: function `%s' not found" msgstr "doplňování: funkce „%s“ nenalezena" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1599,44 +1633,48 @@ msgstr "/dev/(tcp|udp)/host/port není bez síťování podporováno" msgid "redirection error: cannot duplicate fd" msgstr "chyba pÅ™esmÄ›rování: deskriptor souboru nelze duplikovat" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "nelze nalézt /tmp, vytvoÅ™te jej, prosím!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp musí být platným názvem pro adresář" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: chybný pÅ™epínaÄ" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "UID nelze nastavit na %d: efektivní UID je %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "GID nelze nastavit na %d: efektivní GID je %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: Je adresářem" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nemám žádné jméno!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, verze %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1645,53 +1683,53 @@ msgstr "" "Použití:\t%s [Dlouhý GNU pÅ™epínaÄ] [pÅ™epínaÄ]…\n" "\t%s [Dlouhý GNU pÅ™epínaÄ] [pÅ™epínaÄ] skriptový_soubor…\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Dlouhé GNU pÅ™epínaÄe:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "PÅ™epínaÄe shellu:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD nebo -c příkaz nebo -O shopt_pÅ™epínaÄ\t(pouze pÅ™i vyvolání)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s nebo -o pÅ™epínaÄ\n" -#: shell.c:1934 +#: shell.c:1959 #, 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" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Podrobnosti o příkazech vestavÄ›ných do shellu získáte tím, že\n" "napiÅ¡te „%s -c help“.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Chyby nahlásíte příkazem „bashbug“.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Domovská stránka bashe: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "Obecný návod na použití softwaru GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: neplatná operace" @@ -1869,82 +1907,92 @@ msgstr "Neznámé Äíslo signálu" msgid "Unknown Signal #%d" msgstr "Neznámý signál Ä. %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "chybná substituce: v %2$s chybí uzavírací „%1$s“" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: seznam nelze pÅ™iÅ™adit do prvku pole" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "nelze vyrobit rouru za úÄelem substituce procesu" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "nelze vytvoÅ™it potomka za úÄelem substituce procesu" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "pojmenovanou rouru %s nelze otevřít pro Ätení" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "pojmenovanou rouru %s nelze otevřít pro zápis" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "pojmenovanou rouru %s nelze zdvojit jako deskriptor %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "chybná substituce: v %s chybí uzavírací „`“" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "nelze vytvoÅ™it rouru pro substituci příkazu" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "nelze vytvoÅ™it potomka pro substituci příkazu" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: rouru nelze zdvojit jako deskriptor 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: neplatný název promÄ›nné pro odkaz na název" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: chybná substituce" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: chybná nepřímá expanze" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: chybný název promÄ›nné" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametr null nebo nenastaven" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: výraz podÅ™etÄ›zce < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: takto nelze pÅ™iÅ™azovat" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1952,12 +2000,12 @@ msgstr "" "budoucá verze tohoto shellu budou vynucovat vyhodnocení jako aritmetickou " "substituci" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "chybná substituce: v %s chybí uzavírací „`“" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "žádná shoda: %s" @@ -1990,7 +2038,7 @@ msgstr "%s: oÄekáván unární operátor" msgid "%s: binary operator expected" msgstr "%s: oÄekáván binární operátor" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "postrádám „]“" @@ -2014,72 +2062,72 @@ msgstr "run_pending_traps: obsluha signálu je SIG_DFL, pÅ™eposílám %d (%s) so msgid "trap_handler: bad signal %d" msgstr "trap_handler: chybný signál %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "chyba pÅ™i importu definice „%s“" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "úroveň shellu (%d) příliÅ¡ vysoká, resetuji na 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: kruhový odkaz na název" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: žádný kontext funkce v aktuálním rozsahu" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: hodnotu nelze do promÄ›nné pÅ™iÅ™adit" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: neplatný název promÄ›nné pro odkaz na název" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: žádný kontext funkce v aktuálním rozsahu" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s: má nullový exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "neplatný znak %d v exportstr pro %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "v exportstr pro %s chybí „=“" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: hlava shell_variables není kontextem funkce" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: chybí kontext global_variables" -#: variables.c:4582 +#: variables.c:4772 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í" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: nelze otevřít jako SOUBOR" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: neplatná hodnota pro deskriptor trasovacího souboru" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: hodnota kompatibility je mimo rozsah" @@ -2958,10 +3006,11 @@ msgstr "" " pÅ™iÅ™azování do promÄ›nné." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Nastaví hodnoty a atributy promÄ›nných\n" " \n" @@ -3494,7 +3543,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4985,6 +5034,7 @@ msgstr "" " Vrátí kód naposledy provedeného příkazu." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4994,7 +5044,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Vytvoří koproces pojmenovaný NÃZEV.\n" " \n" @@ -5911,9 +5961,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "odstraní adresář z vrcholu zásobníku a pÅ™epne se do nového" -#~ msgid "top directory." -#~ msgstr "vrcholového adresáře." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "+N odstraní N. položku poÄítáno zleva na seznamu," diff --git a/po/da.gmo b/po/da.gmo index 70a8acad0b616351d4ca44da4626cf9d869c9821..98a60b3f68802fe406e2c4d12abf96a81675d652 100644 GIT binary patch delta 10039 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 G4*vsDg8KCU diff --git a/po/da.po b/po/da.po index c2411ced..5da4dae9 100644 --- a/po/da.po +++ b/po/da.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2011-03-18 01:36+0100\n" "Last-Translator: Kenneth Nielsen \n" "Language-Team: Danish \n" @@ -28,48 +28,54 @@ msgstr "" msgid "bad array subscript" msgstr "ugyldigt arrayindeks" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: kan ikke konvertere indekseret til associativt array" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: ugyldig nøgle til associativt array" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: kan ikke tildele til ikkenumerisk indeks" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: et indeks skal bruges ved tildeling til associativt array" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: kan ikke oprette %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: kan ikke finde tastetildeling for kommando" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: første ikke-blank-tegn er ikke '\"'" # Kønnet her er et gæt, hvis det er parenteser eller anførselstegn passer det # FEJLRAPPORT -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "ingen afsluttende \"%c\" i %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: manglende kolonseparator" @@ -89,7 +95,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "\"%s\": ugyldigt tastetildelingsnavn" @@ -150,11 +156,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME ikke indstillet" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "for mange argumenter" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ingen anden mappe" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD ikke indstillet" @@ -173,7 +184,7 @@ msgstr "advarsel: " msgid "%s: usage: " msgstr "%s: brug: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: tilvalg kræver et argument" @@ -188,7 +199,7 @@ msgstr "%s: numerisk argument pÃ¥krævet" msgid "%s: not found" msgstr "%s: ikke fundet" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: ugyldigt tilvalg" @@ -198,7 +209,7 @@ msgstr "%s: ugyldigt tilvalg" msgid "%s: invalid option name" msgstr "%s: ugyldigt tilvalgsnavn" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "\"%s\": ikke et gyldigt identificeringsnavn" @@ -307,7 +318,7 @@ msgid "%s: invalid action name" msgstr "%s: ugyldigt handlingsnavn" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: ingen fuldførselsspecifikation" @@ -320,7 +331,7 @@ msgstr "advarsel: tilvalget -F vil mÃ¥ske ikke virke, som du forventer" msgid "warning: -C option may not work as you expect" msgstr "advarsel: tilvalget -C vil mÃ¥ske ikke virke, som du forventer" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "ikke i gang med at eksekvere fuldførelsesfunktion" @@ -328,41 +339,47 @@ msgstr "ikke i gang med at eksekvere fuldførelsesfunktion" msgid "can only be used in a function" msgstr "kan kun bruges i en funktion" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%d: ugyldig filbeskrivelse: %s" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%d: ugyldig filbeskrivelse: %s" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "kan ikke bruge \"-f\" til at lave funktioner" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: skrivebeskyttet funktion" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: kan ikke destruere arrayvariabel pÃ¥ denne mÃ¥de" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: kan ikke konvertere associativt til indekseret array" @@ -396,7 +413,7 @@ msgstr "%s: ikke dynamisk indlæst" msgid "%s: cannot delete: %s" msgstr "%s: kan ikke slette: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: er en mappe" @@ -411,7 +428,7 @@ msgstr "%s: ikke en regulær fil" msgid "%s: file is too large" msgstr "%s: fil er for stor" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kan ikke eksekvere binær fil" @@ -453,7 +470,7 @@ msgstr "historikspecifikation" msgid "%s: cannot open temp file: %s" msgstr "%s: kan ikke Ã¥bne midl. fil: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "nuværende" @@ -806,21 +823,21 @@ msgstr "læsefejl: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "kan kun udføre \"return\" fra en funktion eller indlæst skript" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "kan ikke fjerne en funktion og en variabel samtidig" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: kan ikke fjerne" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: kan ikke fjerne: skrivebeskyttet %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ikke en arrayvariabel" @@ -839,11 +856,11 @@ msgstr "%s: kan ikke fjerne" msgid "shift count" msgstr "skifttæller" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "kan ikke indstille og fjerne skaltilvalg samtidig" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: ugyldigt navn for skaltilvalg" @@ -989,56 +1006,61 @@ msgstr "\atidsudløb mens der ventedes pÃ¥ input: auto-logud\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "kan ikke videresende standardinput fra /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: \"%c\": ugyldigt formateringstegn" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "datakanalfejl (pipe error)" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: begrænset: kan ikke specificere \"/\" i kommandonavne" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: kommando ikke fundet" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: dÃ¥rlig fortolker" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: kan ikke eksekvere binær fil" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s er indbygget i skallen\n" @@ -1052,7 +1074,7 @@ msgstr "%s er indbygget i skallen\n" # expansion. If the >(list) form is used, writing to the file will pro†# vide input for list. If the <(list) form is used, the file passed as # an argument should be read to obtain the output of list. -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "kan ikke duplikere fd %d til fd %d" @@ -1129,7 +1151,7 @@ msgid "getcwd: cannot access parent directories" msgstr "getcwd: kan ikke tilgÃ¥ overliggende mapper" # Har ladet nodelay stÃ¥, idet jeg gætter pÃ¥ at det er et navn -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "kan ikke nulstille \"nodelay\"-tilstand for fd %d" @@ -1145,149 +1167,149 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffer eksisterer allerede til ny fd %d" # ?? -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp-datakanal (pipe)" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forgrenet pid %d figurerer i kørende job %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "sletter stoppet job %d med procesgruppe %ld" # ?? -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) i the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) markeret som stadig i live" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ingen process med det pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Færdig" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stoppet" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stoppet(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Kører" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Færdig(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Afslut %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ukendt status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(smed kerne) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "underproces setpgid (%ld til %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld er ikke en underproces af denne skal" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ingen optegnelse af proces %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: job %d er stoppet" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: job er afbrudt" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: job %d er allerede i baggrunden" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: linje %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (smed kerne)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd nu: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp fejlede" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: linjedisciplin" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "kan ikke indstille terminal-procesgruppe (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "ingen jobkontrol i denne skal" @@ -1441,108 +1463,115 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_direction: videresendelsesinstruktion \"%d\" uden for interval" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "uventet EOF mens der ledtes efter samhørende \"%c\"" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "uventet EOF mens der ledtes efter \"]]\"" # word A sequence of characters considered as a single unit by the # shell. Also known as a token. # Jeg har valgt udtryk -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntaksfejl i betingelsesudtryk: uventet element \"%s\"" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntaksfejl i betingelsesudtryk" # word A sequence of characters considered as a single unit by the # shell. Also known as a token. -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "uventet element \"%s\", forventede \")\"" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "forventede \")\"" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "uventet argument \"%s\" til unær betingelsesoperator" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "uventet argument til unær betingelsesoperator" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "uventet udtryk \"%s\", ventede binær betingelsesoperator" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "ventedet binær betingelsesoperator" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "uventet argument \"%s\" til binær betingelsesoperator" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "uventet argument til binær betingelsesoperator" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "uventet udtryk \"%c\" i betingelseskommando" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "uventet udtryk \"%s\" i betingelseskommando" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "uventet udtryk \"%d\" i betingelseskommando" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntaksfejl nær uventet udtryk \"%s\"" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntaksfejl nær \"%s\"" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntaksfejl: uventet slutning pÃ¥ fil" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntaksfejl" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Brug \"%s\" for at forlade skallen.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "uventet EOF mens der ledtes efter samhørende \")\"" @@ -1551,6 +1580,11 @@ msgstr "uventet EOF mens der ledtes efter samhørende \")\"" msgid "completion: function `%s' not found" msgstr "completion: funktion \"%s\" ikke fundet" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1617,46 +1651,50 @@ msgstr "/dev/(tcp|udp)/vært/port ikke understøttet uden netværk" msgid "redirection error: cannot duplicate fd" msgstr "videresendelsesfejl: kan ikke duplikere fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "kan ikke finde /tmp, opret venligst mappen!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp skal være et gyldigt mappenavn" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: ugyldigt tilvalg" # Har ladet nodelay stÃ¥, idet jeg gætter pÃ¥ at det er et navn -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "kan ikke nulstille \"nodelay\"-tilstand for fd %d" # Har ladet nodelay stÃ¥, idet jeg gætter pÃ¥ at det er et navn -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "kan ikke nulstille \"nodelay\"-tilstand for fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: er en mappe" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Jeg har ikke noget navn!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1665,53 +1703,53 @@ msgstr "" "Brug:\t%s [langt GNU-tilvalg] [tilvalg] ...\n" "\t%s [langt GNU-tilvalg] [tilvalg] skript-fil ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Lange GNU-tilvalg:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Skal-tilvalg:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD eller -c kommando eller -O shopt_option\t\t(kun programkald)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\tTilvalg -%s eller -o\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Skriv \"%s -c \"help set\"\" for at fÃ¥ mere information om skaltilvalg.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Skriv \"%s -c help\" for at fÃ¥ mere information om indbyggede " "skalkommandoer.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Brug kommandoen \"bashbug\" til at rapportere fejl.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: ugyldig handling" @@ -1887,94 +1925,104 @@ msgstr "Ukendt signal #" msgid "Unknown Signal #%d" msgstr "Ukendt signal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "dÃ¥rlig udskiftning: ingen lukkende \"%s\" i %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: kan ikke tildele liste til arrayelementer" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "kan ikke lave datakanal (pipe) til procesudskiftning" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "kan ikke danne underproces til procesudskiftning" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "kan ikke Ã¥bne navngiven datakanal (pipe) %s til læsning" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "kan ikke Ã¥bne navngiven datakanal (pipe) %s til skrivning" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "kan ikke duplikere navngiven datakanal (pipe) %s som %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "dÃ¥rlig udskiftning: ingen lukkende \"`\" i %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "kan ikke danne datakanal (pipe) til kommandoudskiftning" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "kan ikke danne underproces til kommandoudskiftning" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: kan ikke duplikere datakanal (pipe) som fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%d: ugyldig filbeskrivelse: %s" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: dÃ¥rlig udskiftning" # -c Specify the number of lines read between each call to callback. -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: ugyldigt antal linjer" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "\"%s\": ugyldigt tastetildelingsnavn" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter null eller ikke indstillet" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: understreng-udtryk < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: kan ikke tildele pÃ¥ denne mÃ¥de" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "dÃ¥rlig udskiftning: ingen lukkende \"`\" i %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "intet match: %s" @@ -2007,7 +2055,7 @@ msgstr "%s: unær operator forventet" msgid "%s: binary operator expected" msgstr "%s: binær operator forventet" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "manglende \"]\"" @@ -2033,73 +2081,73 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: ugyldigt signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "fejl under importering af funktionsdefinition for \"%s\"" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "skalniveau (%d) for højt, genindstiller til 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%d: ugyldig filbeskrivelse: %s" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ingen funktionskontekst ved nuværende navneomrÃ¥de" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: kan ikke tildele liste til arrayelementer" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%d: ugyldig filbeskrivelse: %s" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ingen funktionskontekst ved nuværende navneomrÃ¥de" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: parameter null eller ikke indstillet" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "ugyldigt tegn %d i exportstr for %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "intet \"=\" i exportstr for %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: hoved af shell_variables er ikke en funktionskontekst" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: ingen global_variables-kontekst" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: hoved af shell_variables er ikke et midlertidigt miljønavnerum" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: kan ikke Ã¥bne: %s" -#: variables.c:5431 +#: variables.c:5624 #, fuzzy, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%d: ugyldig filbeskrivelse: %s" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s udenfor rækkevidde" @@ -3000,10 +3048,11 @@ msgstr "" " der opstÃ¥r en fejl." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Indstil variabelværdier og -attributter.\n" " \n" @@ -3557,7 +3606,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5081,6 +5130,7 @@ msgstr "" " Returnerer statussen fra den sidst eksekverede kommando." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5090,7 +5140,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Opret en coproces ved navn NAVN.\n" " \n" diff --git a/po/de.gmo b/po/de.gmo index 908980956a7a734b1ddaf3bde2a5693ba9df1751..2535ddda821540cb0a6a743b8e0a6925d17eb3dd 100644 GIT binary patch delta 9800 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\n" "Language-Team: German \n" @@ -20,50 +20,56 @@ msgstr "" msgid "bad array subscript" msgstr "Falscher Feldbezeichner." -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: Kann nicht das indizierte in ein assoziatives Array umwandeln." -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: Ungültiger Schlüssel für das assoziative Array." -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: Kann nicht auf einen nicht-numerischen Index zuweisen." -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s: %s: Ein Feldbezeicher wird zum Zuweisen eines assoziativen Arrays " "benötigt." -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: Kann die Datei %s nicht erzeugen." -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: Kann nicht die Tastenzuordnung für das Kommando " "finden." -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr " %s: Das erste Zeichen ist nicht `\\'." -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "fehlende schließende `%c' in %s." -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: Fehlender Doppelpunkt." @@ -83,7 +89,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': Ungültiger Alias Name." @@ -142,11 +148,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME ist nicht zugewiesen." -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "Zu viele Argumente." -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "kein anderes Verzeichnis" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD ist nicht zugewiesen." @@ -166,7 +177,7 @@ msgstr "Warnung: " msgid "%s: usage: " msgstr "%s: Gebrauch: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: Ein numerischer Paremeter ist erforderlich." @@ -181,7 +192,7 @@ msgstr "%s: Ein numerischer Parameter ist erforderlich." msgid "%s: not found" msgstr "%s: Nicht gefunden." -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: Ungültige Option" @@ -191,7 +202,7 @@ msgstr "%s: Ungültige Option" msgid "%s: invalid option name" msgstr "%s: Ungültiger Optionsname." -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': Ist kein gültiger Bezeichner." @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s: Ungültige Methode." #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: Keine Komplettierung angegeben." @@ -313,7 +324,7 @@ msgstr "Warnung: Die -F Option könnte unerwartete Ergebnisse liefern." msgid "warning: -C option may not work as you expect" msgstr "Warnung: Die -C Option könnte unerwartete Ergebnisse liefern." -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "Gegenwärtig wird keine Komplettierungsfunktion ausgeführt." @@ -321,41 +332,47 @@ msgstr "Gegenwärtig wird keine Komplettierungsfunktion ausgeführt." msgid "can only be used in a function" msgstr "kann nur innerhalb einer Funktion benutzt werden." -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "`%s': Ungültiger Variablenname." + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "Mit `-f' können keine Funktionen erzeugt werden." -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: Schreibgeschützte Funktion." -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: Kann Feldvariablen nicht auf diese Art löschen." -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -390,7 +407,7 @@ msgstr "%s: Ist nicht dynamisch geladen." msgid "%s: cannot delete: %s" msgstr "%s: Kann nicht löschen: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: ist ein Verzeichnis." @@ -405,7 +422,7 @@ msgstr "%s: Ist keine normale Datei." msgid "%s: file is too large" msgstr "%s: Die Datei ist zu groß." -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: Kann die Datei nicht ausführen." @@ -447,7 +464,7 @@ msgstr "" msgid "%s: cannot open temp file: %s" msgstr "%s: Kann die tempräre Datei nicht öffnen: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "gegenwärtig" @@ -798,22 +815,22 @@ msgstr "" "»Return« ist nur aus einer Funktion oder einem mit »source« ausgefühten Skript " "möglich." -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" "Gleichzeitiges `unset' einer Funktion und einer Variable ist nicht möglich." -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: `unset' nicht möglich." -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: `unset' nicht möglich: Schreibgeschützt %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: Ist keine Feldvariable." @@ -832,11 +849,11 @@ msgstr "%s: exportieren nicht möglich." msgid "shift count" msgstr "Verschiebezähler" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "Kann nicht Shell Optinen gleichzeitig aktivieren und deaktivieren." -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: Ungültiger Shell Optionen Name." @@ -984,61 +1001,66 @@ msgstr "\aZu lange keine Eingabe: Automatisch ausgeloggt.\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "Kann nicht die Standardeingabe von /dev/null umleiten: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': Ungültiges Formatzeichen." -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "Pipe-Fehler" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: Verboten: `/' ist in Kommandonamen unzulässig." -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: Kommando nicht gefunden." -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: Defekter Interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: Kann die Binärdatei nicht ausführen: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s' ist eine spezielle eingebaute Funktion." -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "Kann fd %d nicht auf fd %d verdoppeln." @@ -1114,7 +1136,7 @@ msgstr "%s: Fehler im Ausdruck.\n" msgid "getcwd: cannot access parent directories" msgstr "getwd: Kann auf das übergeordnete Verzeichnis nicht zugreifen." -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "Konnte den No-Delay Modus für fd %d nicht wieder herstellen." @@ -1130,154 +1152,154 @@ msgstr "Kann keinen neuen Filedeskriptor für die Eingabe von fd %d zuweisen." msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: Es existiert bereits ein Puffer für den neuen fd %d." -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "Die geforkte PID %d erscheint im laufenden Prozess %d." -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Lösche den gestoppten Prozess %d der Prozessgruppe %ld." -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" # Programmierfehler -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: Prozeßnummer existiert nicht." -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Fertig" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Angehalten" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Angehalten(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Läuft" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Fertig(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Unbekannter Status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(Speicherabzug geschrieben) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" # interner Fehler -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: Programm ist beendet." -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" # Debug Ausgabe -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: Zeile %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (Speicherabzug geschrieben)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(gegenwärtiges Arbeitsverzeichnis ist: %s)\n" # interner Fehler -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp war nicht erfolgreich." # interner Fehler -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" # interner Fehler -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "Kann die Prozessgruppe des Terminals nicht setzen (%d)." -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Keine Job Steuerung in dieser Shell." @@ -1441,104 +1463,111 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "Dateiende beim Suchen nach `%c' erreicht." -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "Dateiende beim Suchen nach `]]' erreicht." -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "Syntaxfehler im bedingten Ausdruck: Unerwartetes Zeichen `%s'." -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "Syntaxfehler im bedingen Ausdruck." -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "Unerwartetes Zeichen: `%s' anstatt von `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "`)' erwartet." -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "Syntaxfehler beim unerwarteten Wort `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "Syntaxfehler beim unerwarteten Wort `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "Syntax Fehler: Unerwartetes Dateiende." -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "Syntax Fehler" # Du oder Sie? -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Benutze \"%s\" um die Shell zu verlassen.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "Dateiende beim Suchen nach passender `)' erreicht." @@ -1547,6 +1576,11 @@ msgstr "Dateiende beim Suchen nach passender `)' erreicht." msgid "completion: function `%s' not found" msgstr "" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1613,44 +1647,48 @@ msgstr "/dev/(tcp|udp)/host/port Wird ohne Netzwerk nicht unterstützt" msgid "redirection error: cannot duplicate fd" msgstr "" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "Konnte das /tmp Verzeichnis nicht finden, bitte anlegen." -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp muß ein gültiger Verzeichnisname sein." -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: Ungültige Option" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "Konnte nicht die uid in %d ändern: Die geltende uid ist %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "Konnte nicht die gid in %d ändern: Die geltende gid ist %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: Ist ein Verzeichnis." -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ich habe keinen Benutzernamen!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, Version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1659,50 +1697,50 @@ msgstr "" "Benutzung:\t%s [Lange GNU Option] [Option] ...\n" "\t\t%s [Lange GNU Option] [Option] Script-Datei ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Lange GNU Optionen:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Shell-Optionen:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t-ilrsD oder -c Kommando\toder -O shopt_option (Nur Aufruf)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s oder Option -o\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "`%s -c \"help set\"' für mehr Informationen über Shell-Optionen.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "`%s -c help' für mehr Information über Shell-Kommandos.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Mit dem `bashbug' Kommando können Fehler gemeldet werden.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: Ungültige Operation" @@ -1876,84 +1914,94 @@ msgstr "Unbekannte Signalnummer." msgid "Unknown Signal #%d" msgstr "Unbekanntes Signal Nr.: %d." -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Falsche Ersetzung: Keine schließende `%s' in `%s' enthalten." -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: Kann einem Feldelement keine Liste zuweisen." -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "Kann keine Pipe für die Prozeßersetzung erzeugen." -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "Kann den Kindsprozess für die Prozeßersetzung nicht erzeugen." -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Kann nicht die benannte Pipe %s zum lesen öffnen." -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Kann nicht die benannte Pipe %s zum schreiben öffnen." -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Kann die benannte Pipe %s nicht auf fd %d." -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "Falsche Ersetzung: Keine schließende \"`\" in %s." + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "Kann keine Pipes für Kommandoersetzung erzeugen." -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "Kann keinen Unterprozess für die Kommandoersetzung erzeugen." # interner Fehler -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "Kommandoersetzung: Kann Pipe nicht als fd 1 duplizieren." -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: Falsche Variablenersetzung." -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: Ungültige indirekte Expansion" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "`%s': Ungültiger Variablenname." -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: Parameter ist Null oder nicht gesetzt." # interner Fehler -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: Teilstring-Ausdruck < 0." -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: Kann so nicht zuweisen." -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1961,12 +2009,12 @@ msgstr "" "Zukünftige Versionen dieser Shell werden das Auswerten arithmetischer " "Ersetzungen erzwingen." -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Falsche Ersetzung: Keine schließende \"`\" in %s." -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "Keine Entsprechung: %s" @@ -1999,7 +2047,7 @@ msgstr "%s: Einstelliger (unärer) Operator erwartet." msgid "%s: binary operator expected" msgstr "%s: Zweistelliger (binärer) Operator erwartet." -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "Fehlende `]'" @@ -2024,72 +2072,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: Falsches Signal %d." -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "Fehler beim Importieren der Funktionsdefinition für `%s'." -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: Der Variable könnte kein Wert zugewiesen sein." -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: Kann nicht als Datei geöffnet werden." -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: Kompatibilitätswert außerhalb des Gültigkeitsbereiches." @@ -3000,10 +3048,11 @@ msgstr "" " oder ein Fehler trat auf." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Setzt Variablen Werte und Eigenschaften\n" "\n" @@ -3471,7 +3520,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4279,7 +4328,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 diff --git a/po/el.gmo b/po/el.gmo index d4da3bf40d2683e474f1e3b287f4f8c54422e180..30db8974ad31989019c53d4e66ce698398cd4aff 100644 GIT binary patch delta 10280 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 U+y6iPQizC_y7O^ delta 7608 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 Zp??1zm%@FWmnHktmc@qnmn~lw_CFXGkk$YI diff --git a/po/el.po b/po/el.po index 0500dd8d..e688092f 100644 --- a/po/el.po +++ b/po/el.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-02 07:21-0400\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2016-06-02 01:32+0300\n" "Last-Translator: Lefteris Dimitroulakis \n" "Language-Team: Greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.5\n" @@ -22,46 +22,52 @@ msgstr "" msgid "bad array subscript" msgstr "" -#: arrayfunc.c:360 builtins/declare.def:647 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:405 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: αδυναμία δημιουÏγίας: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: δεν μποÏÏŽ να βÏω keymap για εντολή" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: ο Ï€Ïώτος μη-λευκό διάστημα χαÏακτήÏας δεν είναι «\"»" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "" @@ -81,7 +87,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "«%s»: μη έγκυÏο ψευδώνημο" @@ -135,15 +141,20 @@ msgid "" " Without EXPR, returns " msgstr "" -#: builtins/cd.def:320 +#: builtins/cd.def:321 msgid "HOME not set" msgstr "HOME δεν έχει οÏιστεί" -#: builtins/cd.def:328 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "πάÏα πολλά οÏίσματα" -#: builtins/cd.def:339 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "όχι άλλος κατάλογος" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD δεν έχει οÏιστεί" @@ -162,7 +173,7 @@ msgstr "Ï€Ïοειδοποίηση: " msgid "%s: usage: " msgstr "%s: χÏήση: " -#: builtins/common.c:199 shell.c:509 shell.c:800 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: η επιλογή απαιτεί ÏŒÏισμα" @@ -177,7 +188,7 @@ msgstr "%s: απαιτείται αÏιθμητικό ÏŒÏισμα" msgid "%s: not found" msgstr "%s: δεν βÏέθηκε" -#: builtins/common.c:222 shell.c:813 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: μη έγκυÏη επιλογή" @@ -187,7 +198,7 @@ msgstr "%s: μη έγκυÏη επιλογή" msgid "%s: invalid option name" msgstr "%s: μη έγκυÏο όνομα επιλογής" -#: builtins/common.c:236 general.c:240 general.c:245 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "" @@ -200,7 +211,7 @@ msgstr "μη έγκυÏος οκταδικός αÏιθμός" msgid "invalid hex number" msgstr "μη έγκυÏος εξαδικός αÏιθμός" -#: builtins/common.c:250 expr.c:1470 +#: builtins/common.c:250 expr.c:1473 msgid "invalid number" msgstr "μη έγκυÏος αÏιθμός" @@ -214,7 +225,7 @@ msgstr "%s: μη έγκυÏη Ï€ÏοδιαγÏαφή σήματος" msgid "`%s': not a pid or valid job spec" msgstr "«%s»: όχι pid ή έγκυÏο job spec" -#: builtins/common.c:272 error.c:510 +#: builtins/common.c:272 error.c:511 #, c-format msgid "%s: readonly variable" msgstr "%s: μεταβλητή μόνο για ανάγνωση" @@ -276,17 +287,17 @@ msgstr "" msgid "error getting terminal attributes: %s" msgstr "" -#: builtins/common.c:583 +#: builtins/common.c:585 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "" -#: builtins/common.c:649 builtins/common.c:651 +#: builtins/common.c:651 builtins/common.c:653 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: ασαφείς Ï€ÏοδιαγÏαφές εÏγασίας" -#: builtins/common.c:916 +#: builtins/common.c:918 msgid "help not available in this version" msgstr "" @@ -295,21 +306,21 @@ msgstr "" msgid "%s: invalid action name" msgstr "%s: μη έγκυÏο όνομα ενέÏγειας" -#: builtins/complete.def:451 builtins/complete.def:646 -#: builtins/complete.def:856 +#: builtins/complete.def:452 builtins/complete.def:647 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: δεν υπάÏχει Ï€ÏοδιαγÏαφή συμπλήÏωσης" -#: builtins/complete.def:698 +#: builtins/complete.def:699 msgid "warning: -F option may not work as you expect" msgstr "Ï€Ïοειδοποίηση: η επιλογή -F μποÏεί να μη δουλέψει όπως πεÏιμένεις" -#: builtins/complete.def:700 +#: builtins/complete.def:701 msgid "warning: -C option may not work as you expect" msgstr "Ï€Ïοειδοποίηση: η επιλογή -C ίσως δεν δουλέψει όπως αναμένετε" -#: builtins/complete.def:829 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -317,41 +328,48 @@ msgstr "" msgid "can only be used in a function" msgstr "μποÏεί να χÏησιμοποιηθεί μόνο μέσα σε συνάÏτηση" -#: builtins/declare.def:330 builtins/declare.def:566 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:339 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:346 builtins/declare.def:575 subst.c:6257 subst.c:8606 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:424 -msgid "cannot use `-f' to make functions" -msgstr "η επιλογή «-f» δεν μποÏεί να χÏησιμοποιηθεί για τη δημιουÏγία συναÏτήσεων" +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: μη έγκυÏο όνομα μεταβλητής" -#: builtins/declare.def:436 execute_cmd.c:5551 +#: builtins/declare.def:463 +msgid "cannot use `-f' to make functions" +msgstr "" +"η επιλογή «-f» δεν μποÏεί να χÏησιμοποιηθεί για τη δημιουÏγία συναÏτήσεων" + +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: συνάÏτηση μόνο για ανάγνωση" -#: builtins/declare.def:620 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:634 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "" -#: builtins/declare.def:641 builtins/read.def:750 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -360,52 +378,52 @@ msgstr "" msgid "dynamic loading not available" msgstr "δυναμική φόÏτωση μη διαθέσημη" -#: builtins/enable.def:342 +#: builtins/enable.def:343 #, c-format msgid "cannot open shared object %s: %s" msgstr "αδυναμία ανοίγματος κοινόχÏηστου αντικειμένου %s: %s" -#: builtins/enable.def:368 +#: builtins/enable.def:369 #, c-format msgid "cannot find %s in shared object %s: %s" msgstr "αδυναμία εÏÏεσης %s στο κοινόχÏηστο αντικείμενο %s: %s" -#: builtins/enable.def:386 +#: builtins/enable.def:387 #, c-format msgid "load function for %s returns failure (%d): not loaded" msgstr "" -#: builtins/enable.def:511 +#: builtins/enable.def:512 #, c-format msgid "%s: not dynamically loaded" msgstr "%s: δεν φοÏτώθηκε δυναμικά" -#: builtins/enable.def:537 +#: builtins/enable.def:538 #, c-format msgid "%s: cannot delete: %s" msgstr "%s: αδυναμία διαγÏαφής: %s" -#: builtins/evalfile.c:143 builtins/hash.def:171 execute_cmd.c:5393 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: είναι κατάλογος" -#: builtins/evalfile.c:149 +#: builtins/evalfile.c:150 #, c-format msgid "%s: not a regular file" msgstr "%s: όχι κανονικό αÏχείο" -#: builtins/evalfile.c:158 +#: builtins/evalfile.c:159 #, c-format msgid "%s: file is too large" msgstr "%s: αÏχείο Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿" -#: builtins/evalfile.c:193 builtins/evalfile.c:211 shell.c:1551 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: αδυναμία εκτέλεσης Î´Ï…Î±Î´Î¹ÎºÎ¿Ï Î±Ïχείου" -#: builtins/exec.def:155 builtins/exec.def:157 builtins/exec.def:234 +#: builtins/exec.def:156 builtins/exec.def:158 builtins/exec.def:235 #, c-format msgid "%s: cannot execute: %s" msgstr "%s: αδυναμία εκτέλεσης: %s" @@ -429,20 +447,20 @@ msgstr "ΥπάÏχουν σταματημένες εÏγασίες.\n" msgid "There are running jobs.\n" msgstr "ΥπάÏχουν εÏγασίες που Ï„Ïέχουν.\n" -#: builtins/fc.def:268 +#: builtins/fc.def:269 msgid "no command found" msgstr "δεν βÏέθηκε εντολή" -#: builtins/fc.def:326 builtins/fc.def:375 +#: builtins/fc.def:327 builtins/fc.def:376 msgid "history specification" msgstr "history specification" -#: builtins/fc.def:396 +#: builtins/fc.def:397 #, c-format msgid "%s: cannot open temp file: %s" msgstr "%s: αδυναμία ανοίγματος Ï€ÏοσωÏÎ¹Î½Î¿Ï Î±Ïχείου: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:282 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "Ï„Ïέχων" @@ -465,34 +483,37 @@ msgstr "%s: η επιλογή απαιτεί ένα ÏŒÏισμα -- %c\n" msgid "hashing disabled" msgstr "" -#: builtins/hash.def:138 +#: builtins/hash.def:139 #, c-format msgid "%s: hash table empty\n" msgstr "" -#: builtins/hash.def:253 +#: builtins/hash.def:254 #, c-format msgid "hits\tcommand\n" msgstr "hits\tcommand\n" -#: builtins/help.def:134 +#: builtins/help.def:135 #, c-format msgid "Shell commands matching keyword `" msgid_plural "Shell commands matching keywords `" msgstr[0] "Εντολές κελÏφους που ταιÏιάζουν στη λέξη-κλειδί `" msgstr[1] "Εντολές κελÏφους που ταιÏιάζουν στις λέξεις-κλειδί" -#: builtins/help.def:186 +#: builtins/help.def:187 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "ουδεμία βοήθεια ταιÏιάζει με «%s». Δοκιμάστε «help help» ή «man -k %s» ή «info %s»." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "" +"ουδεμία βοήθεια ταιÏιάζει με «%s». Δοκιμάστε «help help» ή «man -k %s» ή «info %" +"s»." -#: builtins/help.def:225 +#: builtins/help.def:226 #, c-format msgid "%s: cannot open: %s" msgstr "%s: αδυναμία ανοίγματος: %s" -#: builtins/help.def:525 +#: builtins/help.def:526 #, c-format msgid "" "These shell commands are defined internally. Type `help' to see this list.\n" @@ -504,15 +525,20 @@ msgid "" "\n" msgstr "" -#: builtins/history.def:154 +#: builtins/history.def:155 msgid "cannot use more than one of -anrw" msgstr "δεν μποÏÏŽ να χÏησιμοποιήσω πεÏισσότεÏες της μιας από τις -anrw" -#: builtins/history.def:186 +#: builtins/history.def:187 msgid "history position" msgstr "θέση στο ιστοÏικό" -#: builtins/history.def:371 +#: builtins/history.def:264 +#, fuzzy, c-format +msgid "%s: invalid timestamp" +msgstr "%s: μη έγκυÏο ÏŒÏισμα" + +#: builtins/history.def:375 #, c-format msgid "%s: history expansion failed" msgstr "" @@ -569,44 +595,44 @@ msgstr "" msgid "%s: invalid callback quantum" msgstr "" -#: builtins/mapfile.def:349 +#: builtins/mapfile.def:350 msgid "empty array variable name" msgstr "" -#: builtins/mapfile.def:370 +#: builtins/mapfile.def:371 msgid "array variable support required" msgstr "απαιτείται υποστήÏιξη μεταβλητής πίνακος" -#: builtins/printf.def:410 +#: builtins/printf.def:412 #, c-format msgid "`%s': missing format character" msgstr "«%s»: απουσία χαÏακτήÏα φοÏμαÏίσματος " -#: builtins/printf.def:464 +#: builtins/printf.def:467 #, c-format msgid "`%c': invalid time format specification" msgstr "«%c»: μη έγκυÏη Ï€ÏοδιαγÏαφή για φοÏμά χÏόνου" -#: builtins/printf.def:666 +#: builtins/printf.def:669 #, c-format msgid "`%c': invalid format character" msgstr "«%c»: μη έγκυÏος χαÏακτήÏας φοÏμαÏίσματος" -#: builtins/printf.def:692 +#: builtins/printf.def:695 #, c-format msgid "warning: %s: %s" msgstr "Ï€Ïοειδοποίηση: %s: %s" -#: builtins/printf.def:778 +#: builtins/printf.def:781 #, c-format msgid "format parsing problem: %s" msgstr "" -#: builtins/printf.def:875 +#: builtins/printf.def:878 msgid "missing hex digit for \\x" msgstr "απουσία hex ψηφίου για \\x" -#: builtins/printf.def:890 +#: builtins/printf.def:893 #, c-format msgid "missing unicode digit for \\%c" msgstr "απουσία ψηφίου unicode για \\%c" @@ -647,10 +673,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 "" @@ -705,7 +733,7 @@ msgstr "" msgid "%s: invalid timeout specification" msgstr "" -#: builtins/read.def:695 +#: builtins/read.def:696 #, c-format msgid "read error: %d: %s" msgstr "σφάλμα ανάγνωσης: %d: %s" @@ -714,31 +742,31 @@ msgstr "σφάλμα ανάγνωσης: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "" -#: builtins/set.def:829 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "«unset» δεν μποÏεί να εφαÏμοστεί συγχÏόνως σε συνάÏτηση και μεταβλητή" -#: builtins/set.def:876 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: αδυναμία «unset»" -#: builtins/set.def:897 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: αδυναμία unset: %s μόνο για ανάγνωση" -#: builtins/set.def:910 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: δεν είναι μεταβλητή πίνακα" -#: builtins/setattr.def:188 +#: builtins/setattr.def:191 #, c-format msgid "%s: not a function" msgstr "%s: δεν είναι συνάÏτηση" -#: builtins/setattr.def:193 +#: builtins/setattr.def:196 #, c-format msgid "%s: cannot export" msgstr "%s: αδυναμία εξαγωγής" @@ -747,11 +775,13 @@ msgstr "%s: αδυναμία εξαγωγής" msgid "shift count" msgstr "" -#: builtins/shopt.def:283 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" -msgstr "οι επιλογές κελÏφους δεν είναι δυνατόν συγχÏόνως να ενεÏγοποιηθοÏν και απενεÏγοποιηθοÏν" +msgstr "" +"οι επιλογές κελÏφους δεν είναι δυνατόν συγχÏόνως να ενεÏγοποιηθοÏν και " +"απενεÏγοποιηθοÏν" -#: builtins/shopt.def:350 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: μη έγκυÏο όνομα επιλογής" @@ -765,88 +795,88 @@ msgstr "απαιτείται όνομα αÏχείου για ÏŒÏισμα" msgid "%s: file not found" msgstr "%s: αÏχείο δεν βÏέθηκε" -#: builtins/suspend.def:101 +#: builtins/suspend.def:102 msgid "cannot suspend" msgstr "" -#: builtins/suspend.def:111 +#: builtins/suspend.def:112 msgid "cannot suspend a login shell" msgstr "" -#: builtins/type.def:235 +#: builtins/type.def:236 #, c-format msgid "%s is aliased to `%s'\n" msgstr "%s είναι ψευδώνημο του «%s»\n" -#: builtins/type.def:256 +#: builtins/type.def:257 #, c-format msgid "%s is a shell keyword\n" msgstr "%s αποτελεί δεσμευμένη λέξη του κελÏφους\n" -#: builtins/type.def:275 +#: builtins/type.def:276 #, c-format msgid "%s is a function\n" msgstr "%s είναι συνάÏτηση\n" -#: builtins/type.def:299 +#: builtins/type.def:300 #, c-format msgid "%s is a special shell builtin\n" msgstr "%s είναι ένα ειδικό builtin\n" -#: builtins/type.def:301 +#: builtins/type.def:302 #, c-format msgid "%s is a shell builtin\n" msgstr "%s είναι ένα builtin κελÏφους\n" -#: builtins/type.def:323 builtins/type.def:408 +#: builtins/type.def:324 builtins/type.def:409 #, c-format msgid "%s is %s\n" msgstr "%s είναι %s\n" -#: builtins/type.def:343 +#: builtins/type.def:344 #, c-format msgid "%s is hashed (%s)\n" msgstr "%s is hashed (%s)\n" -#: builtins/ulimit.def:397 +#: builtins/ulimit.def:398 #, c-format msgid "%s: invalid limit argument" msgstr "%s: μη έγκυÏο ÏŒÏισμα οÏίου" -#: builtins/ulimit.def:423 +#: builtins/ulimit.def:424 #, c-format msgid "`%c': bad command" msgstr "«%c»: λάθος διαταγή" -#: builtins/ulimit.def:452 +#: builtins/ulimit.def:453 #, c-format msgid "%s: cannot get limit: %s" msgstr "" -#: builtins/ulimit.def:478 +#: builtins/ulimit.def:479 msgid "limit" msgstr "ÏŒÏιο" -#: builtins/ulimit.def:490 builtins/ulimit.def:790 +#: builtins/ulimit.def:491 builtins/ulimit.def:791 #, c-format msgid "%s: cannot modify limit: %s" msgstr "%s: αδυναμία μεταβολής οÏίου: %s" -#: builtins/umask.def:114 +#: builtins/umask.def:115 msgid "octal number" msgstr "οκταδικός αÏιθμός" -#: builtins/umask.def:231 +#: builtins/umask.def:232 #, c-format msgid "`%c': invalid symbolic mode operator" msgstr "" -#: builtins/umask.def:286 +#: builtins/umask.def:287 #, c-format msgid "`%c': invalid symbolic mode character" msgstr "" -#: error.c:90 error.c:347 error.c:349 error.c:351 +#: error.c:90 error.c:348 error.c:350 error.c:352 msgid " line " msgstr " γÏαμμή " @@ -860,97 +890,103 @@ msgstr "τελευταία εντολή: %s\n" msgid "Aborting..." msgstr "" -#: error.c:287 +#. TRANSLATORS: this is a prefix for informational messages. +#: error.c:288 #, c-format msgid "INFORM: " msgstr "" -#: error.c:462 +#: error.c:463 msgid "unknown command error" msgstr "άγνωστο σφάλμα εντολής" -#: error.c:463 +#: error.c:464 msgid "bad command type" msgstr "" -#: error.c:464 +#: error.c:465 msgid "bad connector" msgstr "" -#: error.c:465 +#: error.c:466 msgid "bad jump" msgstr "" -#: error.c:503 +#: error.c:504 #, c-format msgid "%s: unbound variable" msgstr "" -#: eval.c:192 +#: eval.c:209 #, c-format msgid "\atimed out waiting for input: auto-logout\n" msgstr "\aη αναμονή για δεδομένα έληξε: αυτόματη αποσÏνδεση\n" -#: execute_cmd.c:538 +#: execute_cmd.c:527 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "αδυναμία ανακατεÏθυνσης τυπικής εισόδου από /dev/null: %s" -#: execute_cmd.c:1284 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: «%c»: μη έγκυÏος χαÏακτήÏας μοÏφοποίησης" -#: execute_cmd.c:2350 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4426 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4438 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4547 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5068 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: πεÏιοÏισμός: δεν μποÏεί να πεÏιέχεται «/» σε όνομα εντολής" -#: execute_cmd.c:5156 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: εντολή δεν βÏέθηκε" -#: execute_cmd.c:5391 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5428 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "" -#: execute_cmd.c:5465 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: αδυναμία εκτέλεσης Î´Ï…Î±Î´Î¹ÎºÎ¿Ï Î±Ïχείου: %s" -#: execute_cmd.c:5542 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "«%s»: είναι ειδικό builtin" -#: execute_cmd.c:5594 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "αδυναμία αντιγÏαφής του fd %d στον fd %d" @@ -995,37 +1031,37 @@ msgstr "" msgid "missing `)'" msgstr "λείπει «)»" -#: expr.c:1053 expr.c:1390 +#: expr.c:1053 expr.c:1393 msgid "syntax error: operand expected" msgstr "syntax error: αναμενόταν τελεστέος" -#: expr.c:1392 +#: expr.c:1395 msgid "syntax error: invalid arithmetic operator" msgstr "syntax error: μη έγκυÏος αÏιθμητικός τελεστής" -#: expr.c:1416 +#: expr.c:1419 #, c-format msgid "%s%s%s: %s (error token is \"%s\")" msgstr "%s%s%s: %s (το λανθασμένο σÏμβολο είναι \"%s\")" -#: expr.c:1474 +#: expr.c:1477 msgid "invalid arithmetic base" msgstr "μη έγκυÏη αÏιθμητική βάση" -#: expr.c:1494 +#: expr.c:1497 msgid "value too great for base" msgstr "τιμή Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»Î· για βάση" -#: expr.c:1543 +#: expr.c:1546 #, c-format msgid "%s: expression error\n" msgstr "%s: σφάλμα έκφÏασης\n" -#: general.c:67 +#: general.c:68 msgid "getcwd: cannot access parent directories" msgstr "getcwd: αδυναμία Ï€Ïόσβασης στο γονικό κατάλογο" -#: input.c:102 subst.c:5558 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "αδυναμία επανάταξης nodelay mode για fd %d" @@ -1033,155 +1069,156 @@ msgstr "αδυναμία επανάταξης nodelay mode για fd %d" #: input.c:271 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "αδυναμία εκχώÏησης νέου πεÏιγÏαφέα αÏχείου για είσοδο του bash από fd %d" +msgstr "" +"αδυναμία εκχώÏησης νέου πεÏιγÏαφέα αÏχείου για είσοδο του bash από fd %d" #: input.c:279 #, c-format msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:509 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:944 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1063 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1167 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1170 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1499 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: δεν υπάÏχει τέτοιο pid" -#: jobs.c:1514 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Σήμα %d" -#: jobs.c:1528 jobs.c:1554 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Done" -#: jobs.c:1533 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "σταματημένο" -#: jobs.c:1537 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "σταματημένο(%s)" -#: jobs.c:1541 +#: jobs.c:1628 msgid "Running" msgstr "" -#: jobs.c:1558 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Done(%d)" -#: jobs.c:1560 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Έξοδος %d" -#: jobs.c:1563 +#: jobs.c:1650 msgid "Unknown status" msgstr "Άγνωστη κατάσταση" -#: jobs.c:1650 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1669 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1893 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "child setpgid (%ld to %ld)" -#: jobs.c:2242 nojobs.c:639 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: διεÏγασία %ld δεν αποτελεί θυγατÏική Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… κελÏφους" -#: jobs.c:2497 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Δεν υπάÏχουν στοιχεία για διεÏγασία %ld" -#: jobs.c:2815 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: η εÏγασία %d είναι σταματημένη" -#: jobs.c:3107 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: η εÏγασία τεÏματίστηκε" -#: jobs.c:3116 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: εÏγασία %d ήδη στο παÏασκήνιο" -#: jobs.c:3341 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3855 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: γÏαμμή %d: " -#: jobs.c:3869 nojobs.c:882 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3881 jobs.c:3894 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(τώÏα wd: %s)\n" -#: jobs.c:3926 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: αποτυχία getpgrp" -#: jobs.c:3989 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:3999 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4020 jobs.c:4029 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4034 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "δεν υπάÏχει job control σ'αυτό το κέλυφος" @@ -1304,131 +1341,138 @@ msgstr "Έχεις νέο μήνυμα στο $_" msgid "The mail in %s has been read\n" msgstr "Το μήνυμα στο %s διαβάστηκε\n" -#: make_cmd.c:326 +#: make_cmd.c:329 msgid "syntax error: arithmetic expression required" msgstr "syntax error: απαιτείται αÏιθμητική έκφÏαση" -#: make_cmd.c:328 +#: make_cmd.c:331 msgid "syntax error: `;' unexpected" msgstr "συντακτικό σφάλμα: δεν αναμενόταν «;»" -#: make_cmd.c:329 +#: make_cmd.c:332 #, c-format msgid "syntax error: `((%s))'" msgstr "συντακτικό σφάλμα: «((%s))»" -#: make_cmd.c:581 +#: make_cmd.c:584 #, c-format msgid "make_here_document: bad instruction type %d" msgstr "" -#: make_cmd.c:665 +#: make_cmd.c:669 #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" msgstr "" -#: make_cmd.c:763 +#: make_cmd.c:768 #, c-format msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: η οδηγία της ανακατεÏθυνσης «%d» εκτός οÏίων" -#: parse.y:2685 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3370 parse.y:3653 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "μη αναμενόμενο EOF κατά την αναζήτηση «%c»" -#: parse.y:4270 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "μη αναμενόμενο EOF ενώ έψαχνα για «]]»" -#: parse.y:4275 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntax error in conditional expression: μη αναμενόμενο σÏμβολο «%s»" -#: parse.y:4279 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "" -#: parse.y:4357 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "μη αναμενόμενο σÏμβολο «%s», αναμενόταν «)»" -#: parse.y:4361 +#: parse.y:4501 msgid "expected `)'" msgstr "αναμενόταν «)»" -#: parse.y:4389 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4393 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4439 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" -#: parse.y:4443 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "" -#: parse.y:4465 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4469 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4480 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "" -#: parse.y:4483 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "" -#: parse.y:4487 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "" -#: parse.y:5841 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "συντακτικό σφάλμα κοντά στο μη αναμενόμενο σÏμβολο «%s»" -#: parse.y:5859 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "συντακτικό σφάλμα κοντά σε «%s»" -#: parse.y:5869 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntax error: μη αναμενόμενο τέλος αÏχείου" -#: parse.y:5869 +#: parse.y:6023 msgid "syntax error" msgstr "συντακτικό σφάλμα" -#: parse.y:5931 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "ΧÏήση «%s» για έξοδο από το κέλυφος.\n" -#: parse.y:6093 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "μη αναμενόμενο EOF ενώ έψαχνα «)»" @@ -1437,6 +1481,11 @@ msgstr "μη αναμενόμενο EOF ενώ έψαχνα «)»" msgid "completion: function `%s' not found" msgstr "completion: η συνάÏτηση «%s» δεν βÏέθηκε" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1503,44 +1552,48 @@ msgstr "/dev/(tcp|udp)/host/port δεν υποστηÏίζεται χωÏίς δ msgid "redirection error: cannot duplicate fd" msgstr "" -#: shell.c:342 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "δεν μπόÏεσα να βÏω /tmp, παÏακαλώ να τον δημιουÏγήσετε!" -#: shell.c:346 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp Ï€Ïέπει να είναι ένα έγκυÏο όνομα αÏχείου" -#: shell.c:902 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: μη έγκυÏη επιλογή" -#: shell.c:1257 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" -#: shell.c:1264 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" -#: shell.c:1539 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: είναι κατάλογος" -#: shell.c:1744 +#: shell.c:1777 msgid "I have no name!" msgstr "Δεν έχω όνομα!" -#: shell.c:1895 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, έκδοση %s-(%s)\n" -#: shell.c:1896 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1549,49 +1602,53 @@ msgstr "" "ΧÏήση:\t%s [μακÏά επιλογή GNU] [επιλογή] ...\n" "\t%s [μακÏά επιλογή GNU] [επιλοη] script-file ...\n" -#: shell.c:1898 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "ΜακÏές επιλογές GNU:\n" -#: shell.c:1902 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Επιλογές κελÏφους:\n" -#: shell.c:1903 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" -#: shell.c:1918 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ή επιλογή -o\n" -#: shell.c:1924 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "ΠληκτÏολόγησε «%s -c \"help set\"» για πληÏοφοÏίες επί των επιλογών κελÏφους.\n" +msgstr "" +"ΠληκτÏολόγησε «%s -c \"help set\"» για πληÏοφοÏίες επί των επιλογών " +"κελÏφους.\n" -#: shell.c:1925 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "ΠληκτÏολόγησε «%s -c help» για πεÏισσότεÏες πληÏοφοÏίες σχετικά με τις ενσωματομένες στο κέλυφος εντολές.\n" +msgstr "" +"ΠληκτÏολόγησε «%s -c help» για πεÏισσότεÏες πληÏοφοÏίες σχετικά με τις " +"ενσωματομένες στο κέλυφος εντολές.\n" -#: shell.c:1926 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "ΧÏησιμοποίησε την εντολή «bashbug» για αναφοÏά σφαλμάτων.\n" -#: shell.c:1928 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1929 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: μη έγκυÏη λειτουÏγία" @@ -1765,91 +1822,103 @@ msgstr "Άγνωστο σήμα #" msgid "Unknown Signal #%d" msgstr "Άγνωστο σήμα #%d" -#: subst.c:1401 subst.c:1559 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:2910 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:5449 subst.c:5465 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:5498 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:5548 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "αδυναμία ανοίγματοε επώνυμης σωλήνας %s Ï€Ïος ανάγνωση" -#: subst.c:5550 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "αδυναμία ανοίγματος επώνυμης σωλήνας %s Ï€Ïος εγγÏαφή" -#: subst.c:5568 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:5775 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "κακή αντικατάσταση: δεν υπάÏχει «`» που κλείνει στο %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:5814 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:5833 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:6343 subst.c:8032 subst.c:8052 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: κακή αντικατάσταση" -#: subst.c:6455 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "" -#: subst.c:6462 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: μη έγκυÏο όνομα μεταβλητής" -#: subst.c:6509 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: παÏάμετÏος κενή ή δεν έχει οÏιστεί" -#: subst.c:6781 subst.c:6796 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: έκφÏαση αÏνητική < 0" -#: subst.c:8130 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: αδÏνατη ανάθεση κατ' αυτόν τον Ï„Ïόπο" -#: subst.c:8469 -msgid "future versions of the shell will force evaluation as an arithmetic substitution" +#: subst.c:8697 +msgid "" +"future versions of the shell will force evaluation as an arithmetic " +"substitution" msgstr "" -#: subst.c:9009 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "κακή αντικατάσταση: δεν υπάÏχει «`» που κλείνει στο %s" -#: subst.c:9947 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "" @@ -1882,95 +1951,96 @@ msgstr "" msgid "%s: binary operator expected" msgstr "%s: αναμενόταν δυαδικός τελεστής" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "αποÏσα «]»" -#: trap.c:223 +#: trap.c:224 msgid "invalid signal number" msgstr "μη έγκυÏος αÏιθμός σήματος" -#: trap.c:385 +#: trap.c:386 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "" -#: trap.c:389 +#: trap.c:390 #, 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 "" -#: trap.c:442 +#: trap.c:443 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: κακό σήμα %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "" -#: variables.c:801 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "επίπεδο κελÏφους (%d) Ï€Î¿Î»Ï Ï…ÏˆÎ·Î»ÏŒ, επαναφοÏά στο 1" -#: variables.c:1902 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2314 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no function context at current scope" -#: variables.c:2333 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "" -#: variables.c:3739 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no function context at current scope" -#: variables.c:4016 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s έχει κενό exportstr" -#: variables.c:4021 variables.c:4030 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "ο χαÏακτήÏας %d δεν έίναι έγκυÏος στην exportstr για %s" -#: variables.c:4036 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "απουσία «=» στην exportstr για %s" -#: variables.c:4471 +#: variables.c:4684 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:4484 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no global_variables context" -#: variables.c:4558 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: head of shell_variables not a temporary environment scope" -#: variables.c:5402 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: αδυναμία ανοίγματος ως ΑΡΧΕΙΟ" -#: variables.c:5407 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5452 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "" @@ -1980,8 +2050,12 @@ msgid "Copyright (C) 2015 Free Software Foundation, Inc." msgstr "Copyright (C) 2015 Free Software Foundation, Inc." #: version.c:47 version2.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "License GPLv3+: GNU GPL έκδοση 3 ή νεώτεÏη \n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"License GPLv3+: GNU GPL έκδοση 3 ή νεώτεÏη \n" #: version.c:86 version2.c:86 #, c-format @@ -2020,319 +2094,342 @@ msgstr "%s: %s:%d: αδυναμία εκχώÏησης %lu bytes (%lu bytes εκ msgid "%s: %s:%d: cannot allocate %lu bytes" msgstr "%s: %s:%d: αδυναμία εκχώÏησης %lu bytes" -#: builtins.c:43 +#: builtins.c:45 msgid "alias [-p] [name[=value] ... ]" msgstr "alias [-p] [name[=value] ... ]" -#: builtins.c:47 +#: builtins.c:49 msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] name [name ...]" -#: builtins.c:51 -msgid "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function ή readline-command]" +#: builtins.c:53 +msgid "" +"bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function ή readline-command]" -#: builtins.c:54 +#: builtins.c:56 msgid "break [n]" msgstr "break [n]" -#: builtins.c:56 +#: builtins.c:58 msgid "continue [n]" msgstr "continue [n]" -#: builtins.c:58 +#: builtins.c:60 msgid "builtin [shell-builtin [arg ...]]" msgstr "builtin [shell-builtin [arg ...]]" -#: builtins.c:61 +#: builtins.c:63 msgid "caller [expr]" msgstr "caller [expr]" -#: builtins.c:64 +#: builtins.c:66 msgid "cd [-L|[-P [-e]] [-@]] [dir]" msgstr "cd [-L|[-P [-e]] [-@]] [dir]" -#: builtins.c:66 +#: builtins.c:68 msgid "pwd [-LP]" msgstr "pwd [-LP]" -#: builtins.c:68 -msgid ":" -msgstr ":" - -#: builtins.c:70 -msgid "true" -msgstr "αληθής" - -#: builtins.c:72 -msgid "false" -msgstr "ψευδής" - -#: builtins.c:74 +#: builtins.c:76 msgid "command [-pVv] command [arg ...]" msgstr "command [-pVv] command [arg ...]" -#: builtins.c:76 +#: builtins.c:78 msgid "declare [-aAfFgilnrtux] [-p] [name[=value] ...]" msgstr "declare [-aAfFgilnrtux] [-p] [name[=value] ...]" -#: builtins.c:78 +#: builtins.c:80 msgid "typeset [-aAfFgilnrtux] [-p] name[=value] ..." msgstr "typeset [-aAfFgilnrtux] [-p] name[=value] ..." -#: builtins.c:80 +#: builtins.c:82 msgid "local [option] name[=value] ..." msgstr "local [option] name[=value] ..." -#: builtins.c:83 +#: builtins.c:85 msgid "echo [-neE] [arg ...]" msgstr "echo [-neE] [arg ...]" -#: builtins.c:87 +#: builtins.c:89 msgid "echo [-n] [arg ...]" msgstr "echo [-n] [arg ...]" -#: builtins.c:90 +#: builtins.c:92 msgid "enable [-a] [-dnps] [-f filename] [name ...]" msgstr "enable [-a] [-dnps] [-f filename] [name ...]" -#: builtins.c:92 +#: builtins.c:94 msgid "eval [arg ...]" msgstr "eval [arg ...]" -#: builtins.c:94 +#: builtins.c:96 msgid "getopts optstring name [arg]" msgstr "getopts optstring name [arg]" -#: builtins.c:96 +#: builtins.c:98 msgid "exec [-cl] [-a name] [command [arguments ...]] [redirection ...]" msgstr "exec [-cl] [-a name] [command [arguments ...]] [redirection ...]" -#: builtins.c:98 +#: builtins.c:100 msgid "exit [n]" msgstr "exit [n]" -#: builtins.c:100 +#: builtins.c:102 msgid "logout [n]" msgstr "logout [n]" -#: builtins.c:103 +#: builtins.c:105 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" msgstr "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -#: builtins.c:107 +#: builtins.c:109 msgid "fg [job_spec]" msgstr "fg [job_spec]" -#: builtins.c:111 +#: builtins.c:113 msgid "bg [job_spec ...]" msgstr "bg [job_spec ...]" -#: builtins.c:114 +#: builtins.c:116 msgid "hash [-lr] [-p pathname] [-dt] [name ...]" msgstr "hash [-lr] [-p pathname] [-dt] [name ...]" -#: builtins.c:117 +#: builtins.c:119 msgid "help [-dms] [pattern ...]" msgstr "help [-dms] [pattern ...]" -#: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [-d offset] [n] ή history -anrw [filename] ή history -ps arg [arg...]" +#: builtins.c:123 +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"history [-c] [-d offset] [n] ή history -anrw [filename] ή history -ps arg " +"[arg...]" -#: builtins.c:125 +#: builtins.c:127 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" msgstr "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" -#: builtins.c:129 -msgid "disown [-h] [-ar] [jobspec ...]" +#: builtins.c:131 +#, fuzzy +msgid "disown [-h] [-ar] [jobspec ... | pid ...]" msgstr "disown [-h] [-ar] [jobspec ...]" -#: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" - #: builtins.c:134 +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" + +#: builtins.c:136 msgid "let arg [arg ...]" msgstr "let arg [arg ...]" -#: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" - #: builtins.c:138 +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p " +"prompt] [-t timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p " +"prompt] [-t timeout] [-u fd] [name ...]" + +#: builtins.c:140 msgid "return [n]" msgstr "return [n]" -#: builtins.c:140 +#: builtins.c:142 msgid "set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]" msgstr "set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]" -#: builtins.c:142 +#: builtins.c:144 msgid "unset [-f] [-v] [-n] [name ...]" msgstr "unset [-f] [-v] [-n] [name ...]" -#: builtins.c:144 +#: builtins.c:146 msgid "export [-fn] [name[=value] ...] or export -p" msgstr "export [-fn] [name[=value] ...] ή export -p" -#: builtins.c:146 +#: builtins.c:148 msgid "readonly [-aAf] [name[=value] ...] or readonly -p" msgstr "readonly [-aAf] [name[=value] ...] ή readonly -p" -#: builtins.c:148 +#: builtins.c:150 msgid "shift [n]" msgstr "shift [n]" -#: builtins.c:150 +#: builtins.c:152 msgid "source filename [arguments]" msgstr "source filename [arguments]" -#: builtins.c:152 +#: builtins.c:154 msgid ". filename [arguments]" msgstr ". όνομα αÏχείου [οÏίσματα]" -#: builtins.c:155 +#: builtins.c:157 msgid "suspend [-f]" msgstr "suspend [-f]" -#: builtins.c:158 +#: builtins.c:160 msgid "test [expr]" msgstr "test [expr]" -#: builtins.c:160 +#: builtins.c:162 msgid "[ arg... ]" msgstr "[ arg... ]" -#: builtins.c:162 -msgid "times" -msgstr "times" - -#: builtins.c:164 +#: builtins.c:166 msgid "trap [-lp] [[arg] signal_spec ...]" msgstr "trap [-lp] [[arg] signal_spec ...]" -#: builtins.c:166 +#: builtins.c:168 msgid "type [-afptP] name [name ...]" msgstr "type [-afptP] name [name ...]" -#: builtins.c:169 +#: builtins.c:171 msgid "ulimit [-SHabcdefiklmnpqrstuvxPT] [limit]" msgstr "ulimit [-SHabcdefiklmnpqrstuvxPT] [limit]" -#: builtins.c:172 +#: builtins.c:174 msgid "umask [-p] [-S] [mode]" msgstr "umask [-p] [-S] [mode]" -#: builtins.c:175 +#: builtins.c:177 msgid "wait [-n] [id ...]" msgstr "wait [-n] [id ...]" -#: builtins.c:179 +#: builtins.c:181 msgid "wait [pid ...]" msgstr "wait [pid ...]" -#: builtins.c:182 +#: builtins.c:184 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" msgstr "for NAME [in WORDS ... ] ; do COMMANDS; done" -#: builtins.c:184 +#: builtins.c:186 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" msgstr "for (( exp1; exp2; exp3 )); do COMMANDS; done" -#: builtins.c:186 +#: builtins.c:188 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" msgstr "select NAME [in WORDS ... ;] do COMMANDS; done" -#: builtins.c:188 +#: builtins.c:190 msgid "time [-p] pipeline" msgstr "time [-p] pipeline" -#: builtins.c:190 +#: builtins.c:192 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" -#: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" - #: builtins.c:194 +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" + +#: builtins.c:196 msgid "while COMMANDS; do COMMANDS; done" msgstr "while COMMANDS; do COMMANDS; done" -#: builtins.c:196 +#: builtins.c:198 msgid "until COMMANDS; do COMMANDS; done" msgstr "until COMMANDS; do COMMANDS; done" -#: builtins.c:198 +#: builtins.c:200 msgid "coproc [NAME] command [redirections]" msgstr "coproc [NAME] command [redirections]" -#: builtins.c:200 +#: builtins.c:202 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" msgstr "function name { COMMANDS ; } ή name () { COMMANDS ; }" -#: builtins.c:202 +#: builtins.c:204 msgid "{ COMMANDS ; }" msgstr "{ COMMANDS ; }" -#: builtins.c:204 +#: builtins.c:206 msgid "job_spec [&]" msgstr "job_spec [&]" -#: builtins.c:206 +#: builtins.c:208 msgid "(( expression ))" msgstr "(( expression ))" -#: builtins.c:208 +#: builtins.c:210 msgid "[[ expression ]]" msgstr "[[ expression ]]" -#: builtins.c:210 +#: builtins.c:212 msgid "variables - Names and meanings of some shell variables" msgstr "variables - Ονόματα και σημασία οÏισμένων μεταβλητών του κελÏφους" -#: builtins.c:213 +#: builtins.c:215 msgid "pushd [-n] [+N | -N | dir]" msgstr "pushd [-n] [+N | -N | dir]" -#: builtins.c:217 +#: builtins.c:219 msgid "popd [-n] [+N | -N]" msgstr "popd [-n] [+N | -N]" -#: builtins.c:221 +#: builtins.c:223 msgid "dirs [-clpv] [+N] [-N]" msgstr "dirs [-clpv] [+N] [-N]" -#: builtins.c:224 +#: builtins.c:226 msgid "shopt [-pqsu] [-o] [optname ...]" msgstr "shopt [-pqsu] [-o] [optname ...]" -#: builtins.c:226 +#: builtins.c:228 msgid "printf [-v var] format [arguments]" msgstr "printf [-v var] format [οÏίσματα]" -#: builtins.c:229 -msgid "complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" +#: builtins.c:231 +msgid "" +"complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-" +"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " +"suffix] [name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-" +"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " +"suffix] [name ...]" -#: builtins.c:233 -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 action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +#: builtins.c:235 +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 action] [-G globpat] [-W wordlist] " +"[-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -#: builtins.c:237 +#: builtins.c:239 msgid "compopt [-o|+o option] [-DE] [name ...]" msgstr "compopt [-o|+o option] [-DE] [name ...]" -#: builtins.c:240 -msgid "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" - #: builtins.c:242 -msgid "readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" +msgid "" +"mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " +"callback] [-c quantum] [array]" +msgstr "" +"mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " +"callback] [-c quantum] [array]" -#: builtins.c:254 +#: builtins.c:244 +msgid "" +"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" + +#: builtins.c:256 msgid "" "Define or display aliases.\n" " \n" @@ -2347,11 +2444,12 @@ 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 "" -#: builtins.c:276 +#: builtins.c:278 msgid "" "Remove each NAME from the list of defined aliases.\n" " \n" @@ -2367,7 +2465,7 @@ msgstr "" " \n" " ΕπιστÏέφει επιτυχία εκτός αν το ΟÎΟΜΑ δεν είναι υπαÏκτό ψευδώνυμο." -#: builtins.c:289 +#: builtins.c:291 msgid "" "Set Readline key bindings and variables.\n" " \n" @@ -2379,32 +2477,37 @@ 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" " \t\t\t\tKEYSEQ is entered.\n" -" -X List key sequences bound with -x and associated commands\n" +" -X List key sequences bound with -x and associated " +"commands\n" " in a form that can be reused as input.\n" " \n" " Exit Status:\n" " bind returns 0 unless an unrecognized option is given or an error occurs." msgstr "" -#: builtins.c:328 +#: builtins.c:330 msgid "" "Exit for, while, or until loops.\n" " \n" @@ -2415,7 +2518,7 @@ msgid "" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" -#: builtins.c:340 +#: builtins.c:342 msgid "" "Resume for, while, or until loops.\n" " \n" @@ -2426,20 +2529,21 @@ msgid "" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" -#: builtins.c:352 +#: builtins.c:354 msgid "" "Execute shell builtins.\n" " \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" " not a shell builtin.." msgstr "" -#: builtins.c:367 +#: builtins.c:369 msgid "" "Return the context of the current subroutine call.\n" " \n" @@ -2455,20 +2559,26 @@ msgid "" " is invalid." msgstr "" -#: builtins.c:385 +#: builtins.c:387 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" @@ -2484,15 +2594,17 @@ msgid "" " \t\tattributes as a directory containing the file attributes\n" " \n" " The default is to follow symbolic links, as if `-L' were specified.\n" -" `..' is processed by removing the immediately previous pathname component\n" +" `..' is processed by removing the immediately previous pathname " +"component\n" " back to a slash or the beginning of DIR.\n" " \n" " Exit Status:\n" -" Returns 0 if the directory is changed, and if $PWD is set successfully when\n" +" Returns 0 if the directory is changed, and if $PWD is set successfully " +"when\n" " -P is used; non-zero otherwise." msgstr "" -#: builtins.c:423 +#: builtins.c:425 msgid "" "Print the name of the current working directory.\n" " \n" @@ -2520,7 +2632,7 @@ msgstr "" " ΕπιστÏέφει 0 εκτός αν δίνεται μη έγκυÏη επιλογή ή ο Ï„Ïέχων κατάλογος\n" " δεν μποÏεί να διαβαστεί." -#: builtins.c:440 +#: builtins.c:442 msgid "" "Null command.\n" " \n" @@ -2536,7 +2648,7 @@ msgstr "" " Κατάσταση εξόδου:\n" " Πάντα επιτυχία." -#: builtins.c:451 +#: builtins.c:453 msgid "" "Return a successful result.\n" " \n" @@ -2544,7 +2656,7 @@ msgid "" " Always succeeds." msgstr "" -#: builtins.c:460 +#: builtins.c:462 msgid "" "Return an unsuccessful result.\n" " \n" @@ -2552,12 +2664,13 @@ msgid "" " Always fails." msgstr "" -#: builtins.c:469 +#: builtins.c:471 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" @@ -2570,7 +2683,7 @@ msgid "" " Returns exit status of COMMAND, or failure if COMMAND is not found." msgstr "" -#: builtins.c:488 +#: builtins.c:490 msgid "" "Set variable values and attributes.\n" " \n" @@ -2601,7 +2714,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. The `-g' option suppresses this behavior.\n" " \n" " Exit Status:\n" @@ -2609,14 +2723,14 @@ msgid "" " assignment error occurs." msgstr "" -#: builtins.c:528 +#: builtins.c:530 msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" -#: builtins.c:536 +#: builtins.c:538 msgid "" "Define local variables.\n" " \n" @@ -2631,11 +2745,12 @@ msgid "" " assignment error occurs, or the shell is not executing a function." msgstr "" -#: builtins.c:553 +#: builtins.c:555 msgid "" "Write arguments to the standard output.\n" " \n" -" Display the ARGs, separated by a single space character and followed by a\n" +" Display the ARGs, separated by a single space character and followed by " +"a\n" " newline, on the standard output.\n" " \n" " Options:\n" @@ -2664,7 +2779,7 @@ msgid "" " Returns success unless a write error occurs." msgstr "" -#: builtins.c:589 +#: builtins.c:591 msgid "" "Write arguments to the standard output.\n" " \n" @@ -2677,7 +2792,7 @@ msgid "" " Returns success unless a write error occurs." msgstr "" -#: builtins.c:604 +#: builtins.c:606 msgid "" "Enable and disable shell builtins.\n" " \n" @@ -2704,18 +2819,19 @@ msgid "" " Returns success unless NAME is not a shell builtin or an error occurs." msgstr "" -#: builtins.c:632 +#: builtins.c:634 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" " Returns exit status of command or success if command is null." msgstr "" -#: builtins.c:644 +#: builtins.c:646 msgid "" "Parse option arguments.\n" " \n" @@ -2756,12 +2872,13 @@ msgid "" " encountered or an error occurs." msgstr "" -#: builtins.c:686 +#: builtins.c:688 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" @@ -2769,14 +2886,16 @@ msgid "" " -c\texecute COMMAND with an empty environment\n" " -l\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 "" -#: builtins.c:707 +#: builtins.c:709 msgid "" "Exit the shell.\n" " \n" @@ -2784,25 +2903,28 @@ msgid "" " is that of the last command executed." msgstr "" -#: builtins.c:716 +#: builtins.c:718 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 "" -#: builtins.c:726 +#: builtins.c:728 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" @@ -2816,10 +2938,11 @@ 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:756 +#: builtins.c:758 msgid "" "Move job to the foreground.\n" " \n" @@ -2831,24 +2954,27 @@ msgid "" " Status of command placed in foreground, or failure if an error occurs." msgstr "" -#: builtins.c:771 +#: builtins.c:773 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" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:785 +#: builtins.c:787 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\tforget the remembered location of each NAME\n" @@ -2866,7 +2992,7 @@ msgid "" " Returns success unless NAME is not found or an invalid option is given." msgstr "" -#: builtins.c:810 +#: builtins.c:812 msgid "" "Display information about builtin commands.\n" " \n" @@ -2884,10 +3010,11 @@ 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:834 +#: builtins.c:836 msgid "" "Display or manipulate the history list.\n" " \n" @@ -2896,14 +3023,14 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" +" \t\tand append them to the history list\n" " -r\tread the history file and append the contents to the history\n" " \t\tlist\n" " -w\twrite the current history to the history file\n" -" \t\tand append them to the history list\n" " \n" " -p\tperform history expansion on each ARG and display the result\n" " \t\twithout storing it in the history list\n" @@ -2914,13 +3041,14 @@ 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 "" -#: builtins.c:870 +#: builtins.c:872 msgid "" "Display status of jobs.\n" " \n" @@ -2944,7 +3072,7 @@ msgid "" " If -x is used, returns the exit status of COMMAND." msgstr "" -#: builtins.c:897 +#: builtins.c:899 msgid "" "Remove jobs from current shell.\n" " \n" @@ -2961,7 +3089,7 @@ msgid "" " Returns success unless an invalid option or JOBSPEC is given." msgstr "" -#: builtins.c:916 +#: builtins.c:918 msgid "" "Send a signal to a job.\n" " \n" @@ -2974,6 +3102,7 @@ msgid "" " -n sig\tSIG is a signal number\n" " -l\tlist the signal names; if arguments follow `-l' they are\n" " \t\tassumed to be signal numbers for which names should be listed\n" +" -L\tsynonym for -l\n" " \n" " Kill is a shell builtin for two reasons: it allows job IDs to be used\n" " instead of process IDs, and allows processes to be killed if the limit\n" @@ -2983,14 +3112,15 @@ msgid "" " Returns success unless an invalid option is given or an error occurs." msgstr "" -#: builtins.c:939 +#: builtins.c:942 msgid "" "Evaluate arithmetic expressions.\n" " \n" " 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" @@ -3027,18 +3157,21 @@ msgid "" " If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise." msgstr "" -#: builtins.c:984 +#: builtins.c:987 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" @@ -3050,7 +3183,8 @@ msgid "" " -n nchars\treturn after reading NCHARS characters rather than waiting\n" " \t\tfor a newline, but honor a delimiter if fewer than\n" " \t\tNCHARS characters are read before the delimiter\n" -" -N nchars\treturn only after reading exactly NCHARS characters, unless\n" +" -N nchars\treturn only after reading exactly NCHARS characters, " +"unless\n" " \t\tEOF is encountered or read times out, ignoring any\n" " \t\tdelimiter\n" " -p prompt\toutput the string PROMPT without a trailing newline before\n" @@ -3068,12 +3202,14 @@ msgid "" " -u fd\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" -" (in which case it's greater than 128), a variable assignment error occurs,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out\n" +" (in which case it's greater than 128), a variable assignment error " +"occurs,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" -#: builtins.c:1031 +#: builtins.c:1034 msgid "" "Return from a shell function.\n" " \n" @@ -3085,7 +3221,7 @@ msgid "" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -#: builtins.c:1044 +#: builtins.c:1047 msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3128,7 +3264,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" @@ -3152,7 +3289,8 @@ msgid "" " by default when the shell is interactive.\n" " -P If set, do not resolve symbolic links when executing commands\n" " such as cd which change the current directory.\n" -" -T If set, the DEBUG trap is inherited by shell functions.\n" +" -T If set, the DEBUG and RETURN traps are inherited by shell " +"functions.\n" " -- Assign any remaining arguments to the positional parameters.\n" " If there are no remaining arguments, the positional parameters\n" " are unset.\n" @@ -3169,7 +3307,7 @@ msgid "" " Returns success unless an invalid option is given." msgstr "" -#: builtins.c:1129 +#: builtins.c:1132 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3181,7 +3319,8 @@ msgid "" " -n\ttreat each NAME as a name reference and unset the variable itself\n" " \t\trather than the variable it references\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" @@ -3190,12 +3329,13 @@ msgid "" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" -#: builtins.c:1151 +#: builtins.c:1154 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" @@ -3208,7 +3348,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1170 +#: builtins.c:1173 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -3229,7 +3369,7 @@ msgid "" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" -#: builtins.c:1192 +#: builtins.c:1195 msgid "" "Shift positional parameters.\n" " \n" @@ -3240,7 +3380,7 @@ msgid "" " Returns success unless N is negative or greater than $#." msgstr "" -#: builtins.c:1204 builtins.c:1219 +#: builtins.c:1207 builtins.c:1222 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -3254,7 +3394,7 @@ msgid "" " FILENAME cannot be read." msgstr "" -#: builtins.c:1235 +#: builtins.c:1238 msgid "" "Suspend shell execution.\n" " \n" @@ -3268,7 +3408,7 @@ msgid "" " Returns success unless job control is not enabled or an error occurs." msgstr "" -#: builtins.c:1251 +#: builtins.c:1254 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3302,7 +3442,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" @@ -3323,7 +3464,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" @@ -3349,7 +3491,7 @@ msgid "" " false or an invalid argument is given." msgstr "" -#: builtins.c:1333 +#: builtins.c:1336 msgid "" "Evaluate conditional expression.\n" " \n" @@ -3357,22 +3499,24 @@ msgid "" " be a literal `]', to match the opening `['." msgstr "" -#: builtins.c:1342 +#: builtins.c:1345 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:1354 +#: builtins.c:1357 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" @@ -3381,29 +3525,37 @@ 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" -" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command. If\n" -" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or a\n" -" script run by the . or source builtins finishes executing. A SIGNAL_SPEC\n" -" of ERR means to execute ARG each time a command's failure would cause the\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. " +"If\n" +" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or " +"a\n" +" script run by the . or source builtins finishes executing. A " +"SIGNAL_SPEC\n" +" of ERR means to execute ARG each time a command's failure would cause " +"the\n" " shell to exit when the -e option is enabled.\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:1390 +#: builtins.c:1393 msgid "" "Display information about command type.\n" " \n" @@ -3429,14 +3581,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:1421 +#: builtins.c:1424 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" @@ -3480,7 +3634,7 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1471 +#: builtins.c:1474 msgid "" "Display or set file mode mask.\n" " \n" @@ -3498,14 +3652,16 @@ msgid "" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" -#: builtins.c:1491 +#: builtins.c:1494 msgid "" "Wait for job completion and return exit status.\n" " \n" -" Waits for each process identified by an ID, which may be a process ID or a\n" +" Waits for each process identified by an 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 that job's pipeline.\n" " \n" " If the -n option is supplied, waits for the next job to terminate and\n" @@ -3516,20 +3672,22 @@ msgid "" " option is given." msgstr "" -#: builtins.c:1512 +#: builtins.c:1515 msgid "" "Wait for process completion and return exit status.\n" " \n" -" Waits for each process specified by a PID and reports its termination status.\n" +" Waits for each process specified by a PID and reports its termination " +"status.\n" " If PID is not given, waits for all currently active child processes,\n" " and the return status is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of the last PID; fails if PID is invalid or an invalid\n" +" Returns the status of the last PID; fails if PID is invalid or an " +"invalid\n" " option is given." msgstr "" -#: builtins.c:1527 +#: builtins.c:1530 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -3542,7 +3700,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1541 +#: builtins.c:1544 msgid "" "Arithmetic for loop.\n" " \n" @@ -3559,7 +3717,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1559 +#: builtins.c:1562 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -3579,7 +3737,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1580 +#: builtins.c:1583 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -3595,7 +3753,7 @@ msgid "" " The return status is the return status of PIPELINE." msgstr "" -#: builtins.c:1597 +#: builtins.c:1600 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -3606,23 +3764,28 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1609 +#: builtins.c:1612 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:1626 +#: builtins.c:1629 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -3633,7 +3796,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1638 +#: builtins.c:1641 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -3644,7 +3807,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1650 +#: builtins.c:1653 msgid "" "Create a coprocess named NAME.\n" " \n" @@ -3654,15 +3817,16 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" -#: builtins.c:1664 +#: builtins.c:1667 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" @@ -3670,7 +3834,7 @@ msgid "" " Returns success unless NAME is readonly." msgstr "" -#: builtins.c:1678 +#: builtins.c:1681 msgid "" "Group commands as a unit.\n" " \n" @@ -3681,7 +3845,7 @@ msgid "" " Returns the status of the last command executed." msgstr "" -#: builtins.c:1690 +#: builtins.c:1693 msgid "" "Resume job in foreground.\n" " \n" @@ -3695,7 +3859,7 @@ msgid "" " Returns the status of the resumed job." msgstr "" -#: builtins.c:1705 +#: builtins.c:1708 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -3706,13 +3870,16 @@ msgid "" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" -#: builtins.c:1717 +#: builtins.c:1720 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" @@ -3731,7 +3898,7 @@ msgid "" " 0 or 1 depending on value of EXPRESSION." msgstr "" -#: builtins.c:1743 +#: builtins.c:1746 msgid "" "Common shell variable names and usage.\n" " \n" @@ -3785,7 +3952,7 @@ msgid "" " \t\tcommands should be saved on the history list.\n" msgstr "" -#: builtins.c:1800 +#: builtins.c:1803 msgid "" "Add directories to stack.\n" " \n" @@ -3816,7 +3983,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1834 +#: builtins.c:1837 msgid "" "Remove directories from stack.\n" " \n" @@ -3843,7 +4010,7 @@ msgid "" " change fails." msgstr "" -#: builtins.c:1864 +#: builtins.c:1867 msgid "" "Display directory stack.\n" " \n" @@ -3872,12 +4039,13 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1895 +#: builtins.c:1898 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" @@ -3892,7 +4060,7 @@ msgid "" " given or OPTNAME is disabled." msgstr "" -#: builtins.c:1916 +#: builtins.c:1919 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -3900,36 +4068,45 @@ 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" " 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" -" %(fmt)T\toutput the date-time string resulting from using FMT as a format\n" +" %(fmt)T\toutput the date-time string resulting from using FMT as a " +"format\n" " \t string for strftime(3)\n" " \n" " The format is re-used as necessary to consume all of the arguments. If\n" " there are fewer arguments than the format requires, extra format\n" -" specifications behave as if a zero value or null string, as appropriate,\n" +" specifications behave as if a zero value or null string, as " +"appropriate,\n" " had been supplied.\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:1950 +#: builtins.c:1953 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" @@ -3949,25 +4126,29 @@ msgid "" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -#: builtins.c:1978 +#: builtins.c:1981 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:1993 +#: builtins.c:1996 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 being executed. If no OPTIONs are given, 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 being executed. If no OPTIONs are given, " +"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" @@ -3989,21 +4170,26 @@ msgid "" " have a completion specification defined." msgstr "" -#: builtins.c:2023 +#: builtins.c:2026 msgid "" "Read lines from the standard input into an indexed array variable.\n" " \n" -" Read lines from the standard input into the indexed array variable ARRAY, or\n" -" from file descriptor FD if the -u option is supplied. The variable MAPFILE\n" +" Read lines from the standard input into the indexed array variable " +"ARRAY, or\n" +" from file descriptor FD if the -u option is supplied. The variable " +"MAPFILE\n" " is the default ARRAY.\n" " \n" " Options:\n" " -d delim\tUse DELIM to terminate lines, instead of newline\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\tRemove a trailing DELIM from each line read (default newline)\n" -" -u fd\tRead lines from file descriptor FD instead of the standard input\n" +" -u fd\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\n" " \t\t\tCALLBACK\n" @@ -4016,15 +4202,17 @@ msgid "" " element to be assigned and the line to be assigned to that element\n" " as additional arguments.\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" -" Returns success unless an invalid option is given or ARRAY is readonly or\n" +" Returns success unless an invalid option is given or ARRAY is readonly " +"or\n" " not an indexed array." msgstr "" -#: builtins.c:2059 +#: builtins.c:2062 msgid "" "Read lines from a file into an array variable.\n" " \n" @@ -4033,3 +4221,15 @@ msgstr "" "Ανάγνωση γÏαμμών από αÏχείο σε μεταβλητή Ï„Ïπου πίνακα.\n" " \n" " Συνώνημο του «mapfile»." + +#~ msgid ":" +#~ msgstr ":" + +#~ msgid "true" +#~ msgstr "αληθής" + +#~ msgid "false" +#~ msgstr "ψευδής" + +#~ msgid "times" +#~ msgstr "times" diff --git a/po/en@boldquot.gmo b/po/en@boldquot.gmo index c45372c0465a90a56cce008b2d9ae9c872f2aee5..65c693b6e63103ae8a055d81f6f2259c58878fa1 100644 GIT binary patch delta 13661 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 VDtE}-K=Ish1L?ZRxq+7o{TECZuOa{d delta 12733 zcmZA62Xqz10><%n4_2pvM`y@lRG=prUa?=>L3ML+~Dy^BG>P!y>G(o~e7s8p3E zpp=Mo;UQJ3B0kXf|8|CRcuvU`#&DnAI3B z#F!_AmCI4Vm{Q;&r%V~FjrFhyj>Yu20yE=AOoKZx0{37zUcv(S2j;*W6^+SmOwg1i zl8%f9_yV>-73k(1iMr97F1-;|k-eB7Phl87#7ImPWh+n=vym=?IWZdZVtXus30R)z zoA-#+BIA2hi_%pxrY4rdtk@4#p|Q^Ss2hBUh4474g@2%WFhgZqu@Xp@X^fFL28-cR z=N>H2^UZZdFn1NdOH4CoH!Mf~Yp5Prje6i-RE4hM3-}asVOUk$!V;*SX^7ddC+fP9 zF1;ADklutr75tiry5=lq$3IaO%3RH+>pEMbdZa&=#c?iw1FGe_Q8zx1x$%xmr>kzq zJ`d(3zb1y`E7j?L)x0km1#trEMk}!-?nJfxI_AO98n)$yQ5C6)x?u}cOXE=udL1J% z33cD?sD}NFx$!QR!Sprhf8D4W10IPlVh$XDnQ#&^VND`xD0ZWI>aNSr$i&gCu7kQy z7t~}N>e3TX_nVKZ=!d8Z?7>`kHb^87k>61d%);7I3nEZAu8o>Bon8K9)X=Ozwde=u zuc#h-idu%n>)7k6q9$P%%!l(ZFK$K+LGU1v3`8!V9&{5mhFR;{8x=-XEDF_AG&lv%R5Jz9+g->33C=*V*JL;8c& z#-ycO#0P9y89(*hu!9b~1IwZz-_;mNBg;F!VP&X8TZGei-ZW;0t(#2SnVbrL-jE zcZPy=g(vg`4*i>6U>#2|p4mYImS*uxbFOcf!!r$W6^3E(8WAdK{zP^0*_@u)#{;e+ z_ca^xdj5W}6*VOLFdTnE^~i0ErNWP~6zOL9J^%Ya0_G-PA2X32=p2JRwf<)inMDh3mbNz>S=KWQkC}=a>4_ob?2Yq9dHx<=0oi9vQ&h!T zp?1FB7=a_PC@#bzxC4vhMN|btE7=~&hq-yasX|1{Bo=jp{#X!aVm{n}+Ozkgmd_Q` zGP{SmacE`F|B$MHVX@v5}rUkAhfEzaSYBU-5OPqYgiL=RYk~CWw0#vN7Z~0sv_G_6}yOa;~LCY$5vzys)bikLzKC$9s5eCbTk&mcvQKWm=-_A^7uJw2(F`gGFLs%|GrSo z*#b3(g1v~StHz*)U^Qyle1e)2$53B1u3&Eb3(H`5wC&RRsB~YKUVvJbU!W>*0Hg6w z)Lg1j-!>!$*++sVmWXc98}-0>sFtn4Xgq+bSo#>-)wxhzSp_vG;!xL*NA<)8cm6o4 z0>8QQ`5V|FeGw~=KMbq#e6x~B92uvv1eR)OAJhufGec3UVhO4THeezA2J7K9Y>g!v z*>dAhJvJBp9>waUKf$(m6E(MD8dG7OZ~76@te%HC@ng)02T&C{h1&W4L3M4`CUy%h zh}RE1tbT{i?ZNylO=eu7%}fu`1QOij8N2DKi`5Yc+9in=fsRiUYiJ+{dOE(%kmQOQ>bo3DpCmQ9U*l)iaAw72bi`NqP0m0IyKHix)_Ymh17e-SQC+H?~Q+2d>jVw^2d_ic~Oa2BeeCs3;* zT}wMDgVl*>k_|)MXo>SX)G~R9s!-8aY)fKML)HN!F&@o?J*x1+}ND5_$&P!-AD+D@VdsGYDUYHmzNRqQ=f7q54I ziK^gHR0Z#&=2+%7+CNx-Wr*m;9Z?mTf_m^$)Q84)RF|DcZ8(|QdZrrI!m2m|H6$OR zy8ImK!ziqst$0mmU#vy`0@Ma~4Ab&_^N@&I@C3E&vbMLAD+;wLTB9B`2-ULHsC^(A z^`LK2Exd=iKD>i1Um4Sp9)Mx^8ma+Pom(-eS$xSA2xCHfKv;x`t&92U@f7SRT8S47qQ9Y5di>-Mf z)N(3=I$zh>26dx>sFu%0^~`2eg?FP`d;v9g?w~4=ud7|gg;6_gwXUpxO^R4DvW-?=2fTM%lDz~dkM8K+;{1Wz5U4= zH2H~WEb5@TtPQH>{ZW&1GU`TaP|I`=s^zy(TWp4S+wx+liqt{fFAmkxS5XZbi;=hl zb>AJBUF-iG5!LJgYO-YNV{cRwBT2VFb?so(=lN9B&Nv@66#Gy;^}ywa^|i||8vVI~ znv5e{dNS&M?_f@zZ#EI}w@g&aFQ8iXC+dOOUbQVKh*~Z6P;;i6%b$iCn$@VGI^n#5 z>M_&LF2ho&>uO*OO6q=cWcdGl&O;P4mnl95((sy{C7e>tn~bM zLJ_My|DDi&Y)ARSYd!y+P>~I`LM4Ml)B{nthypSAH|aB*J^!81&s#k6ElvLJGtcZH zf9@X7Oy)r?_j>+2p_AWmJr)1{ThBb@{JHNuvx@U)_S^de5AnN#^WzWmV-|}X;X{W8 z{BYFs-w6dzAGhD}TAuX$mqH!z6gN7BGjP)>yO&o@v6Hht>YY$W)FiES*4h>|+lQeh z*AzU2`%rTv@tnPWE$X^m7^(07XNYJ_pCChL(w(L*qn+syX2V^zQr#556hb#7<8L&M7ZQPk9R_>zbkj_Bx`<`3<`F{Wfa)` z$c|O_$8;Svh{w)6AZsAtzY`jQnylB-B188OZ==Z&@ZSmjmO0?R6I#ssn3u>O{6fGi zQN_Xo{!p~d889KtKNFHWU>IJLHc!BRDfCrdYpQ%)NPcsqF=kQzfd5WtRDpp1wfqpO z%a3DE9&i=!@_=TA1Ex9+saY&wnv)(;Hek4=*~!e-JE1cbNz-M2)DM_oJGH23!2j0U zA2k`b;APy28iG~L0_GSG*o55IjBgR}_k(GuAxT2*8yiqPvI}FW@L{YLou2pub>l6)1OA82Ueq_9GpL>NDypTAP~ViY#|QlHhS8|cj^S7dR|Sb^Pfx)j z_z3l-Ghd&8zxBqTZqN_Q;sPvzd$2g(M0I60UIZ7yGN>EJq8>CE^&#~s>QnPFYO4;s z8t_+Dur?9x(Tz|QX@{!FC{zpIMYZT7R1fV&Eytr6g+HMln4zDw9_j%jQ1{)0^KmDt zBCYxd{5K<$kbNR(z9OPY_7v5Uv;zYE=W`_LfiXxy6NhR+BG$nzs2;hEs(9Xkwnu7V zG19$IJvYnw8EWh=I@1qQPX~>u>_=Gl7)gN%SP@rXVLa~Ak5D%*IoKNK9EF;^%TSZ= z1nN`uGOB`Rh;2|gtVuEsb$&MH;rV7Akx1N&dhiuofH{T+{C7edP@nHDhuIcRL=Dk; z)XsUtrO%)$Y=+yRD1ut9?NQfvM-4$Dswa11P+u6%6Oj*5dv*E|wyO%FhM+lWHg`bH ziBYKXvr%7MR$v+2fttM6usUW=u<0hKo*9Iyz*vmN4GFA&O{QC9XzYJSZ6ujrvo|b^ zdSD!?WxX*PXP_!}0M(T#s1KEgs4fp1X|Jz?S|$Ba=if$EV3Rw4b|mXxW15ctvuL?g zKy3^?Fb)@?mfLmIgR+jcJyRaFDmtKgpg(H)O~K~47F**3RJo?F+aBwHs`wC84~+{F zX-i}qsv?=j*cw+x&FapmZ?j`jW4!=Xp%ti|?;xsc&!Kwm7HVj`H*AG+qOPlnRj>)h z;yBdu41Vt-7m%IS+(RwLN2nq3#@Y+>pehuHnp8tkJKkvLWGqd3E^7UMflcrsYO>bm z9lhpI5A2OWBtK}b5YcQ*H{Q0igfkjdf%d2ihhZeXh3ct~upp+Oy7)1U#`FxSdSo(c z$lgZvz!p@GeTkX_N3pcl|KCJ3NlHzy1z*ATq`RS7xE&kfUaW_q6Yb<`ikh6Sp;paI z)Z|-^nhQsq_fTCOKFLnPVyGUjk3)FAX--5n+ku_%2x=cF#TPxT+s>$+YYtYzZKz3i z1Jx6$rr52xG-`~yqL$+VR0DQ952Nmzg3U19RMvlGBCUw1OJ-noOh!$zyQmxGo@Q-~ z6-bXjRcJM;B}Y)7`#)hMUP1Lh>gjyZz!InmH$)9ZSLcA~tbes&G#RSV`>1t#9d(0L zGi-~CqtcyF6&sJL*jiLYPN3${->Au!f2LgpF{p~QNA+-T=P1mRl`kWXp$X3 zjp47T8)u(o$F?47GPOl@;Rw`Tz6LehFJc4CGuwV~>55ULSD?zDKz$gcnPYpnqO*UH zh?dDJtc5pG%d7aCwgu%;%dQb>w#TDZ#dOq0wH(#56x6K0fqKwmR11sDwbwU6mG6rh zvSk>C!F5E`;_c3>s0W3=WeZeAt&Yad!Kj{k2lc>D(ZetKqamyl;KvFU#EImU$AzTl zst`wWd_wrcCWEFX1xk{U1$FcyyiYn2^);N|A^uM(ei)h4?_bhIKIbMdFRnDkBF zKNx;7`^PY+CYKI=p!&a1+YR`N>YL4rOp-;WUL)y9HlRL zMtzN{MHwBLoh5nbEm zhmx*OC`Y^$;n`8)xw!JqKX=1{#CsB|Qbs@9zu#1E+dqtQy?35a|Qo$Hp3HyPYJ)cJc^kk`opo3kW3g&D8z%$VmRdn z6DAQx5^j*^Mw}QuuknAA6K6==_OtAtROH z@h;ES|7KSz!I_DZX}D2l(w&Kq#Zc4{Mab^rN-rU_C*257;VO6TDCsPOXGbiND}+m& z|C#U+AqU?-{o`%^79vb0^E*OcoBe-(+mO=Rv7Lly;w5w~p$+LiMBl=axBwqx6h1p1 zK8s*g@?XR2gy4QxXs{A4KAE_VsTR|e{A9u-(q}P04~-x+bmjjdf0irjk@tp+KhGob zs}U{|-X(11#;oR5*@Eg_ztke*P4@a#w-zT2e>;;$~A74vYNj+QPj zj`%h|haTZvIPp}3d43-AuN(!}6S5IfyMoK`7GVKluFJcMp)Nj;vT=l^givmJlKjsJ zIS4-x+LHe=7AELeOSng#j;ojn@8heQ{~r*kOsGZtcfuCpX>cP};^yOtHzf=w=$KFb zQmjHaPnbfONO*QkaFM$B79l|SPWTHUjQBc&jy~9>f&SRE*+x7Ip)e19cFZRI>^MU_ zHKF`-c{(@ZSph8U&eb5kXY0udKZhib@97;2*}As+wA4xe4De#NF0K1xzNBNvyo^bw zQ@pUGd&Xv5ovKJDX{GhfM;w2Za>s?5d9M!6g9HUh;`p z@6%Mt5wioKUh;)DUi-8m!+TXss@=t_m?^4k#R`!Xs@1GgqilsLNn^TrdH+8vd1V(} zOZ9uEOQz-}BmPzE`O7*@NKM}PZ~5la8WIJ!%Kdg5SS5?ylHfxcZOuzbMU#QJP7?C2C9TH diff --git a/po/en@boldquot.po b/po/en@boldquot.po index a8b674e3..ca2bb51a 100644 --- a/po/en@boldquot.po +++ b/po/en@boldquot.po @@ -30,10 +30,10 @@ # msgid "" msgstr "" -"Project-Id-Version: GNU bash 4.4-rc1\n" +"Project-Id-Version: GNU bash 4.4-beta2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" -"PO-Revision-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" +"PO-Revision-Date: 2016-07-06 10:32-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -45,46 +45,52 @@ msgstr "" msgid "bad array subscript" msgstr "bad array subscript" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "%s: removing nameref attribute" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: cannot convert indexed to associative array" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: invalid associative array key" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: cannot assign to non-numeric index" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: must use subscript when assigning associative array" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: cannot create: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: cannot find keymap for command" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: first non-whitespace character is not ‘\"’" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "no closing ‘%c’ in %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: missing colon separator" @@ -104,7 +110,7 @@ msgstr "brace expansion: failed to allocate memory for %d elements" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "brace expansion: failed to allocate memory for ‘%s’" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "‘%s’: invalid alias name" @@ -165,11 +171,15 @@ msgstr "" msgid "HOME not set" msgstr "HOME not set" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "too many arguments" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +msgid "null directory" +msgstr "null directory" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD not set" @@ -188,7 +198,7 @@ msgstr "warning: " msgid "%s: usage: " msgstr "%s: usage: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: option requires an argument" @@ -203,7 +213,7 @@ msgstr "%s: numeric argument required" msgid "%s: not found" msgstr "%s: not found" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: invalid option" @@ -213,7 +223,7 @@ msgstr "%s: invalid option" msgid "%s: invalid option name" msgstr "%s: invalid option name" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "‘%s’: not a valid identifier" @@ -322,7 +332,7 @@ msgid "%s: invalid action name" msgstr "%s: invalid action name" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: no completion specification" @@ -335,7 +345,7 @@ msgstr "warning: -F option may not work as you expect" msgid "warning: -C option may not work as you expect" msgstr "warning: -C option may not work as you expect" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "not currently executing completion function" @@ -343,41 +353,47 @@ msgstr "not currently executing completion function" msgid "can only be used in a function" msgstr "can only be used in a function" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: reference variable cannot be an array" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: nameref variable self references not allowed" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" -msgstr "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: circular name reference" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "‘%s’: invalid variable name for name reference" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "cannot use ‘-f’ to make functions" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: readonly function" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: quoted compound array assignment deprecated" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: cannot destroy array variables in this way" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: cannot convert associative to indexed array" @@ -411,7 +427,7 @@ msgstr "%s: not dynamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: cannot delete: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: is a directory" @@ -426,7 +442,7 @@ msgstr "%s: not a regular file" msgid "%s: file is too large" msgstr "%s: file is too large" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: cannot execute binary file" @@ -468,7 +484,7 @@ msgstr "history specification" msgid "%s: cannot open temp file: %s" msgstr "%s: cannot open temp file: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "current" @@ -820,21 +836,21 @@ msgstr "read error: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "can only ‘return’ from a function or sourced script" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "cannot simultaneously unset a function and a variable" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: cannot unset" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: cannot unset: readonly %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: not an array variable" @@ -853,11 +869,11 @@ msgstr "%s: cannot export" msgid "shift count" msgstr "shift count" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "cannot set and unset shell options simultaneously" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: invalid shell option name" @@ -1003,61 +1019,66 @@ msgstr "\atimed out waiting for input: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "cannot redirect standard input from /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: ‘%c’: invalid format character" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "execute_coproc: coproc [%d:%s] still exists" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: maximum eval nesting level exceeded (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximum source nesting level exceeded (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximum function nesting level exceeded (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restricted: cannot specify ‘/’ in command names" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: command not found" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bad interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: cannot execute binary file: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "‘%s’: is a special builtin" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "cannot duplicate fd %d to fd %d" @@ -1132,7 +1153,7 @@ msgstr "%s: expression error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: cannot access parent directories" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "cannot reset nodelay mode for fd %d" @@ -1147,148 +1168,148 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d appears in running job %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "deleting stopped job %d with process group %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) in the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marked as still alive" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no such pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Done" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stopped" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stopped(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Running" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Done(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Unknown status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "child setpgid (%ld to %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No record of process %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: job %d is stopped" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: job has terminated" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: job %d already in background" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: turning on WNOHANG to avoid indefinite block" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: line %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd now: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp failed" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "cannot set terminal process group (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "no job control in this shell" @@ -1441,103 +1462,112 @@ msgstr "here-document at line %d delimited by end-of-file (wanted ‘%s msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: redirection instruction ‘%d’ out of range" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "maximum here-document count exceeded" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "unexpected EOF while looking for matching ‘%c’" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "unexpected EOF while looking for ‘]]’" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntax error in conditional expression: unexpected token ‘%s’" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntax error in conditional expression" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "unexpected token ‘%s’, expected ‘)’" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "expected ‘)’" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "unexpected argument ‘%s’ to conditional unary operator" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "unexpected argument to conditional unary operator" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "unexpected token ‘%s’, conditional binary operator expected" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "conditional binary operator expected" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "unexpected argument ‘%s’ to conditional binary operator" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "unexpected argument to conditional binary operator" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "unexpected token ‘%c’ in conditional command" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "unexpected token ‘%s’ in conditional command" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "unexpected token %d in conditional command" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntax error near unexpected token ‘%s’" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntax error near ‘%s’" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntax error: unexpected end of file" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntax error" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Use “%s†to leave the shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "unexpected EOF while looking for matching ‘)’" @@ -1546,6 +1576,11 @@ msgstr "unexpected EOF while looking for matching ‘)’" msgid "completion: function `%s' not found" msgstr "completion: function ‘%s’ not found" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "programmable_completion: %s: possible retry loop" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1612,44 +1647,48 @@ msgstr "/dev/(tcp|udp)/host/port not supported without networking" msgid "redirection error: cannot duplicate fd" msgstr "redirection error: cannot duplicate fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "could not find /tmp, please create!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp must be a valid directory name" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: invalid option" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "cannot set uid to %d: effective uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "cannot set gid to %d: effective gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "cannot start debugger; debugging mode disabled" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: Is a directory" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "I have no name!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1658,52 +1697,52 @@ msgstr "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU long options:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Shell options:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s or -o option\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Type ‘%s -c “help set‒ for more information about shell " "options.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Type ‘%s -c help’ for more information about shell builtin commands.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use the ‘bashbug’ command to report bugs.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "bash home page: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "General help using GNU software: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: invalid operation" @@ -1877,82 +1916,91 @@ msgstr "Unknown Signal #" msgid "Unknown Signal #%d" msgstr "Unknown Signal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "bad substitution: no closing ‘%s’ in %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: cannot assign list to array member" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "cannot make pipe for process substitution" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "cannot make child for process substitution" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "cannot open named pipe %s for reading" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "cannot open named pipe %s for writing" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "cannot duplicate named pipe %s as fd %d" -#: subst.c:5988 +#: subst.c:5868 +msgid "command substitution: ignored null byte in input" +msgstr "command substitution: ignored null byte in input" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "cannot make pipe for command substitution" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "cannot make child for command substitution" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: cannot duplicate pipe as fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: invalid variable name for name reference" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: bad substitution" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: invalid indirect expansion" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: invalid variable name" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter null or not set" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expression < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: cannot assign in this way" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1960,12 +2008,12 @@ msgstr "" "future versions of the shell will force evaluation as an arithmetic " "substitution" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "bad substitution: no closing “`†in %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "no match: %s" @@ -1998,7 +2046,7 @@ msgstr "%s: unary operator expected" msgid "%s: binary operator expected" msgstr "%s: binary operator expected" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "missing ‘]’" @@ -2023,72 +2071,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: bad signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "error importing function definition for ‘%s’" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shell level (%d) too high, resetting to 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: circular name reference" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no function context at current scope" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: variable may not be assigned value" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: assigning integer to name reference" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no function context at current scope" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s has null exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "invalid character %d in exportstr for %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "no ‘=’ in exportstr for %s" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no global_variables context" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: head of shell_variables not a temporary environment scope" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: cannot open as FILE" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: invalid value for trace file descriptor" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: compatibility value out of range" @@ -2969,11 +3017,11 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Set variable values and attributes.\n" " \n" -" Obsolete. See ‘help declare’." +" A synonym for ‘declare’. See ‘help declare’." #: builtins.c:538 msgid "" @@ -3501,7 +3549,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3533,7 +3581,7 @@ msgstr "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4973,7 +5021,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Create a coprocess named NAME.\n" " \n" @@ -4983,7 +5031,7 @@ msgstr "" " The default NAME is “COPROCâ€.\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." #: builtins.c:1667 msgid "" diff --git a/po/en@quot.gmo b/po/en@quot.gmo index 51bfb7e537671995c681aee9c025918cc2e2ac49..e8a5e8a5e50c18594515510e14cc7364029f9ca8 100644 GIT binary patch delta 13695 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 NK;^=?{J?D`{tIpAzoGyD delta 12765 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 XY+zhSdh*1;{T%5ua?3;Qdn)wb*fV@I diff --git a/po/en@quot.po b/po/en@quot.po index 775209fd..1d6a082a 100644 --- a/po/en@quot.po +++ b/po/en@quot.po @@ -27,10 +27,10 @@ # msgid "" msgstr "" -"Project-Id-Version: GNU bash 4.4-rc1\n" +"Project-Id-Version: GNU bash 4.4-beta2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" -"PO-Revision-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" +"PO-Revision-Date: 2016-07-06 10:32-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -42,46 +42,52 @@ msgstr "" msgid "bad array subscript" msgstr "bad array subscript" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "%s: removing nameref attribute" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: cannot convert indexed to associative array" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: invalid associative array key" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: cannot assign to non-numeric index" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: must use subscript when assigning associative array" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: cannot create: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: cannot find keymap for command" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: first non-whitespace character is not ‘\"’" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "no closing ‘%c’ in %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: missing colon separator" @@ -101,7 +107,7 @@ msgstr "brace expansion: failed to allocate memory for %d elements" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "brace expansion: failed to allocate memory for ‘%s’" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "‘%s’: invalid alias name" @@ -162,11 +168,15 @@ msgstr "" msgid "HOME not set" msgstr "HOME not set" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "too many arguments" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +msgid "null directory" +msgstr "null directory" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD not set" @@ -185,7 +195,7 @@ msgstr "warning: " msgid "%s: usage: " msgstr "%s: usage: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: option requires an argument" @@ -200,7 +210,7 @@ msgstr "%s: numeric argument required" msgid "%s: not found" msgstr "%s: not found" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: invalid option" @@ -210,7 +220,7 @@ msgstr "%s: invalid option" msgid "%s: invalid option name" msgstr "%s: invalid option name" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "‘%s’: not a valid identifier" @@ -319,7 +329,7 @@ msgid "%s: invalid action name" msgstr "%s: invalid action name" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: no completion specification" @@ -332,7 +342,7 @@ msgstr "warning: -F option may not work as you expect" msgid "warning: -C option may not work as you expect" msgstr "warning: -C option may not work as you expect" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "not currently executing completion function" @@ -340,41 +350,47 @@ msgstr "not currently executing completion function" msgid "can only be used in a function" msgstr "can only be used in a function" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: reference variable cannot be an array" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: nameref variable self references not allowed" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" -msgstr "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: circular name reference" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "‘%s’: invalid variable name for name reference" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "cannot use ‘-f’ to make functions" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: readonly function" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: quoted compound array assignment deprecated" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: cannot destroy array variables in this way" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: cannot convert associative to indexed array" @@ -408,7 +424,7 @@ msgstr "%s: not dynamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: cannot delete: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: is a directory" @@ -423,7 +439,7 @@ msgstr "%s: not a regular file" msgid "%s: file is too large" msgstr "%s: file is too large" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: cannot execute binary file" @@ -465,7 +481,7 @@ msgstr "history specification" msgid "%s: cannot open temp file: %s" msgstr "%s: cannot open temp file: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "current" @@ -811,21 +827,21 @@ msgstr "read error: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "can only ‘return’ from a function or sourced script" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "cannot simultaneously unset a function and a variable" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: cannot unset" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: cannot unset: readonly %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: not an array variable" @@ -844,11 +860,11 @@ msgstr "%s: cannot export" msgid "shift count" msgstr "shift count" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "cannot set and unset shell options simultaneously" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: invalid shell option name" @@ -994,61 +1010,66 @@ msgstr "\atimed out waiting for input: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "cannot redirect standard input from /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: ‘%c’: invalid format character" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "execute_coproc: coproc [%d:%s] still exists" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: maximum eval nesting level exceeded (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximum source nesting level exceeded (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximum function nesting level exceeded (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restricted: cannot specify ‘/’ in command names" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: command not found" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bad interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: cannot execute binary file: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "‘%s’: is a special builtin" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "cannot duplicate fd %d to fd %d" @@ -1123,7 +1144,7 @@ msgstr "%s: expression error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: cannot access parent directories" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "cannot reset nodelay mode for fd %d" @@ -1138,148 +1159,148 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d appears in running job %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "deleting stopped job %d with process group %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) in the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marked as still alive" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no such pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Done" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stopped" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stopped(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Running" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Done(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Unknown status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "child setpgid (%ld to %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No record of process %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: job %d is stopped" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: job has terminated" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: job %d already in background" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: turning on WNOHANG to avoid indefinite block" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: line %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd now: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp failed" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "cannot set terminal process group (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "no job control in this shell" @@ -1432,103 +1453,112 @@ msgstr "here-document at line %d delimited by end-of-file (wanted ‘%s’)" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: redirection instruction ‘%d’ out of range" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "maximum here-document count exceeded" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "unexpected EOF while looking for matching ‘%c’" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "unexpected EOF while looking for ‘]]’" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntax error in conditional expression: unexpected token ‘%s’" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntax error in conditional expression" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "unexpected token ‘%s’, expected ‘)’" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "expected ‘)’" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "unexpected argument ‘%s’ to conditional unary operator" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "unexpected argument to conditional unary operator" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "unexpected token ‘%s’, conditional binary operator expected" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "conditional binary operator expected" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "unexpected argument ‘%s’ to conditional binary operator" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "unexpected argument to conditional binary operator" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "unexpected token ‘%c’ in conditional command" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "unexpected token ‘%s’ in conditional command" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "unexpected token %d in conditional command" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntax error near unexpected token ‘%s’" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntax error near ‘%s’" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntax error: unexpected end of file" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntax error" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Use “%s†to leave the shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "unexpected EOF while looking for matching ‘)’" @@ -1537,6 +1567,11 @@ msgstr "unexpected EOF while looking for matching ‘)’" msgid "completion: function `%s' not found" msgstr "completion: function ‘%s’ not found" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "programmable_completion: %s: possible retry loop" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1603,44 +1638,48 @@ msgstr "/dev/(tcp|udp)/host/port not supported without networking" msgid "redirection error: cannot duplicate fd" msgstr "redirection error: cannot duplicate fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "could not find /tmp, please create!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp must be a valid directory name" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: invalid option" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "cannot set uid to %d: effective uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "cannot set gid to %d: effective gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "cannot start debugger; debugging mode disabled" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: Is a directory" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "I have no name!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1649,49 +1688,49 @@ msgstr "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU long options:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Shell options:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s or -o option\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Type ‘%s -c “help setâ€â€™ for more information about shell options.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Type ‘%s -c help’ for more information about shell builtin commands.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use the ‘bashbug’ command to report bugs.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "bash home page: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "General help using GNU software: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: invalid operation" @@ -1865,82 +1904,91 @@ msgstr "Unknown Signal #" msgid "Unknown Signal #%d" msgstr "Unknown Signal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "bad substitution: no closing ‘%s’ in %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: cannot assign list to array member" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "cannot make pipe for process substitution" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "cannot make child for process substitution" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "cannot open named pipe %s for reading" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "cannot open named pipe %s for writing" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "cannot duplicate named pipe %s as fd %d" -#: subst.c:5988 +#: subst.c:5868 +msgid "command substitution: ignored null byte in input" +msgstr "command substitution: ignored null byte in input" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "cannot make pipe for command substitution" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "cannot make child for command substitution" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: cannot duplicate pipe as fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: invalid variable name for name reference" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: bad substitution" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: invalid indirect expansion" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: invalid variable name" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter null or not set" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expression < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: cannot assign in this way" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1948,12 +1996,12 @@ msgstr "" "future versions of the shell will force evaluation as an arithmetic " "substitution" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "bad substitution: no closing “`†in %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "no match: %s" @@ -1986,7 +2034,7 @@ msgstr "%s: unary operator expected" msgid "%s: binary operator expected" msgstr "%s: binary operator expected" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "missing ‘]’" @@ -2011,72 +2059,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: bad signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "error importing function definition for ‘%s’" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shell level (%d) too high, resetting to 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: circular name reference" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no function context at current scope" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: variable may not be assigned value" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: assigning integer to name reference" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no function context at current scope" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s has null exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "invalid character %d in exportstr for %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "no ‘=’ in exportstr for %s" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no global_variables context" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: head of shell_variables not a temporary environment scope" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: cannot open as FILE" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: invalid value for trace file descriptor" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: compatibility value out of range" @@ -2952,11 +3000,11 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Set variable values and attributes.\n" " \n" -" Obsolete. See ‘help declare’." +" A synonym for ‘declare’. See ‘help declare’." #: builtins.c:538 msgid "" @@ -3479,7 +3527,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3510,7 +3558,7 @@ msgstr "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4942,7 +4990,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Create a coprocess named NAME.\n" " \n" @@ -4952,7 +5000,7 @@ msgstr "" " The default NAME is “COPROCâ€.\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." #: builtins.c:1667 msgid "" diff --git a/po/eo.gmo b/po/eo.gmo index f1653ddd0ea1521f2d0a98edf2d4b7090d6f9522..9d00e55ec37629f1f474d4e5248bd1952183d656 100644 GIT binary patch delta 12265 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 diff --git a/po/eo.po b/po/eo.po index a5f09e6c..740069c5 100644 --- a/po/eo.po +++ b/po/eo.po @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-21 14:06+0300\n" "Last-Translator: Sergio Pokrovskij \n" "Language-Team: Esperanto \n" @@ -44,47 +44,53 @@ msgstr "" msgid "bad array subscript" msgstr "Misa tabel-indico" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: Maleblas konverti entjerindican tabelon en asocitabelon" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: Misa asocitabela Ålosilo" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: Valorizato havu nombran indicon" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: Valorizante per asocitabelo uzu indicon" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: Ne prosperis krei: %s" # XXX: internal_error -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: Mankas klavartabelo por komando" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: La unua ne-blankspaca signo ne estas „\"‟" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "Mankas ferma „%c‟ en %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: Mankas disiga dupunkto" @@ -107,7 +113,7 @@ msgstr "vinkulmalvolvo: Fiaskis memorhavigo por %d elementoj" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "vinkulmalvolvo: Fiaskis memorhavigo por %s" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "%s: MaltaÅ­gas por uzi kiel alinomon" @@ -168,11 +174,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME malhavas valoron" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "Tro multe da argumentoj" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "Ne estas alia dosierujo" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD malhavas valoron" @@ -191,7 +202,7 @@ msgstr "Averto: " msgid "%s: usage: " msgstr "%s: Uzmaniero: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: La opcio bezonas argumenton" @@ -206,7 +217,7 @@ msgstr "%s: Necesas nombra argumento" msgid "%s: not found" msgstr "%s: Ne trovita" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: Misa opcio" @@ -216,7 +227,7 @@ msgstr "%s: Misa opcio" msgid "%s: invalid option name" msgstr "%s: Misa opcinomo" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%s‟ ne estas taÅ­ga nomo" @@ -325,7 +336,7 @@ msgid "%s: invalid action name" msgstr "%s: Misa nomo de ago" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: Kompletigo ne estas specifita" @@ -338,7 +349,7 @@ msgstr "Averto: La opcio -F povas funkcii alie ol vi eble supozas" msgid "warning: -C option may not work as you expect" msgstr "Averto: La opcio -C povas funkcii alie ol vi eble supozas" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "Ni ne estas en plenumado de kompletiga funkcio" @@ -346,41 +357,47 @@ msgstr "Ni ne estas en plenumado de kompletiga funkcio" msgid "can only be used in a function" msgstr "Uzeblas nur ene de funkcio" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: Referenca variablo ne povas esti tabelo" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: Nomreferenca variablo ne referencu sin mem" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: Cikla nomreferenco" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: Misa variablonomo por nomreferenco" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "„-f‟ ne estas uzebla por fari funkciojn" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: Nurlega funkcio" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: Tutopa tabelvalorizo citila estas evitinda" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: Ĉi tiel ne eblas neniigi tabelvariablojn" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: Ne eblas konverti asocitabelon en entjerindican tabelon" @@ -414,7 +431,7 @@ msgstr "%s: Ne Åargita dinamike" msgid "%s: cannot delete: %s" msgstr "%s: Ne eblas forigi: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s estas dosierujo" @@ -429,7 +446,7 @@ msgstr "%s: Ne ordinara dosiero" msgid "%s: file is too large" msgstr "%s: Tro granda dosiero" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: Neplenumebla duuma dosiero" @@ -471,7 +488,7 @@ msgstr "Historia indiko" msgid "%s: cannot open temp file: %s" msgstr "%s: Ne malfermiÄis labordosiero: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "kuranta" @@ -823,21 +840,21 @@ msgid "can only `return' from a function or sourced script" msgstr "" "„return‟ sencas nur en funkcio aÅ­ punkte vokita („.‟, „source‟) skripto" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "Ne eblas samtempe malaktivigi funkcion kaj variablon" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: Malaktivigo fiaskis" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: Malaktivigo fiaskis: nurlega %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: Ne tabela variablo" @@ -856,11 +873,11 @@ msgstr "%s: Ne eblas eksporti" msgid "shift count" msgstr "Nombrilo de „shift‟" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "Maleblas samtempe Åalti kaj malÅalti Åelan opcion" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: Misa nomo de Åela opcio" @@ -1010,62 +1027,67 @@ 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:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c‟: Misa formatsigno" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "Eraro en dukto" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: La ingado de „eval“oj superis sian maksimumon (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: La ingado de „source“oj superis sian maksimumon (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: La ingado de funkcioj superis sian maksimumon (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: Malpermesitas uzi „/‟ en komandonomoj" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: Komando ne trovita" # XXX: internal error: -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: Misa interpretilo" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: Neplenumebla duuma dosiero: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "„%s‟ estas primitiva komando speciala" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "Ne eblas kunnomumi al dosiernumero %d la dosiernumeron %d" @@ -1140,7 +1162,7 @@ msgstr "%s: Misa esprimo\n" msgid "getcwd: cannot access parent directories" msgstr "getwd: Ne eblas atingi patrajn dosierujojn" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "Ne eblas reÅalti senprokrastan reÄimon por dosiernumero %d" @@ -1156,151 +1178,151 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: La nova dosiernumero (fd %d) jam havas bufron" # ZZZ: sys_error (_("start_pipeline: pgrp pipe")); -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: procezgrupo dukto" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "Forke farita proceznumero %d aperas en rulata laboro %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Haltigita laboro %d kun procezgrupo %ld estas forigata" # ifdef DEBUG ... internal_warning(): -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) in the_pipeline" # ifdef DEBUG ... internal_warning(): -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marked as still alive" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Ne estas tia proceznumero (%ld)!" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signalo %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Farite" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Haltigita" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Haltigita(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Rulata" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Farite(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Eliro %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Nekonata stato" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(nekropsio elÅutita)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (labordosierujo: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "provo atribui (setpgid) procezgrupon %2$ld de la procezido %1$ld" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Malestas informoj pri procezo %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: La laboro %d estas haltigita" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: La laboro finiÄis" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: La laboro %d jam estas fona" # XXX: internal warning: -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: WNOHANG iÄas Åaltita por eviti nedifintan pendiÄon" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: linio %dª: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr "(nekropsio elÅutita)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(nun labordosierujo estas: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp fiaskis" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: liniaranÄo" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid()" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "ne prosperis atribui grupon (%d) de terminala procezo" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Ĉi tiu Åelo ne disponigas laborregadon" @@ -1476,103 +1498,110 @@ msgstr "Tuj-dokumenton de linio %d limigas dosierfino (mankas „%s‟)" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: Alidirektada komando „%d‟ ekster sia variejo" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "La nombro de tuj-documentoj superis sian maksimumon" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "Neatendita dosierfino dum serĉo de responda „%c‟" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "Neatendita dosierfino dum serĉo de „]]‟" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "Sintaksa eraro en kondiĉa esprimo: Neatendita simbolo „%s‟" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "Sintaksa eraro en kondiĉa esprimo" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "Nekonvena simbolo „%s‟ anstataÅ­ „)‟" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "Mankas „)‟" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "La argumento „%s‟ ne konvenas por unuloka kondiĉa operacisimbolo" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "MaltaÅ­ga argumento por unuloka kondiĉa operacisimbolo" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "Misa simbolo „%s‟ anstataÅ­ duloka kondiĉa operacisigno" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "ĉi tie devas esti duloka kondiĉa operacisigno" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "La argumento „%s‟ ne konvenas por duloka kondiĉa operacisimbolo" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "\n" msgstr "" "La hejmpaÄo de BaÅo (anglalingva): \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Äœenerala helpilo pri uzo de GNUa programaro: \n" # XXX: internal_error -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: Misa operacio" @@ -1962,95 +2000,105 @@ msgstr "Nekonata signalnumero" msgid "Unknown Signal #%d" msgstr "Nekonata signalo n-ro %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Misa anstataÅ­igo: Mankas ferma „%s‟ en %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: Maleblas valorizi tabelanon per listo" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "Ne prosperis fari dukton por proceza anstataÅ­igo" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "Ne prosperis krei idon por proceza anstataÅ­igo" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Ne prosperis malfermi nomitan dukton %s porlegan" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Ne prosperis malfermi nomitan dukton %s por skribado" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "Ne prosperis kunnomumi nomhavan dukton %s kiel dosiernumeron %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "Misa anstataÅ­igo: Mankas ferma „`‟ en %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "Ne prosperis fari dukton por komanda anstataÅ­igo" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "Ne prosperis krei procezidon por komanda anstataÅ­igo" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: Ne prosperis kunnomumi la dosiernumeron 1 al dukto" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: Misa variablonomo por nomreferenco" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: Misa anstataÅ­igo" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: Misa malvolvo malrekta" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: MaltaÅ­ga variablonomo" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: Parametro estas NUL aÅ­ malaktiva" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: subĉeno-esprimo < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ĉi tiel ne valorizebla" # XXX: internal warning: -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" "Ontaj versioj de la Åelo plenumos komputon kiel aritmetikan anstataÅ­igon" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Misa anstataÅ­igo: Mankas ferma „`‟ en %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "Nenio kongrua: %s" @@ -2083,7 +2131,7 @@ msgstr "%s: Tie devas esti unuloka operacisigno" msgid "%s: binary operator expected" msgstr "%s: Tie devas esti duloka operacisigno" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "Mankas „]‟" @@ -2109,85 +2157,85 @@ msgstr "run_pending_traps: Signaltraktilo SIG_DFL resendas %d (%s) al mi mem" msgid "trap_handler: bad signal %d" msgstr "trap_handler: Misa signalnumero %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "Eraro ĉe importo de funkcidifino por „%s‟" # XXX: internal_warning -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "%d estas tro granda Åelnivelo; mallevita Äis 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: Cikla nomreferenco" - # XXX: internal_error -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: Malestas funkcia kunteksto en ĉi-regiono" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: Variablo ne valorizebla" +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: Misa variablonomo por nomreferenco" + # XXX: internal_error -#: variables.c:3753 +#: variables.c:3940 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:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "«exportstr» de %s estas NUL" # XXX: internal_error -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, 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:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "Mankas „=‟ en eksporta signoĉeno por „%s‟" # XXX: internal_error -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: Mankas kunteksto de „global_variables‟" # XXX: internal_error -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: La kapo de „shell_variables‟ ne estas provizora regiono" # XXX: internal_error -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: Ne malfermeblas kiel DOSIERO" # XXX: internal_error -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: Misa valoro por spurada dosiernumero (trace file descriptor)" # # XXX: internal_error -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s kongruo-nivelo estas ekster sia variejo" @@ -3078,10 +3126,11 @@ msgstr "" # typeset [-aAfFgilrtux] [-p] name[=value] ... #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Difinu atributojn kaj valorojn de variabloj\n" "\n" @@ -3631,7 +3680,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5123,6 +5172,7 @@ msgstr "" # coproc [NAME] command [redirections] # coproc [NOMO] KOMANDO [ALIDIREKTADOJ] #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5132,7 +5182,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Kreu kunprocezon nomotan NOMO\n" "\n" diff --git a/po/es.gmo b/po/es.gmo index 98f6e333f904b9b0afae72282b04fa5adb6ef00d..99ce5449bf1afb077722bc80ad72559fe6a1626d 100644 GIT binary patch delta 10732 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 ARsaA1 delta 11515 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

){(4`YVRyfAkS@))5d3J zObq0P=mslA@0bkt+=G#u|GQXIon)?En%uxwt%uip+o7Nn$g&GVN1ea}Y_p8agWG~k zS9+Ec3}uha4LCU=b$C2|3^~m8orPLF-PdjD7nOV^%lvnVaxPU}8k^{g*p_{1^nF9q y*@$e1i~!4(70TsOx_f8k@|>xxn7d%1|7XEM^dK!1%wvcA-&Narq@C}2yZ-?z1GrfL diff --git a/po/es.po b/po/es.po index e58e97e4..2aa34024 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2011-08-14 11:55-0500\n" "Last-Translator: Cristian Othón Martínez Vera \n" "Language-Team: Spanish \n" @@ -21,48 +21,54 @@ msgstr "" msgid "bad array subscript" msgstr "subíndice de matriz incorrecto" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: no se puede convertir la matriz de indizada a asociativa" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: índice de matriz asociativa inválido" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: no se puede asignar a un índice que no es numérico" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: se debe usar un subíndice al asignar a una matriz asociativa" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: no se puede crear: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: no se puede encontrar la combinación de teclas " "para la orden" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: el primer carácter que no es espacio en blanco no es `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "no hay un `%c' que cierre en %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: falta un `:' separador" @@ -82,7 +88,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': nombre de alias inválido" @@ -143,11 +149,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME no está definido" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "demasiados argumentos" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "directorio tope." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD no está definido" @@ -166,7 +177,7 @@ msgstr "aviso: " msgid "%s: usage: " msgstr "%s: uso: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: la opción requiere un argumento" @@ -181,7 +192,7 @@ msgstr "%s: se requiere un argumento numérico" msgid "%s: not found" msgstr "%s: no se encontró" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: opción inválida" @@ -191,7 +202,7 @@ msgstr "%s: opción inválida" msgid "%s: invalid option name" msgstr "%s: nombre de opción inválido" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': no es un identificador válido" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s: nombre de acción inválido" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: no hay completado de especificación" @@ -313,7 +324,7 @@ msgstr "aviso: es posible que la opción -F no funcione como se espera" msgid "warning: -C option may not work as you expect" msgstr "aviso: es posible que la opción -C no funcione como se espera" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "no se está ejecutando la función de completado" @@ -323,41 +334,47 @@ msgstr "no se está ejecutando la función de completado" msgid "can only be used in a function" msgstr "sólo se puede usar dentro de una función" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "no se puede usar `-f' para hacer funciones" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: función de sólo lectura" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: no se pueden destruir variables de matriz de esta forma" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: no se puede convertir una matriz asociativa a indizada" @@ -391,7 +408,7 @@ msgstr "%s: no se cargó dinámicamente" msgid "%s: cannot delete: %s" msgstr "%s: no se puede borrar: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: es un directorio" @@ -408,7 +425,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:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: no se puede ejecutar el fichero binario" @@ -450,7 +467,7 @@ msgstr "especificación de historia" msgid "%s: cannot open temp file: %s" msgstr "%s: no se puede abrir el fichero temporal: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "actual" @@ -799,21 +816,21 @@ msgid "can only `return' from a function or sourced script" msgstr "" "sólo se puede usar `return' en una función o un guión leído con `source'" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "no se puede borrar al mismo tiempo una función y una variable" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: no se puede borrar" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: no se puede borrar: %s es de solo lectura" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: no es una variable de matriz" @@ -832,11 +849,11 @@ msgstr "%s: no se puede borrar" msgid "shift count" msgstr "cuenta de shift" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "no se pueden activar y desactivar opciones del shell simultáneamente" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nombre de opción del shell inválido" @@ -982,63 +999,68 @@ msgstr "\aha expirado mientras esperaba alguna entrada: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "no se puede redirigir la salida estándar desde /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': carácter de formato inválido" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "error de tubería" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restringido: no se puede especificar `/' en nombres de órdenes" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: no se encontró la orden" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: intérprete erróneo" # file=fichero. archive=archivo. Si no, es imposible traducir tar. sv # De acuerdo. Corregido en todo el fichero. cfuga -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: no se puede ejecutar el fichero binario" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s es una orden interna del shell\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "no se puede duplicar el df %d al df %d" @@ -1119,7 +1141,7 @@ msgstr "%s: error de expresión\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: no se puede acceder a los directorios padre" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "no se puede reestablecer el modo nodelay para el df %d" @@ -1140,149 +1162,149 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: tubería de pgrp" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "el pid `forked' %d aparece en el trabajo en ejecución %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "borrando el trabajo detenido %d con grupo de proceso %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: el proceso %5ld (%s) en the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) se marca como vivo aún" # Cambiaría 'hay' por 'existe' em+ -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: no existe tal pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Señal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Hecho" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Detenido" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Detenido(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Ejecutando" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Hecho(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Salida %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Estado desconocido" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(`core' generado) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (dir ahora: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid hijo (%ld a %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: No hay un registro del proceso %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: el trabajo %d está detenido" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: el trabajo ha terminado" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: el trabajo %d ya está en segundo plano" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: se activa WNOHANG para evitar el bloque indefinido" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: línea %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (`core' generado)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(dir ahora: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs_control: falló getpgrp" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_jobs_control: disciplina de línea" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_jobs_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "no se puede establecer el grupo de proceso de terminal (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "no hay control de trabajos en este shell" @@ -1440,75 +1462,82 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "make_redirection: la instrucción de redirección `%d' está fuera de rango" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF inesperado mientras se buscaba un `%c' coincidente" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "EOF inesperado mientras se buscaba `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "error sintáctico en la expresión condicional: elemento inesperado `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "error sintáctico en la expresión condicional" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "elemento inesperado `%s', se esperaba `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "se esperaba `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argumento inesperado `%s' para el operador unario condicional" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argumento inesperado para el operador unario condicional" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "elemento inesperado `%s', se esperaba un operador binario condicional" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "se esperaba un operador binario condicional" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argumento inesperado `%s' para el operador binario condicional" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argumento inesperado para el operador binario condicional" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "elemento inesperado `%c' en la orden condicional" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "elemento inesperado `%s' en la orden condicional" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "elemento inesperado %d en la orden condicional" @@ -1519,12 +1548,12 @@ msgstr "elemento inesperado %d en la orden condicional" # provocado por el símbolo. Simplemente estar cerca del mismo. cfuga # Por consistencia con el siguiente, yo borraría la coma. sv # Cierto. Coma borrada. cfuga -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "error sintáctico cerca del elemento inesperado `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "error sintáctico cerca de `%s'" @@ -1533,20 +1562,20 @@ msgstr "error sintáctico cerca de `%s'" # no se esperaba el final de la línea em+ # Ojo, que end of file es fin de fichero, no de línea. sv # Se hicieron ambos cambios. cfuga -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "error sintáctico: no se esperaba el final del fichero" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "error sintáctico" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Use \"%s\" para dejar el shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "EOF inesperado mientras se buscaba un `)' coincidente" @@ -1555,6 +1584,11 @@ msgstr "EOF inesperado mientras se buscaba un `)' coincidente" msgid "completion: function `%s' not found" msgstr "completion: no se encuentra la función `%s'" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1621,30 +1655,34 @@ msgstr "no se admite /dev/(tcp|udp)/anfitrion/puerto sin red" msgid "redirection error: cannot duplicate fd" msgstr "error de redirección: no se puede duplicar el df" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "¡no se puede encontrar /tmp, crear por favor!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp debe ser un nombre de directorio válido" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: opción inválida" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "no se puede reestablecer el modo nodelay para el df %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "no se puede reestablecer el modo nodelay para el df %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: es un directorio" @@ -1652,11 +1690,11 @@ msgstr "%s: es un directorio" # Yo pondría "no tengo ningún nombre". sv # Revisé el código fuente de bash. Es un mensaje de error cuando no se # encuentra el nombre del usuario que ejecuta el shell. cfuga -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "¡No tengo nombre de usuario!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versión %s-(%s)\n" @@ -1666,7 +1704,7 @@ msgstr "GNU bash, versión %s-(%s)\n" # traducido en otras ocasiones. Sehll script lo henmos traducido # como guión del shell , eso es seguro ... así que puede estar # bien así , ya lo verán otros em+ -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1675,54 +1713,54 @@ msgstr "" "Modo de empleo:\t%s [opción GNU larga] [opción] ...\n" "\t%s [opción GNU larga] [opción] guión-del-shell\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Opciones GNU largas:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opciones del shell:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD o -c orden o -O opcion_shopt\t\t(sólo invocación)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s o -o opción\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Teclee `%s -c \"help set\"' para más información sobre las opciones del " "shell.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Teclee `%s -c help' para más información sobre las órdenes internas del " "shell.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use la orden `bashbug' para reportar bichos.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operación inválida" @@ -1907,82 +1945,92 @@ msgstr "Señal Desconocida #" msgid "Unknown Signal #%d" msgstr "Señal Desconocida #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "sustitución errónea: no hay un `%s' que cierre en %s" -#: subst.c:3099 +#: subst.c:3103 #, 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:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "no se puede crear la tubería para la sustitución del proceso" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "no se puede crear un proceso hijo para la sustitución del proceso" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "no se puede abrir la tubería llamada %s para lectura" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "no se puede abrir la tubería llamada %s para escritura" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "no se puede duplicar la tubería llamada %s como df %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "sustitución errónea: no hay `}' final en %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "no se pueden crear la tubería para la sustitución de la orden" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "no se puede crear un proceso hijo para la sustitución de la orden" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: no se puede duplicar la tubería como df 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: sustitución errónea" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: cuenta de líneas inválida" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': nombre de alias inválido" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parámetro nulo o no establecido" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresión de subcadena < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: no se puede asignar de esta forma" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1990,12 +2038,12 @@ msgstr "" "versiones futuras del intérprete obligarán la evaluación como una " "sustitución aritmética" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sustitución errónea: no hay una \"`\" que cierre en %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "no hay coincidencia: %s" @@ -2035,7 +2083,7 @@ msgstr "%s: se esperaba un operador binario" # Abreviando "falta [al menos] un `]'" saldría: "falta un `]'". # ¿No es mejor "falta algún `]'"? cfuga # Tiene razón Enrique: singular. cfuga -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "falta un `]'" @@ -2061,74 +2109,74 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: señal errónea %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "error al importar la definición de la función para `%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "el nivel de shell (%d) es demasiado alto, se reestablece a 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: no hay contexto de función en el ámbito actual" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: no se puede asignar el fd a la variable" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: no hay contexto de función en el ámbito actual" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s tiene exportstr nulo" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "carácter inválido %d en exportstr para %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "no hay `=' en exportstr para %s" -#: variables.c:4495 +#: variables.c:4684 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 función" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: no es un contexto global_variables" -#: variables.c:4582 +#: variables.c:4772 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" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: no se puede abrir como FICHERO" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: valor inválido para el descriptor de fichero de rastreo" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s fuera de rango" @@ -3039,10 +3087,11 @@ msgstr "" " suceda un error." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Establece valores de variables y atributos.\n" " \n" @@ -3588,7 +3637,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5076,6 +5125,7 @@ msgstr "" " Devuelve el estado de la última orden ejecutada." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5085,7 +5135,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Crea un coproceso llamado NOMBRE.\n" " \n" @@ -6037,9 +6087,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "borra el directorio del tope de la pila, y cambia al nuevo" -#~ msgid "top directory." -#~ msgstr "directorio tope." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "" #~ "+N borra la N-ésima entrada contando desde la izquierda de la lista" @@ -6674,9 +6721,6 @@ msgstr "" #~ msgid "Bad code in sig.c: sigprocmask" #~ msgstr "Código erróneo en sig.c: sigprocmask" -#~ msgid "bad substitution: no ending `}' in %s" -#~ msgstr "sustitución errónea: no hay `}' final en %s" - #~ msgid "%s: bad array subscript" #~ msgstr "%s: subíndice de matriz erróneo" diff --git a/po/et.gmo b/po/et.gmo index db62821fa4f9816872a67f61f7edb2938e8224e6..8dc632d28898ae8c34a50f69449f4a81490c625f 100644 GIT binary patch delta 26 hcmaDF_cU%pkSwpcu7R0?p@EgLk*\n" "Language-Team: Estonian \n" @@ -19,46 +19,52 @@ msgstr "" msgid "bad array subscript" msgstr "vigane massiivi indeks" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: vigane tegevuse nimi" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: mitte-numbrilisele indeksile ei saa omistada" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: ei saa luua: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: esimine mitte-tühemik sümbol pole `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "sulgev `%c' puudub %s sees" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: puudub eraldav koolon" @@ -78,7 +84,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "%s: vigane tegevuse nimi" @@ -137,11 +143,16 @@ msgstr "Tagastab jooksva alamprotseduuri konteksti." msgid "HOME not set" msgstr "HOME pole seatud" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "liiga palju argumente" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "teist kataloogi pole" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD pole seatud" @@ -160,7 +171,7 @@ msgstr "%s: hoiatus: " msgid "%s: usage: " msgstr "%s: hoiatus: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: võti nõuab argumenti" @@ -175,7 +186,7 @@ msgstr "%s: n msgid "%s: not found" msgstr "%s: ei leitud" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: vigane võti" @@ -185,7 +196,7 @@ msgstr "%s: vigane v msgid "%s: invalid option name" msgstr "%s: vigane võtme nimi" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': ei ole lubatud identifikaator" @@ -296,7 +307,7 @@ msgid "%s: invalid action name" msgstr "%s: vigane tegevuse nimi" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "" @@ -309,7 +320,7 @@ msgstr "hoiatus: v msgid "warning: -C option may not work as you expect" msgstr "hoiatus: võti -C ei pruugi töötada nagu te ootate" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -317,41 +328,47 @@ msgstr "" msgid "can only be used in a function" msgstr "saab kasutada ainult funktsioonis" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: vigane tegevuse nimi" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "võtit `-f' ei saa funktsiooni loomiseks kasutada" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funktsioon ei ole muudetav" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: masiivi muutujaid ei saa nii kustutada" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -385,7 +402,7 @@ msgstr "%s: pole d msgid "%s: cannot delete: %s" msgstr "%s: ei saa kustutada: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: on kataloog" @@ -400,7 +417,7 @@ msgstr "%s: ei ole tavaline fail" msgid "%s: file is too large" msgstr "%s: fail on liiga suur" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kahendfaili ei õnnestu käivitada" @@ -442,7 +459,7 @@ msgstr "" msgid "%s: cannot open temp file: %s" msgstr "%s: ajutist faili ei saa avada: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "" @@ -723,21 +740,21 @@ msgstr "viga lugemisel: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ei saa eemaldada" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ei saa eemaldada: %s on ainult lugemiseks" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: pole massiiv" @@ -756,11 +773,11 @@ msgstr "%s: ei saa eemaldada" msgid "shift count" msgstr "shift arv" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "" @@ -906,62 +923,67 @@ msgstr "" msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 #, fuzzy msgid "pipe error" msgstr "kirjutamise viga: %s" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: piiratud: käskudes ei saa kasutada sümboleid `/'" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: käsku ei ole" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, fuzzy, c-format msgid "%s: %s" msgstr "%s on %s\n" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: halb interpretaator" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: kahendfaili ei õnnestu käivitada" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s on shelli sisekäsk\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -1036,7 +1058,7 @@ msgstr "%s: oodati t msgid "getcwd: cannot access parent directories" msgstr "getcwd: vanemkataloogidele ei ole juurdepääsu" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -1051,148 +1073,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: pid puudub" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "" -#: jobs.c:1643 -#, c-format -msgid "Done(%d)" -msgstr "" - #: jobs.c:1645 #, c-format +msgid "Done(%d)" +msgstr "" + +#: jobs.c:1647 +#, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: töö %d on peatatud" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: töö on lõpetatud" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: töö %d on juba taustal" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, fuzzy, c-format msgid "%s: line %d: " msgstr "%s: hoiatus: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "" @@ -1344,103 +1366,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "süntaksi viga tingimuslikus avaldises" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "ootamatu märk `%s', oodati `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "oodati `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "süntaksi viga kohal `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "süntaksi viga: ootamatu faililõpp" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "süntaksi viga" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Käsuinterpretaatorist väljumiseks kasutage \"%s\".\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "" @@ -1449,6 +1478,11 @@ msgstr "" msgid "completion: function `%s' not found" msgstr "" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1515,44 +1549,48 @@ msgstr "" msgid "redirection error: cannot duplicate fd" msgstr "viga ümbersuunamisel: fd duplikaadi loomine ei õnnestu" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "/tmp puudub, palun looge see!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp peab olema kataloogi nimi" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: vigane võti" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: on kataloog" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Mul ei ole nime!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1561,50 +1599,50 @@ msgstr "" "Kasuta:\t%s [GNU pikk võti] [võti] ...\n" "\t%s [GNU pikk võti] [võti] skript-fail ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU pikad võtmed:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Käsuinterpretaatori võtmed:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD või -c käsklus või -O lühivõti\t\t(ainult käivitamine)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s või -o võti\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Vigadest teatamiseks kasutage käsku `bashbug'.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: vigane operatsioon" @@ -1780,93 +1818,103 @@ msgstr "" msgid "Unknown Signal #%d" msgstr "" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "sulgev `%c' puudub %s sees" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: halb asendus" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: vigane võti" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "%s: vigane tegevuse nimi" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameeter on null või pole seatud" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: sedasi ei saa omistada" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sulgev `%c' puudub %s sees" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "ei leitud: %s" @@ -1899,7 +1947,7 @@ msgstr "%s: eeldati unaarset operaatorit" msgid "%s: binary operator expected" msgstr "%s: eeldati binaarset operaatorit" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "puudub `]'" @@ -1924,72 +1972,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: vigane signaal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shelli tase (%d) on liiga kõrge, kasutan väärtust 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: praegune skoop pole funktsiooni kontekst" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "$%s: sedasi ei saa omistada" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: praegune skoop pole funktsiooni kontekst" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: parameeter on null või pole seatud" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: pole global_variables kontekst" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: ei saa avada: %s" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s on piiridest väljas" @@ -2636,7 +2684,7 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" #: builtins.c:538 @@ -2932,7 +2980,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3726,7 +3774,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 diff --git a/po/fi.gmo b/po/fi.gmo index db8ef45a0c523547628695c78a1aa7f7932eb9f5..2da8d5f914283ea4e21befd6c6db0c2cea5eaf10 100644 GIT binary patch delta 10046 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 MsXKot;k%shKV?`6YXATM delta 10862 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 diff --git a/po/fi.po b/po/fi.po index d8b9e11c..a2cd3eee 100644 --- a/po/fi.po +++ b/po/fi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2009-05-09 15:13+0300\n" "Last-Translator: Pekka Niemi \n" "Language-Team: Finnish \n" @@ -24,48 +24,54 @@ msgstr "" msgid "bad array subscript" msgstr "virheellinen taulukkoindeksi" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: indeksoitua taulukkoa ei voi muuttaa assosiatiiviseksi" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: virheellinen assosiatiivinen indeksi" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: ei voida sijoittaa epänumeeriseen indeksiin" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s: %s: assosiatiiviseen taulukkoon sijoitettaessa täytyy käyttää " "avainindeksiä" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: ei voida luoda: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: komennolle ei löydy näppäinkarttaa" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: ensimmäinen ei-tyhjä merkki ei ole â€\"â€" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "ei loppumerkkiä â€%c†rivissä %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: puuttuva kaksoispiste-erotin" @@ -85,7 +91,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "â€%sâ€: virheellinen näppäinkartan nimi" @@ -146,11 +152,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME-ympäristömuuttujaa ei ole asetettu" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "liian monta argumenttia" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ei toista hakemistoa" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD-ympäristömuuttujaa ei ole asetettu" @@ -169,7 +180,7 @@ msgstr "varoitus: " msgid "%s: usage: " msgstr "%s: käyttö: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: valitsin vaatii argumentin" @@ -184,7 +195,7 @@ msgstr "%s: vaaditaan numeerinen argumentti" msgid "%s: not found" msgstr "%s: ei löytynyt" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: virheellinen valitsin" @@ -194,7 +205,7 @@ msgstr "%s: virheellinen valitsin" msgid "%s: invalid option name" msgstr "%s: virheellinen valitsimen nimi" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "â€%sâ€: virheellinen tunniste" @@ -303,7 +314,7 @@ msgid "%s: invalid action name" msgstr "%s: virheellinen toiminnon nimi" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: ei lavennusmääritystä" @@ -316,7 +327,7 @@ msgstr "varoitus: -F -valitsin ei ehkä toimi odotetusti" msgid "warning: -C option may not work as you expect" msgstr "varoitus: -C -valitsin ei ehkä toimi odotetusti" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "tällä hetkellä komennon lavennusfunktiota ei suoriteta" @@ -324,41 +335,47 @@ msgstr "tällä hetkellä komennon lavennusfunktiota ei suoriteta" msgid "can only be used in a function" msgstr "voidaan käyttää ainoastaan funktiossa" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%d: virheellinen tiedostokahva: %s" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%d: virheellinen tiedostokahva: %s" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "â€-fâ€:ää ei voida käyttää funktioiden luomiseen" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: kirjoitussuojattu funktio" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: taulukkomuuttujia ei voi tuhota näin" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: assosiatiivista taulukkoa ei voi muuttaa indeksoiduksi" @@ -392,7 +409,7 @@ msgstr "%s: ei dynaamisesti ladattu" msgid "%s: cannot delete: %s" msgstr "%s: ei voida poistaa: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: on hakemisto" @@ -407,7 +424,7 @@ msgstr "%s: ei tavallinen tiedosto" msgid "%s: file is too large" msgstr "%s: tiedosto on liian iso" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: binääritiedostoa ei voida suorittaa" @@ -449,7 +466,7 @@ msgstr "komentohistoriamääritys" msgid "%s: cannot open temp file: %s" msgstr "%s: väliaikaistiedostoa ei voitu avata: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "nykyinen" @@ -792,21 +809,21 @@ msgstr "lukuvirhe: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "â€return†on käytettävissä vain funktiossa tai ladatussa skriptissä" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "funktiota ja muuttujaa ei voi poistaa yhtä aikaa" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ei voida poistaa" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ei voida poistaa: kirjoitussuojattu %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ei ole taulukkomuuttuja" @@ -825,13 +842,13 @@ msgstr "%s: ei voida poistaa" msgid "shift count" msgstr "siirtolaskuri" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" "komentotulkin valitsimia ei voida laittaa päällä ja ottaa pois päältä " "samanaikaisesti" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: virheellinen komentotulkin valitsimen nimi" @@ -977,61 +994,66 @@ msgstr "\aaikakatkaisu: automaattinen uloskirjautuminen\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "syötettä ei voida lukea tiedostosta /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "AJAN MUOTOMÄÄRITYS: â€%câ€: virheellinen muotoilumerkki" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "putkitusvirhe" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: rajoitettu: komentojen nimissä ei voi käyttää â€/â€-merkkiä" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: komentoa ei löydy" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, fuzzy, c-format msgid "%s: %s" msgstr "%s on %s\n" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: virheellinen tulkki" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: binääritiedostoa ei voida suorittaa" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s on komentotulkin sisäänrakennettu komento\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "tiedostokahvaa %d ei voida kopioida kahvaksi %d" @@ -1106,7 +1128,7 @@ msgstr "%s: virhe lausekkeessa\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: ylempiin hakemistoihin ei päästä" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nodelay-tilaa ei voida asettaa tiedostokahvalle %d" @@ -1121,148 +1143,148 @@ msgstr "bashin syötteeksi ei voida avata uutta tiedostokahvaa kahvasta %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: uudella tiedostokahvalla %d on jo puskuri" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp-putki" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "haarautettu prosessi-id %d on ajossa olevalla työllä %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "poistetaan pysäytetty työ %d prosessiryhmästä %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: prosessi %5ld (%s) putkijonossa" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: prosessi %5ld (%s) on merkattu vielä toimivaksi" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: prosessitunnusta ei löydy." -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signaali %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Valmis" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Pysäytetty" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Pysäytetty(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Ajossa" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Valmis(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Poistui %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Tuntematon tila" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(luotiin core-tiedosto)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (työhakemisto: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "lapsiprosessin setpgid (%ld => %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: prosessi %ld ei ole tämän komentotulkin lapsiprosessi" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Prosessista %ld ei ole tietoja" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: työ %d on pysäytetty" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: työ on lopetettu" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: työ %d on jo taustalla" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: rivi %d:" -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (luotiin core-tiedosto)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(työhakemisto nyt: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp epäonnistui" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: vuonhallinta" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "päätteen prosessiryhmää ei voitu asettaa (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "tällä komentotulkilla ei ole työnohjausta" @@ -1416,104 +1438,111 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: uudelleenohjaus â€%d†rajojen ulkopuolella" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "odottamaton EOF (tiedostonloppu) odotettaessa sulkevaa â€%câ€" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "odottamaton EOF odotettaessa â€]]â€" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "lauseoppivirhe ehdollisessa lausekkeessa: odottamaton avainsana â€%sâ€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "lauseoppivirhe ehdollisessa lausekkeessa" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "odottamaton avainsana â€%sâ€, odotettiin â€)â€" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "odototettiin â€)â€" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "odottamaton argumentti â€%s†ehdolliselle unaariselle operaattorille" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "odottamaton argumentti ehdolliselle unaariselle operaattorille" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" "odottamaton avainsana â€%sâ€, odotettiin ehdollista binääristä operaattoria" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "odotettiin ehdollista binääristä operaattoria" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "odottamaton argumentti â€%s†ehdolliselle binääriselle operaattorille" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "odottamaton argumentti ehdolliselle binääriselle operaattorille" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "odottamaton avainsana â€%c†ehdollisessa komennossa" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "odottamaton avainsana â€%s†ehdollisessa komennossa" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "odottamaton avainsana %d ehdollisessa komennossa" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "lauseoppivirhe lähellä odottamatonta avainsanaa â€%sâ€" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "lauseoppivirhe lähellä â€%sâ€" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "lauseoppivirhe: odottamaton tiedostonloppu" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "lauseoppivirhe" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Kirjoita â€%s†poistuaksesi komentotulkista.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "Odottamaton EOF odotettaessa vastaavaa â€)â€" @@ -1522,6 +1551,11 @@ msgstr "Odottamaton EOF odotettaessa vastaavaa â€)â€" msgid "completion: function `%s' not found" msgstr "täydennys: funktiota â€%s†ei löytynyt" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1588,44 +1622,48 @@ msgstr "/dev/(tcp|udp)/host/port-muotoa ei tueta ilman tietoliikennettä" msgid "redirection error: cannot duplicate fd" msgstr "virhe uudelleenohjauksessa: tiedostokahvaa ei voida kopioida" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "/tmp-hakemistoa ei löytynyt, luo se!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp:n pitää olla kelvollinen hakemiston nimi" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: virheellinen valitsin" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "nodelay-tilaa ei voida asettaa tiedostokahvalle %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "nodelay-tilaa ei voida asettaa tiedostokahvalle %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: on hakemisto" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Minulla ei ole nimeä!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versio %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1634,55 +1672,55 @@ msgstr "" "Käyttö:\t%s[GNU:n pitkä valitsin] [valitsin] ...\n" "\t%s [GNU:n pitkä valitsin] [valitsin] komentotiedosto ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU:n pitkät valitsimet:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Komentotulkin valitsimet:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t-irsD tai -c komento tai -O shopt_option (ainoastaan käynnistettäessä)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s tai -o -valitsin\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Kirjoita â€%s -c 'help set'†saadaksesi lisätietoja komentotulkin " "valitsimista.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Kirjoita â€%s -c help†saadaksesi lisätietoja komentotulkin " "sisäänrakennetuista komennoista.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Raportoi virheet komennolla â€bashbugâ€.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: virheellinen operaatio" @@ -1856,93 +1894,103 @@ msgstr "Tuntematon signaali #" msgid "Unknown Signal #%d" msgstr "Tuntematon signaali #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "virheellinen korvaus: ei sulkevaa â€%s†jonossa %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: listaa ei voida sijoittaa taulukon alkioon" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "putkea ei voida luoda prosessin korvaamista varten" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "lapsiprosessia ei voida luoda prosessin korvaamista varten" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nimettyä putkea %s ei voida avata lukemista varten" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nimettyä putkea %s ei voida avata kirjoitusta varten" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nimettyä putkea %s ei voida kopioida tiedostokahvaksi %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "virheellinen korvaus: ei sulkevaa â€`†jonossa %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "putkea ei voida luoda komennon korvaamista varten" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "ei voida luoda lapsiprosessia komennon korvaamista varten" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: putkea ei voida kopioida tiedostokahvaksi 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%d: virheellinen tiedostokahva: %s" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: virheellinen korvaus" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: virheellinen rivimäärä" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "â€%sâ€: virheellinen näppäinkartan nimi" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametria ei ole tai sitä ei ole asetettu" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: alimerkkijonolauseke < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ei voida asettaa näin" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "virheellinen korvaus: ei sulkevaa â€`†jonossa %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "ei osumia: %s" @@ -1975,7 +2023,7 @@ msgstr "%s: odotettiin unaarista operaattoria" msgid "%s: binary operator expected" msgstr "%s: odotettiin binääristä operaattoria" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "puuttuva â€]â€" @@ -2001,74 +2049,74 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: virheellinen signaali %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "virhe tuotaessa â€%sâ€:n funktiomääritystä" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "komentotulkkitaso (%d) liian korkea, palautetaan 1:ksi" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%d: virheellinen tiedostokahva: %s" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ei funktiokontekstia nykytilassa" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: listaa ei voida sijoittaa taulukon alkioon" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%d: virheellinen tiedostokahva: %s" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ei funktiokontekstia nykytilassa" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: parametria ei ole tai sitä ei ole asetettu" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "virheellinen merkki %d %s:n exportstr:ssä" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "ei =:ä kohteen %s exportstr:ssä" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: shell_variablesin alku ei ole funktiokonteksti" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: ei global_variables-kontekstia" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: shell_variablesin alku ei väliaikaisten ympäristömuuttujien " "ympäristössä" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: ei voida avata: %s" -#: variables.c:5431 +#: variables.c:5624 #, fuzzy, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%d: virheellinen tiedostokahva: %s" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s rajojen ulkopuolella" @@ -2958,10 +3006,11 @@ msgstr "" " virhetilannetta." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Asettaa muuttujien arvoja ja attribuutteja.\n" " \n" @@ -3500,7 +3549,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4966,6 +5015,7 @@ msgstr "" " Viimeisen suoritetun komennon paluuarvo." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4975,7 +5025,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Luo NIMI-nimisen rinnakkaisprosessin.\n" " \n" diff --git a/po/fr.gmo b/po/fr.gmo index b00c7cc5aa366fdf91cf07b33ebf5229c8319e4f..0dde503f8043918b8092c359c33aefd3f7b899ac 100644 GIT binary patch delta 12269 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\n" "Language-Team: French \n" @@ -22,49 +22,55 @@ msgstr "" msgid "bad array subscript" msgstr "mauvais indice de tableau" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s : impossible de convertir un tableau indexé en associatif" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s : clé non valable pour le tableau associatif" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s : impossible d'assigner à un index non numérique" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s : %s : l'assignation d'un tableau associatif doit se faire avec un indice" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s : impossible de créer : %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command : impossible de trouver le mappage clavier pour la " "commande" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s : le premier caractère non vide n'est pas « \" »" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "pas de « %c » de fermeture dans %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s : virgule de séparation manquante" @@ -85,7 +91,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "expansion des accolades : échec de l'allocation mémoire pour « %s »" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "« %s » : nom d'alias non valable" @@ -146,11 +152,16 @@ msgstr "" msgid "HOME not set" msgstr "« HOME » non défini" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "trop d'arguments" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "de répertoire se fait vers le nouveau répertoire supérieur." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "« OLDPWD » non défini" @@ -169,7 +180,7 @@ msgstr "avertissement :" msgid "%s: usage: " msgstr "%s : utilisation :" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s : l'option nécessite un argument" @@ -184,7 +195,7 @@ msgstr "%s : argument numérique nécessaire" msgid "%s: not found" msgstr "%s : non trouvé" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s : option non valable" @@ -194,7 +205,7 @@ msgstr "%s : option non valable" msgid "%s: invalid option name" msgstr "%s : nom d'option non valable" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "« %s » : identifiant non valable" @@ -304,7 +315,7 @@ msgid "%s: invalid action name" msgstr "%s : nom d'action non valable" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s : pas d'indication de complètement" @@ -321,7 +332,7 @@ msgstr "" "avertissement : l'option « -C » peut fonctionner différemment de ce à quoi " "vous vous attendez" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "fonction de complétion actuellement non en cours d'exécution" @@ -329,42 +340,48 @@ msgstr "fonction de complétion actuellement non en cours d'exécution" msgid "can only be used in a function" msgstr "utilisable seulement dans une fonction" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s : la variable de référence ne peut pas être un tableau" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s : références bouclées sur la même variable interdites" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s : référence de nom circulaire" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s : nom de variable invalide pour une référence de nom" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "« -f » ne peut pas être utilisé pour fabriquer des fonctions" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s : fonction en lecture seule" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" "%s : l'assignation d'un tableau composé entre apostrophes est dépréciée" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s : impossible de détruire des variables tableaux de cette façon" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s : impossible de convertir un tableau indexé en tableau associatif" @@ -398,7 +415,7 @@ msgstr "%s : non chargé dynamiquement" msgid "%s: cannot delete: %s" msgstr "%s : impossible d'effacer : %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s : ceci est un répertoire" @@ -413,7 +430,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:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s : ne peut exécuter le fichier binaire" @@ -455,7 +472,7 @@ msgstr "indication d'historique" msgid "%s: cannot open temp file: %s" msgstr "%s : impossible d'ouvrir le fichier temporaire : %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "courant" @@ -807,23 +824,23 @@ msgstr "" "« return » n'est possible que depuis une fonction ou depuis un script exécuté " "par « source »" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" "« unset » ne peut pas s'appliquer simultanément à une fonction et à une " "variable" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s : « unset » impossible" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s : « unset » impossible : %s est en lecture seule" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s : n'est pas une variable tableau" @@ -842,13 +859,13 @@ msgstr "%s : impossible d'exporter" msgid "shift count" msgstr "nombre de « shift »" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" "les options du shell ne peuvent pas être simultanément activées et " "désactivées" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s : nom d'option du shell non valable" @@ -994,65 +1011,70 @@ msgstr "\aattente de données expirée : déconnexion automatique\n" 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:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT : « %c » : caractère de format non valable" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "erreur de tube" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" "eval : dépassement de la profondeur maximum d'imbrication d'évaluations (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" "%s : dépassement de la profondeur maximum d'imbrication de sources (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" "%s : dépassement de la profondeur maximum d'imbrication de fonctions (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, 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:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s : commande introuvable" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s : %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s : %s : mauvais interpréteur" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s : impossible d'exécuter le fichier binaire : %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "« %s » : est une primitive spéciale" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "impossible de dupliquer le fd %d vers le fd %d" @@ -1127,7 +1149,7 @@ msgstr "%s : erreur d'expression\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd : ne peut accéder aux répertoires parents" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "impossible de réinitialiser le mode « nodelay » pour le fd %d" @@ -1144,148 +1166,148 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline : pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, 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:1148 +#: jobs.c:1150 #, 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:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process : processus %5ld (%s) dans le_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process : pid %5ld (%s) signalé toujours en vie" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid : %ld : n° de processus inexistant" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Fini" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stoppé" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stoppé(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "En cours d'exécution" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Fini(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Termine %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "État inconnu" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd : %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "fils setpgid (%ld à %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for : Aucun enregistrement du processus n°%ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job : la tâche %d est stoppée" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s : la tâche s'est terminée" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s : la tâche %d est déjà en arrière plan" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld : activation de WNOHANG pour éviter un blocage définitif" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s : ligne %d : " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(maintenant, wd : %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control : getpgrp a échoué" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control : discipline de ligne" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control : setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "impossible de régler le groupe de processus du terminal (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "pas de contrôle de tâche dans ce shell" @@ -1443,106 +1465,113 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection : l'instruction de redirection « %d » est hors plage" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "nombre maximum de documents en ligne (« here-document ») dépassé" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "" "fin de fichier (EOF) prématurée lors de la recherche du « %c » correspondant" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "fin de fichier (EOF) prématurée lors de la recherche de « ]] »" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" "erreur de syntaxe dans une expression conditionnelle : symbole « %s » " "inattendu" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "erreur de syntaxe dans une expression conditionnelle" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "symbole inattendu « %s » au lieu de « ) »" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "« ) » attendu" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argument inattendu « %s » pour l'opérateur conditionnel à un argument" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argument inattendu pour l'opérateur conditionnel à un argument" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "symbole « %s » trouvé à la place d'un opérateur binaire conditionnel" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "opérateur binaire conditionnel attendu" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argument « %s » inattendu pour l'opérateur binaire conditionnel" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argument inattendu pour l'opérateur binaire conditionnel" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "symbole « %c » inattendu dans la commande conditionnelle" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "symbole « %s » inattendu dans la commande conditionnelle" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "symbole « %d » inattendu dans la commande conditionnelle" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "erreur de syntaxe près du symbole inattendu « %s »" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "erreur de syntaxe près de « %s »" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "erreur de syntaxe : fin de fichier prématurée" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "erreur de syntaxe" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Utilisez « %s » pour quitter le shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "" "fin de fichier (EOF) prématurée lors de la recherche d'une « ) » " @@ -1553,6 +1582,11 @@ msgstr "" msgid "completion: function `%s' not found" msgstr "complètement : fonction « %s » non trouvée" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1621,44 +1655,48 @@ msgid "redirection error: cannot duplicate fd" msgstr "" "erreur de redirection : impossible de dupliquer le descripteur de fichier" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "« /tmp » introuvable, veuillez le créer !" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "« /tmp » doit être un nom de répertoire valable" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c : option non valable" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "impossible de changer le uid en %d : uid effectif %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "impossible de changer le gid en %d: gid effectif %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s : Ceci est un répertoire" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Je n'ai pas de nom !" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1667,54 +1705,54 @@ msgstr "" "Utilisation :\t%s [option longue GNU] [option] ...\n" "\t%s [option longue GNU] [option] fichier-script ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Options longues GNU :\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Options du shell :\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD ou -c commande ou -O shopt_option\t\t(invocation seulement)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ou -o option\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Pour en savoir plus sur les options du shell, saisissez « %s -c \"help set\" " "».\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Pour en savoir plus sur les primitives du shell, saisissez « %s -c help ».\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Utilisez la commande « bashbug » pour faire un rapport de bogue.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "page d'accueil de bash : \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Aide générale sur l'utilisation de logiciels GNU : \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask : %d : opération non valable" @@ -1888,83 +1926,93 @@ msgstr "N° de signal inconnu" msgid "Unknown Signal #%d" msgstr "Signal n°%d inconnu" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Mauvaise substitution : pas de « %s » de fermeture dans %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s : impossible d'affecter une liste à un élément de tableau" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "impossible de fabriquer un tube pour une substitution de processus" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "impossible de fabriquer un fils pour une substitution de processus" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "impossible d'ouvrir le tube nommé « %s » en lecture" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "impossible d'ouvrir le tube nommé « %s » en écriture" -#: subst.c:5778 +#: subst.c:5782 #, 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:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "mauvais remplacement : pas de « ` » de fermeture dans %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "impossible de fabriquer un tube pour une substitution de commande" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "" "impossible de fabriquer un processus fils pour une substitution de commande" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute : impossible de dupliquer le tube vers le fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s : nom de variable invalide pour une référence de nom" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s : mauvaise substitution" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s : expansion indirecte invalide" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: nom de variable invalide" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s : paramètre vide ou non défini" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s : expression de sous-chaîne négative" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s : affectation impossible de cette façon" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1972,12 +2020,12 @@ msgstr "" "les versions futures du shell forceront l'évaluation comme une substitution " "arithmétique" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "mauvais remplacement : pas de « ` » de fermeture dans %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "pas de correspondance : %s" @@ -2010,7 +2058,7 @@ msgstr "%s : opérateur unaire attendu" msgid "%s: binary operator expected" msgstr "%s : opérateur binaire attendu" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "« ] » manquant" @@ -2036,80 +2084,80 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler : mauvais signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "erreur lors de l'importation de la définition de fonction pour « %s »" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "niveau de shell trop élevé (%d), initialisation à 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s : référence de nom circulaire" - -#: variables.c:2328 +#: variables.c:2413 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:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s : la variable ne peut se voir assigner une valeur" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s : nom de variable invalide pour une référence de nom" + +#: variables.c:3940 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:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s a un « exportstr » nul" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "caractère %d non valable dans « exportstr » pour %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "pas de « = » dans « exportstr » pour %s" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context : aucun contexte à « global_variables »" -#: variables.c:4582 +#: variables.c:4772 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 " "temporaire d'environnement" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s : %s : impossible d'ouvrir comme FILE" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s : %s : valeur non valable pour un descripteur de fichier de trace" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s : %s : valeur de compatibilité hors plage" @@ -3031,10 +3079,11 @@ msgstr "" " erreur survienne lors de l'assignation d'une variable." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Définit des valeurs ou des attributs de variables.\n" " \n" @@ -3609,7 +3658,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5203,6 +5252,7 @@ msgstr "" " Renvoie le code de la dernière commande exécutée." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5212,7 +5262,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Crée un coprocessus nommé NOM.\n" " \n" @@ -6215,9 +6265,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "le répertoire supérieur de la pile est enlevé et un changement de" -#~ msgid "top directory." -#~ msgstr "de répertoire se fait vers le nouveau répertoire supérieur." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "+N enlève le Nième élément en commençant à zéro à gauche" diff --git a/po/ga.gmo b/po/ga.gmo index f8a8bdb5c8598b43ddcffdef29e47347101298b9..16abe1c2e54e65a21f5aa23a1f6cebc7b4524df1 100644 GIT binary patch delta 9978 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 delta 10164 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\n" "Language-Team: Irish \n" @@ -23,49 +23,55 @@ msgstr "" msgid "bad array subscript" msgstr "droch-fhoscript eagair" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" "%s: ní féidir eagar innéacsaithe a thiontú go heagar comhthiomsaitheach" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: eochair neamhbhailí eagair chomhthiomsaithigh" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: ní féidir sannadh go hinnéacs neamhuimhriúil." -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s: %s: caithfear foscript a úsáid le sannadh chuig eagar comhthiomsaitheach" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: ní féidir cruthú: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: ní féidir mapa eochrach an ordaithe a aimsiú" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: ní \" é an chéad charachtar nach spás bán é." -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "Níl \"%c\" dúnta i %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: deighilteoir idirstaid ar iarraidh" @@ -85,7 +91,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "\"%s\": ainm neamhbhailí ar mhapa eochrach" @@ -146,11 +152,16 @@ msgstr "" msgid "HOME not set" msgstr "Níl HOME socruithe" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "An iomarca argóintí" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "Níl comhadlann eile ann" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Níl OLDPWD socruithe" @@ -169,7 +180,7 @@ msgstr "rabhadh: " msgid "%s: usage: " msgstr "%s: úsáid: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: tá argóint riachtanach don rogha" @@ -184,7 +195,7 @@ msgstr "%s: argóint uimhriúil de dhíth" msgid "%s: not found" msgstr "%s: gan aimsiú" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: rogha neamhbhailí" @@ -194,7 +205,7 @@ msgstr "%s: rogha neamhbhailí" msgid "%s: invalid option name" msgstr "%s: ainm neamhbhailí rogha" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "\"%s\": ní aitheantóir bailí é" @@ -303,7 +314,7 @@ msgid "%s: invalid action name" msgstr "%s: ainm neamhbhailí gnímh" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: níl sonrú iomlánaithe ann." @@ -318,7 +329,7 @@ msgid "warning: -C option may not work as you expect" msgstr "" "Rabhadh: b'fhéidir nach n-oibríonn an rogha -C mar a bheifeá ag súil leis." -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "níl an fheidhm chomhlánaithe á rith faoi láthair" @@ -326,41 +337,47 @@ msgstr "níl an fheidhm chomhlánaithe á rith faoi láthair" msgid "can only be used in a function" msgstr "Inúsáidte i bhfeidhmeanna amháin. " -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "\"%s\": ainm neamhbhailí ar mhapa eochrach" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "Ní féidir \"-f\" a úsáid chun feidhmeanna a dhéanamh" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: feidhm inléite amháin" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: ní féidir athróga eagair a scrios mar seo." -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -395,7 +412,7 @@ msgstr "%s: níl sé luchtaithe go dinimiciúil" msgid "%s: cannot delete: %s" msgstr "%s: ní féidir scrios: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: is comhadlann é" @@ -410,7 +427,7 @@ msgstr "%s: ní gnáthchomhad é" msgid "%s: file is too large" msgstr "%s: tá an comhad ró-mhór" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ní féidir comhad dénártha a rith" @@ -452,7 +469,7 @@ msgstr "Sonrú staire" msgid "%s: cannot open temp file: %s" msgstr "%s: ní féidir comhad sealadach a oscailt: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "reatha" @@ -746,21 +763,21 @@ msgid "can only `return' from a function or sourced script" msgstr "" "ní féidir \"return\" a dhéanamh ach ó fheidhm nó ó script rite le \"source\"" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "Ní féidir feidhm agus athróg a dhíshocrú ag an am céanna." -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ní féidir díshocrú" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ní féidir díshocrú: %s inléite amháin" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ní athróg eagair é" @@ -779,11 +796,11 @@ msgstr "%s: ní féidir díshocrú" msgid "shift count" msgstr "comhaireamh iomlaoide" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "Ní féidir roghanna blaoisce a shocrú agus a dhíshocrú ag an am céanna." -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: ainm neamhbhailí ar rogha blaoisce" @@ -929,61 +946,66 @@ msgstr "\aimithe thar am ag feitheamh le hionchur: logáil amach uathoibríoch\n msgid "cannot redirect standard input from /dev/null: %s" msgstr "Ní féidir an ionchur caighdeánach a atreorú ó /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "FORMÃID_AMA: \"%c\": carachtar formáide neamhbhaií." -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "earráid phíopa" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: srianta: ní féidir \"/\" a shonrú in ainmneacha ordaithe" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: níor aimsíodh an t-ordú" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: drochléirmhínitheoir" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ní féidir comhad dénártha a rith: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "Is ordú ionsuite speisialta é \"%s\"" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "" @@ -1059,7 +1081,7 @@ msgstr "%s: earráid sloinn\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: ní féidir na máthairchomhadlanna a rochtain." -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -1080,148 +1102,148 @@ msgstr "" "save_bash_input: tá an maolán ann cheana le haghaidh an tuairisceoir comhaid " "nua %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp píopa" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "tá an aitheantas an phróisis ghabhlaithe %d sa jab %d atá ag rith" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Tá an jab stoptha %d leis an ngrúpa próisis %ld á scrios." -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: próiseas %5ld (%s) sa phíblíne" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: próiseas %5ld (%s) marcáilte mar fós beo" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: níl an aitheantóir próisis sin ann." -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Comhartha %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Déanta" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stoptha" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stoptha(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Ag Rith" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Déanta(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Scoir %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Stádas neamhaithnid" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(cuimhne dumpáilte)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (comhadlann oibre: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid macphróisis (%ld go %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: níl an próiseas %ld ina mhacphróiseas den bhlaosc seo." -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: níl taifead den phróiseas %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: tá an jab %d stoptha." -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: tá an jab críochnaithe." -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: tá an jab %d sa chúlra cheana." -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: líne %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (cuimhne dumpáilte)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(comhadlann oibre anois: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: theip ar getpgrp" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: araíonacht líne" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "ní féidir grúpa próisis teirminéil a shocrú (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Níl rialú jabanna sa bhlaosc seo." @@ -1377,107 +1399,114 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: ordú atreoraithe \"%d\" as raon." -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "Deireadh comhaid gan súil leis agus \"%c\" a mheaitseálann á lorg." -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "Deireadh comhaid gan súil leis agus \"]]\" á lorg." -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" "Earráid chomhréire i slonn coinníollach: comhartha \"%s\" gan suil leis." -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "Earráid chomhréire i slonn coinníollach." -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "Comhartha \"%s\" gan súil leis; ag súil le \")\"." -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "Ag súil le \")\"" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "Argóint \"%s\" gan súil lei go hoibreoir aonártha coinníollach." -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "Argóint gan súil lei go hoibreoir coinníollach aonártha ." -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" "Comhartha \"%s\" gan súil leis. Bhíothas ag súil le hoibreoir coinníollach " "dénártha." -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "Bhíothas ag súil le hoibreoir coinníollach dénártha." -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "Argóint \"%s\" gan súil lei go hoibreoir dénártha coinníollach." -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "Argóint gan súil lei go hoibreoir dénártha coinníollach." -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "Comhartha \"%c\" gan súil leis in ordú coinníollach." -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "Comhartha \"%s\" gan súil leis in ordú coinníollach." -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "Comhartha %d gan súil leis in ordú coinníollach." -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "" "Earráid chomhréire in aice comhartha \"%s\" nach rabhthas ag súil leis." -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "Earráid chomhréire in aice \"%s\"" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "Earráid chomhréire: deireadh comhaid gan súil leis." -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "Earráid chomhréire" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Úsáid \"%s\" le scoir den mblaosc.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "Deireadh comhaid gan súil leis agus \")\" á lorg le meaitseáil." @@ -1486,6 +1515,11 @@ msgstr "Deireadh comhaid gan súil leis agus \")\" á lorg le meaitseáil." msgid "completion: function `%s' not found" msgstr "Iomlánú: níor aimsíodh an fheidhm \"%s\"." +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1552,48 +1586,52 @@ msgstr "Ní thacaítear le /dev/(tcp|udp)/óstríomhaire/port gan líonrú." msgid "redirection error: cannot duplicate fd" msgstr "Earráid atreoraithe: ní féidir an tuairisceoir comhaid a dhúbailt." -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "Níorbh fhéidir /tmp a aimsiú. Cruthaigh é le do thoil!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "Caithfidh /tmp bheith ina ainm comhadlainne bailí." -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: rogha neamhbhailí" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" "ní féidir an mód gan mhoill a athshocrú le haghaidh an tuairisceora chomhaid " "%d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" "ní féidir an mód gan mhoill a athshocrú le haghaidh an tuairisceora chomhaid " "%d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: is comhadlann é" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Níl ainm orm!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, leagan %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1602,53 +1640,53 @@ msgstr "" "Úsáid:\t%s [rogha fada GNU] [rogha] ...\n" "\t%s [rogha fada GNU] [rogha] comhad_scripte ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Roghanna fada GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Roghanna blaoisce:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD nó -c ordú nó -O rogha_shopt\t\t(glaoch amháin)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s nó -o rogha\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Úsáid %s -c \"help set\" le haghaidh tuilleadh eolais faoi roghanna " "blaoisce.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Úsáid \"%s -c help\" le haghaidh tuilleadh eolais faoi orduithe ionsuite " "blaoisce.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Úsáid an t-ordú \"bashbug\" le tuarascáil a sheoladh faoi fhabht.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: oibríocht neamhbhailí" @@ -1822,96 +1860,106 @@ msgstr "Comhartha neamhaithnid #" msgid "Unknown Signal #%d" msgstr "Comhartha neamhaithnid #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Drochionadú: níl \"%s\" dúnta i %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: ní féidir liosta a shannadh go ball eagair." -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "Ní féidir píopa a dhéanamh le haghaidh ionadaíocht próisis." -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "Ní féidir macphróiseas a dhéanamh le haghaidh ionadaíocht próisis." -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "Ní féidir píopa ainmnithe %s a oscailt le haghaidh léamh." -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "Ní féidir píopa ainmnithe %s a oscailt le haghaidh scríofa." -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "Ní féidir an píopa ainmnithe %s a dhúbailt mar thuairisceoir comhaid %d." -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "drochionadú: níl \"`\" dúnta i %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "Ní féidir píopa a dhéanamh le haghaidh ionadú ordaithe." -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "Ní féidir macphróiseas a dhéanamh le haghaidh ionadú ordaithe." -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute: ní feidir an píopa a dhúbailt mar thuairisceoir comhaid " "1." -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: drochionadú" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: comhaireamh neamhbhailí línte" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "\"%s\": ainm neamhbhailí ar mhapa eochrach" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: paraiméadar neamhnitheach nó gan socrú." -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: slonn fotheaghráin < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ní féidir sannadh mar seo." -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "drochionadú: níl \"`\" dúnta i %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "gan meaitseáil: %s" @@ -1944,7 +1992,7 @@ msgstr "%s: ag súil le hoibreoir aonártha." msgid "%s: binary operator expected" msgstr "%s: ag súil le hoibreoir dénártha." -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "\"]\" ar iarraidh" @@ -1970,72 +2018,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: droch-chomhartha %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "Earráid agus sainmhíniú na feidhme \"%s\" á iompórtáil." -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "Tá an leibhéal blaoisce (%d) ró-ard; á athshocrú go 1." -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: níl comhthéacs feidhme sa scóip reatha." -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: ní féidir luach a shannadh ar an athróg" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: níl comhthéacs feidhme sa scóip reatha" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: paraiméadar neamhnitheach nó gan socrú." -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "Carachtar neamhbhailí %d sa teaghrán easpórtála le haghaidh %s." -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "Níl \"=\" sa teaghrán easpórtála le haghaidh %s." -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: ní comhthéacs feidhme é ceann shell_variables" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: níl comhthéacs global_variables ann" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: ní scóip shealadach thimpeallachta é ceann shell_variables" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: ní féidir a oscailt mar CHOMHAD" -#: variables.c:5431 +#: variables.c:5624 #, fuzzy, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%d: tuairisceoir comhaid neamhbhailí: %s" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s as raon" @@ -2808,10 +2856,11 @@ msgid "" msgstr "" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Socraigh luachanna agus airíonna athróg.\n" " \n" @@ -3244,7 +3293,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4090,7 +4139,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 diff --git a/po/gl.gmo b/po/gl.gmo index 77d762de5e0c4aa5d27af83b5e968862fc6fa6e5..fac111307803300e5fb66e4da0073e8f2c61be0b 100644 GIT binary patch delta 10089 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 awo| delta 10902 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 d1u>fy_{{>f5oH76a diff --git a/po/gl.po b/po/gl.po index bd40a60d..3913cb6f 100644 --- a/po/gl.po +++ b/po/gl.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2012-02-23 14:38+0100\n" "Last-Translator: Leandro Regueiro \n" "Language-Team: Galician \n" @@ -27,48 +27,54 @@ msgstr "" msgid "bad array subscript" msgstr "subíndice de matriz incorrecto" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: non é posíbel converter a matriz de indizada a asociativa" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: índice de matriz asociativa non válido" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: non é posíbel asignar a un índice que non é numérico" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: se debe usar un subíndice ao asignar a unha matriz asociativa" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: non foi posíbel crear: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: non foi posíbel atopar a combinación de teclas " "para a orde" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: o primeiro carácter que non é espazo en branco non é `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "no hai un `%c' que peche en %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: falta un `:' separador" @@ -88,7 +94,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': nome de alias non válido" @@ -149,11 +155,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME non está definido" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "demasiados argumentos" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "non hai outro directorio" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD non está definido" @@ -172,7 +183,7 @@ msgstr "aviso: " msgid "%s: usage: " msgstr "%s: uso: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: a opción require un argumento" @@ -187,7 +198,7 @@ msgstr "%s: requírese un argumento numérico" msgid "%s: not found" msgstr "%s: non se atopou" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: opción non válida" @@ -197,7 +208,7 @@ msgstr "%s: opción non válida" msgid "%s: invalid option name" msgstr "%s: nome de opción non válido" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': non é un identificador válido" @@ -306,7 +317,7 @@ msgid "%s: invalid action name" msgstr "%s: nome de acción non válido" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: non hai completado de especificación" @@ -319,7 +330,7 @@ msgstr "aviso: é posíbel que a opción -F non funcione como se espera" msgid "warning: -C option may not work as you expect" msgstr "aviso: é posíbel que a opción -C non funcione como se espera" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "non se está executando a función de completado" @@ -327,41 +338,47 @@ msgstr "non se está executando a función de completado" msgid "can only be used in a function" msgstr "só se pode usar dentro dunha función" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "non se pode use `-f' para facer funcións" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: función de só lectura" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: non é posíbel destruír variábeis de matriz desta forma" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: non é posíbel converter unha matriz asociativa a indizada" @@ -395,7 +412,7 @@ msgstr "%s: non foi cargado dinamicamente" msgid "%s: cannot delete: %s" msgstr "%s: non foi posíbel eliminar: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: é un directorio" @@ -410,7 +427,7 @@ msgstr "%s: non é un ficheiro regular" msgid "%s: file is too large" msgstr "%s: o ficheiro é demasiado grande" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: non é posíbel executar o ficheiro binario" @@ -452,7 +469,7 @@ msgstr "especificación de historial" msgid "%s: cannot open temp file: %s" msgstr "%s: non é posíbel abrir o ficheiro temporal: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "actual" @@ -799,21 +816,21 @@ msgstr "erro de lectura: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "só se pode usar «return» nunha función ou guión lido con «source»" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "non é posíbel borrar ao mesmo tempo unha función e unha variábel" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: non é posíbel borrar" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: non é posíbel borrar: %s é de só lectura" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: non é unha variábel de matriz" @@ -832,11 +849,11 @@ msgstr "%s: non é posíbel borrar" msgid "shift count" msgstr "conta de shift" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "non é posíbel activar e desactivar opcións do shell simultaneamente" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nome de opción do shell non válido" @@ -982,61 +999,66 @@ msgstr "\aexpirou mentres agardaba algunha entrada: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "non é posíbel redirixir a saída estándar desde /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': carácter de formato non válido" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "erro de canalización" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restrinxido: non se pode especificar `/' en nomes de ordes" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: non se atopou a orde" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: intérprete erróneo" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: non é posíbel executar o ficheiro binario" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s é unha orde interna do shell\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "no se pode duplicar o df %d ao df %d" @@ -1112,7 +1134,7 @@ msgstr "%s: erro de expresión\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: non é posíbel acceder aos directorios pai" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "non é posíbel restabelecer o modo nodelay para o df %d" @@ -1130,148 +1152,148 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" "save_bash_input: o almacenamento intermedio xa existe para o novo fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: tubería de pgrp" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "o pid `forked' %d aparece no traballo en execución %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "borrando o trabajo detido %d con grupo de proceso %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: o proceso %5ld (%s) en the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) márcase como vivo aínda" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: non existe tal pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Sinal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Feito" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Detido" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Detido(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "En execución" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Feito(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Saída %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Estado descoñecido" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(«core» xerado) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (dir agora: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid fillo (%ld a %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld non é un proceso fillo desta shell" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Non hai un rexistro do proceso %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: o traballo %d está detido" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: o traballo rematou" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: o trabajo %d xa está en segundo plano" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: actívase WNOHANG para evitar o bloque indefinido" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: liña %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " («core» generado)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(dir agora: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs_control: fallou getpgrp" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_jobs_control: disciplina de liña" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_jobs_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "non é posíbel estabelecer o grupo de procesos de terminal (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "non hai control de trabalos nesta shell" @@ -1428,103 +1450,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: a instrucción de redirección `%d' está fóra de rango" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF inesperado mentres se buscaba un `%c' coincidente" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "EOF inesperado mentres se buscaba `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "error de sintaxe na expresión condicional: elemento inesperado `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "error sintáctico na expresión condicional" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "elemento inesperado `%s', agardábase `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "agardábase `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argumento inesperado `%s' para o operador unario condicional" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argumento inesperado para o operador unario condicional" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "elemento inesperado `%s', agardábase un operador binario condicional" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "agardábase un operador binario condicional" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argumento inesperado `%s' para o operador binario condicional" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argumento inesperado para o operador binario condicional" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "elemento inesperado `%c' na orde condicional" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "elemento inesperado `%s' na orde condicional" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "elemento inesperado %d na orde condicional" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "error de sintaxe perto do elemento inesperado `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "erro de sintaxe cerca de «%s»" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "error de sintaxe: non se agardaba o final do fichero" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "erro de sintaxe" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Use «%s» para deixar o shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "EOF non agardado mentres se buscaba un «)» coincidente" @@ -1533,6 +1562,11 @@ msgstr "EOF non agardado mentres se buscaba un «)» coincidente" msgid "completion: function `%s' not found" msgstr "completion: non se atopa a función `%s'" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1599,44 +1633,48 @@ msgstr "non se admite /dev/(tcp|udp)/anfitrion/porto sen rede" msgid "redirection error: cannot duplicate fd" msgstr "erro de redirección: non é posíbel duplicar o fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "non é posíbel atopar /tmp, por favor creeo!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp debe ser un nome de directorio válido" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: opción non válida" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "non é posíbel restabelecer o modo nodelay para o df %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "non é posíbel restabelecer o modo nodelay para o df %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: é un directorio" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Non teño nome!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versión %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1645,54 +1683,54 @@ msgstr "" "Uso:\t%s [opción GNU longa] [opción] ...\n" "\t%s [opción GNU longa] [opción] guión-do-shell\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Opcións GNU longas:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opcións do shell:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD o -c orde ou -O opcion_shopt\t\t(só invocación)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ou -o opción\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Escriba `%s -c \"help set\"' para máis información sobre as opcións do " "shell.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Escriba `%s -c help' para máis información sobre as ordes internas do " "shell.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Use a orden `bashbug' para reportar erros.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operación non válida" @@ -1866,82 +1904,92 @@ msgstr "Sinal descoñecido #" msgid "Unknown Signal #%d" msgstr "Sinal descoñecido #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "susbtitución errónea: non hai un `%s' que peche en %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: no é posíbel asignar unha lista a un membro da matriz" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "non é posíbel crear a tubería para a sustitución do proceso" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "non é posíbel crear un proceso fillo para a substitución do proceso" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "non é posíbel abrir a tubería chamada %s para lectura" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "non é posíbel abrir a tubería chamada %s para escritura" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "non é posíbel duplicar a tubería chamada %s como df %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "substitución errónea: non hai unha \"`\" que peche en %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "non é posíble crear a tubería para a substitución da orde" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "non é posíbel crear un proceso fillo para a substitución da orde" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: non é posíbel duplicar a tubería como fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: substitución errónea" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: conta de liñas non válida" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': nome de alias non válido" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parámetro nulo ou non estabelecido" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresión de subcadea < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: non é posíbel asignar de esta forma" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1949,12 +1997,12 @@ msgstr "" "versiones futuras do intérprete obligarán a evaluación como unha " "substitución aritmética" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substitución errónea: non hai unha \"`\" que peche en %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "non hai concidencia: %s" @@ -1987,7 +2035,7 @@ msgstr "%s: agardábase un operador unario" msgid "%s: binary operator expected" msgstr "%s: agardábase un operador binario" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "falta un «]»" @@ -2013,74 +2061,74 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: sinal errónea %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "erro ao importar a definición da función para «%s»" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "o nivel de shell (%d) é demasiado alto, restabelécese a 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: non hai contexto de función no ámbito actual" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: non é posíbel asignar o gd á variábel" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: non hai contexto de función no ámbito actual" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s ten exportstr nulo" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "carácter non válido %d en exportsrt para %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "non hai «=» en exportstr para %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: a cabezak de shell_variables non é un contexto de función" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: non é un contexto global_variables " -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: a cabeza de shell_variables non é un ámbito de ambiente temporal" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: non é posíbel abrir como FICHEIRO" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: valor non válido para o descitor de ficheiro de rastreo" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s fóra de rango" @@ -2883,10 +2931,11 @@ msgid "" msgstr "" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Estabelece valores de variábeis e atributos.\n" " \n" @@ -3221,7 +3270,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4092,6 +4141,7 @@ msgstr "" " Devolve o estado da última orde executada." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4101,7 +4151,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Crea un coproceso chamado NOME.\n" " \n" diff --git a/po/hr.gmo b/po/hr.gmo index aaf95e419145ca272d54cad0fcd268aa8cf6970a..f905e728d95ad931d55f2783b7668e60f64739dd 100644 GIT binary patch delta 7638 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 delta 7826 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 diff --git a/po/hr.po b/po/hr.po index 9f42e876..f03e4bd3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2013-04-18 01:00+0200\n" "Last-Translator: Tomislav Krznar \n" "Language-Team: Croatian \n" @@ -23,46 +23,52 @@ msgstr "" msgid "bad array subscript" msgstr "neispravan indeks polja" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: ne mogu pretvoriti indeksirano u asocijativno polje" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: neispravan kljuÄ asocijativnog polja" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: ne mogu pridružiti nenumeriÄkom indeksu" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: mora koristiti indeks pri pridruživanju asocijativnog polja" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: ne mogu napraviti: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: ne mogu pronaći tipkovniÄku mapu za naredbu" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: prvi znak razliÄit od praznine nije „\"â€" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "nema zatvorene „%c†u %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: nedostaje dvotoÄje za razdvajanje" @@ -82,7 +88,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%sâ€: neispravno drugo ime" @@ -143,11 +149,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME nije postavljen" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "previÅ¡e argumenata" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "nema drugog direktorija" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD nije postavljen" @@ -166,7 +177,7 @@ msgstr "upozorenje: " msgid "%s: usage: " msgstr "%s: uporaba: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: opcija zahtijeva argument" @@ -181,7 +192,7 @@ msgstr "%s: potreban je numeriÄki argument" msgid "%s: not found" msgstr "%s: nije pronaÄ‘en" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: neispravna opcija" @@ -191,7 +202,7 @@ msgstr "%s: neispravna opcija" msgid "%s: invalid option name" msgstr "%s: neispravno ime opcije" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%sâ€: nije ispravan identifikator" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s: neispravno ime radnje" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: nije navedeno nadopunjavanje" @@ -313,7 +324,7 @@ msgstr "upozorenje: opcija -F možda neće raditi kako želite" msgid "warning: -C option may not work as you expect" msgstr "upozorenje: opcija -C možda neće raditi kako želite" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "trenutno ne izvrÅ¡avam funkciju nadopunjavanja" @@ -321,41 +332,47 @@ msgstr "trenutno ne izvrÅ¡avam funkciju nadopunjavanja" msgid "can only be used in a function" msgstr "može se koristiti samo u funkciji" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "„%sâ€: neispravno drugo ime" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "ne mogu koristiti „-f†za izradu funkcija" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkcija samo za Äitanje" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: ne mogu uniÅ¡titi varijable polja na ovaj naÄin" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: ne mogu pretvoriti asocijativno u indeksirano polje" @@ -389,7 +406,7 @@ msgstr "%s: nije dinamiÄki uÄitan" msgid "%s: cannot delete: %s" msgstr "%s: ne mogu ukloniti: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: to je direktorij" @@ -404,7 +421,7 @@ msgstr "%s: nije obiÄna datoteka" msgid "%s: file is too large" msgstr "%s: datoteka je prevelika" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ne mogu izvrÅ¡iti binarnu datoteku" @@ -446,7 +463,7 @@ msgstr "specifikacija povijesti" msgid "%s: cannot open temp file: %s" msgstr "%s: ne mogu otvoriti privremenu datoteku: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "trenutno" @@ -757,21 +774,21 @@ msgstr "greÅ¡ka Äitanja: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "pozivanje „return†je moguće samo iz funkcije ili pokrenute skripte" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "ne mogu istovremeno poniÅ¡titi funkciju i varijablu" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ne mogu poniÅ¡titi" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ne mogu poniÅ¡titi: %s je samo za Äitanje" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: nije varijabla polja" @@ -790,11 +807,11 @@ msgstr "%s: ne mogu poniÅ¡titi" msgid "shift count" msgstr "broj pomaka" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "ne mogu istovremeno postaviti i poniÅ¡titi opcije ljuske" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: neispravno ime opcije ljuske" @@ -940,61 +957,66 @@ msgstr "\avrijeme Äekanja ulaza je isteklo: automatska-odjava\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "ne mogu preusmjeriti standardni ulaz iz /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%câ€: neispravan znak oblika" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "greÅ¡ka cjevovoda" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: ograniÄeno: ne možete navesti „/†u imenu naredbe" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: naredba nije pronaÄ‘ena" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: neispravan tumaÄ" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ne mogu izvrÅ¡iti binarnu datoteku" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s je ugraÄ‘en u ljusku\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "ne mogu udvostruÄiti opisnik datoteke %d u opisnik datoteke %d" @@ -1069,7 +1091,7 @@ msgstr "%s: greÅ¡ka izraza\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: ne mogu pristupiti nadreÄ‘enim direktorijima" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -1084,148 +1106,148 @@ msgstr "ne mogu alocirati novi datoteÄni opisnik za bash ulaz iz fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: meÄ‘uspremnik već postoji za novi fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "razdvojen pid %d se javlja u pokrenutom zadatku %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "uklanjam zaustavljeni zadatak %d s grupom procesa %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) u the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) oznaÄen kao joÅ¡ živ" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ne postoji takav pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Gotovo" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Zaustavljen" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Zaustavljen(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Pokrenut" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Gotovo(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Izlaz %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Nepoznato stanje" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(jezgra izbaÄena) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld nije dijete ove ljuske" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ne postoji zapis o procesu %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: zadatak %d je zaustavljen" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: zadatak je dovrÅ¡en" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: zadatak %d je već u pozadini" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: redak %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (jezgra izbaÄena)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(sadaÅ¡nji wd: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp nije uspio" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "ne mogu postaviti grupu procesa terminala (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "nema kontrole zadataka u ovoj ljusci" @@ -1376,103 +1398,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "neoÄekivani EOF pri traženju odgovarajućeg „%câ€" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "neoÄekivani EOF pri traženju „]]â€" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "sintaksna greÅ¡ka u uvjetnom izrazu: neoÄekivani simbol „%sâ€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "sintaksna greÅ¡ka u uvjetnom izrazu" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "neoÄekivani simbol „%sâ€, oÄekujem „)â€" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "oÄekujem „)â€" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "neoÄekivani argument „%s†uvjetnom unarnom operatoru" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "neoÄekivani argument uvjetnom unarnom operatoru" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "neoÄekivani simbol „%sâ€, oÄekujem uvjetni binarni operator" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "oÄekujem uvjetni binarni operator" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "neoÄekivani argument „%s†uvjetnom binarnom operatoru" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "neoÄekivani argument uvjetnom binarnom operatoru" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "neoÄekivani simbol „%c†u uvjetnoj naredbi" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "neoÄekivani simbol „%s†u uvjetnoj naredbi" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "neoÄekivani simbol %d u uvjetnoj naredbi" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "sintaksna greÅ¡ka kod neoÄekivanog simbola „%sâ€" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "sintaksna greÅ¡ka kod „%sâ€" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "sintaksna greÅ¡ka: neoÄekivani kraj datoteke" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "sintaksna greÅ¡ka" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Koristite „%s†za napuÅ¡tanje ljuske.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "neoÄekivani EOF pri traženju odgovarajuće „)â€" @@ -1481,6 +1510,11 @@ msgstr "neoÄekivani EOF pri traženju odgovarajuće „)â€" msgid "completion: function `%s' not found" msgstr "completion: funkcija „%s†nije pronaÄ‘ena" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1547,44 +1581,48 @@ msgstr "/dev/(tcp|udp)/host/port nije podržan bez umrežavanja" msgid "redirection error: cannot duplicate fd" msgstr "greÅ¡ka preusmjeravanja: ne mogu udvostruÄiti opisnik datoteke" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "ne mogu pronaći /tmp, molim, napravite ga!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp mora biti ispravno ime direktorija" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: neispravna opcija" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: to je direktorij" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nemam ime!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, inaÄica %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1593,49 +1631,49 @@ msgstr "" "Uporaba: %s [GNU dugaÄka opcija] [opcija] ...\n" "\t %s [GNU dugaÄka opcija] [opcija] skripta ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU dugaÄke opcije:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opcije ljuske:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Koristite naredbu „bashbug†za prijavljivanje greÅ¡aka.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1809,94 +1847,104 @@ msgstr "Nepoznat signal #" msgid "Unknown Signal #%d" msgstr "Nepoznat signal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "neispravna zamjena: nema zatvorene „%s†u %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: ne mogu pridružiti popis elementu polja" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "ne mogu napraviti cjevovod za zamjenu procesa" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "ne mogu napraviti dijete za zamjenu procesa" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "ne mogu otvoriti imenovani cjevovod %s za Äitanje" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "ne mogu otvoriti imenovani cjevovod %s za pisanje" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "ne mogu udvostruÄiti imenovani cjevovod %s kao opisnik datoteke %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "neispravna zamjena: nema zatvorenog „`†u %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "ne mogu napraviti cjevovod za zamjenu naredbi" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "ne mogu napraviti dijete za zamjenu naredbi" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute: ne mogu udvostruÄiti cjevovod kao opisnik datoteke 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: neispravna zamjena" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: neispravan broj redaka" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "„%sâ€: neispravno drugo ime" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametar prazan ili nije postavljen" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: izraz podniza < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ne mogu pridružiti na ovaj naÄin" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "buduće inaÄice ljuske će prisiliti procjenu kao aritmetiÄku zamjenu" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "neispravna zamjena: nema zatvorenog „`†u %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "nema podudaranja: %s" @@ -1929,7 +1977,7 @@ msgstr "%s: oÄekujem unarni operator" msgid "%s: binary operator expected" msgstr "%s: oÄekujem binarni operator" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "nedostaje „]â€" @@ -1953,72 +2001,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: neispravan signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "greÅ¡ka pri uvozu definicije funkcije za „%sâ€" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "razina ljuske (%d) je previsoka, vraćam na 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: ne mogu pridružiti opisnik datoteke varijabli" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s ima prazan exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: ne mogu otvoriti kao DATOTEKU" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s je izvan granica" @@ -2679,10 +2727,11 @@ msgid "" msgstr "" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Postavi vrijednosti i svojstva varijabli.\n" " \n" @@ -2989,7 +3038,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3783,7 +3832,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 diff --git a/po/hu.gmo b/po/hu.gmo index 7005772cab5f1b45aea93b06434c465881cf04fd..1887464ab4b37932d5612e1c8ed3f14c662a0138 100644 GIT binary patch delta 12270 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 diff --git a/po/hu.po b/po/hu.po index ee6e42a0..9ecb527f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2016-01-03 23:59+0100\n" "Last-Translator: Mate Ory \n" "Language-Team: Hungarian \n" @@ -23,47 +23,53 @@ msgstr "" msgid "bad array subscript" msgstr "Hibás tömbindex" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: nem lehetséges az indexelt tömb asszociatívvá alakítása" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: érvénytelen asszociatívtömb-index" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: a nem-szám indexnek való értékadás nem lehetséges" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: asszociatív tömbhöz való értékadásnál meg kell adni az indexet" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nem hozható létre: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: nem található billentyűkiosztás a parancshoz" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: az elsÅ‘ nem szóközkarakter nem „\"â€" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "nincs záró „%c†a következÅ‘ben: %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: hiányzó kettÅ‘spont-elválasztó" @@ -85,7 +91,7 @@ msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" "szögleteszárójel-kiegészítés: nem sikerült a memóriafoglalás „%s†számára" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%sâ€: érvénytelen alias-név" @@ -147,11 +153,16 @@ msgstr "" msgid "HOME not set" msgstr "Nincs beállítva HOME" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "túl sok argumentum" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "nincs másik könyvtár" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Nincs beállítva OLDPWD" @@ -170,7 +181,7 @@ msgstr "figyelmeztetés: " msgid "%s: usage: " msgstr "%s: használat: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: a kapcsolónak kötelezÅ‘ argumentuma van" @@ -185,7 +196,7 @@ msgstr "%s: a kötelezÅ‘ argumentum egy szám" msgid "%s: not found" msgstr "%s: nem található" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: érvénytelen kapcsoló" @@ -195,7 +206,7 @@ msgstr "%s: érvénytelen kapcsoló" msgid "%s: invalid option name" msgstr "%s: érvénytelen kapcsolónév" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%sâ€: érvénytelen azonosító" @@ -304,7 +315,7 @@ msgid "%s: invalid action name" msgstr "%s: érvénytelen műveletnév" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: nincs kiegészítés meghatározva" @@ -317,7 +328,7 @@ msgstr "figyelmeztetés: a -F kapcsoló nem a várt módon működhet" msgid "warning: -C option may not work as you expect" msgstr "figyelmeztetés: a -C kapcsoló nem a várt módon működhet" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "jelenleg nincs kiegészítési függvény végrehajtás alatt" @@ -325,41 +336,47 @@ msgstr "jelenleg nincs kiegészítési függvény végrehajtás alatt" msgid "can only be used in a function" msgstr "csak függvényben használható" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: a referenciaváltozó nem lehet tömb" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: a névhivatkozás változó önhivatkozása nem engedélyezett" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: körkörös névhivatkozás" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: érvénytelen változóérték a névhivatkozáshoz" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "nem használható a „-f†függvény létrehozására" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: csak olvasható függvény" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: az idézÅ‘jelezett összetett tömb értékadása elavult" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: ilyen módon nem lehet tömböt megszüntetni" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: nem lehetséges az asszociatív tömb indexeltté alakítása" @@ -393,7 +410,7 @@ msgstr "%s: nem dinamikusan van betöltve" msgid "%s: cannot delete: %s" msgstr "%s: nem törölhetÅ‘: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s egy könyvtár" @@ -408,7 +425,7 @@ msgstr "%s: nem normál fájl" msgid "%s: file is too large" msgstr "%s: a fájl túl nagy" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: bináris nem hajtható végre" @@ -450,7 +467,7 @@ msgstr "elÅ‘zményválasztás" msgid "%s: cannot open temp file: %s" msgstr "%s: az átmeneti fájl nem nyitható meg: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "aktuális" @@ -794,21 +811,21 @@ msgstr "" "csak függvénybÅ‘l vagy source-olt parancsfájlból lehet „returnâ€-nel " "visszatérni" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "nem lehet egyszerre függvényt és változót megszüntetni" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: nem szüntethetÅ‘ meg" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nem szüntethetÅ‘ meg: csak olvasható %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: nem egy tömbváltozó" @@ -827,12 +844,12 @@ msgstr "%s: nem exportálható" msgid "shift count" msgstr "shift-szám" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" "nem lehet egyszerre beállítani és törölni parancsértelmezÅ‘-beállításokat" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: érvénytelen parancsértelmezÅ‘kapcsoló-név" @@ -978,61 +995,66 @@ msgstr "\aidÅ‘túllépés bemenetre várva: automatikus kijelentkezés\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "szabványos bemenet /dev/null-ra állítása sikertelen: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "IDÅFORMÃTUM: „%câ€: érvénytelen formátumkarakter" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "hibás csÅ‘vezeték" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: a maximális eval beágyazási szint túllépve (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: a maximális source beágyazási szint túllépve (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: a maximális függvénybeágyazási szint túllépve (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: korlátozott: nem adható meg „/†a parancsok nevében" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: parancs nem található" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: rossz parancsértelmezÅ‘" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: a bináris nem hajtható végre: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "„%sâ€: egy speciális beépített parancs" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nem lehet duplikálni a(z) %d. fájlleírót a(z) %d. helyre" @@ -1107,7 +1129,7 @@ msgstr "%s: hibás kifejezés\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: nem érhetÅ‘ek el a szülÅ‘könyvtárak" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nem lehet újraindítani a nodelay módot a(z) %d. fájlleíróhoz" @@ -1123,148 +1145,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: már van puffer a(z) %d. fájlleíróhoz" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp csÅ‘vezeték" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "a(z) %d számú forkolt pid a(z) %d számú munkában jelent meg" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "%d. számú megállított munka törlése a %ld számú folyamatcsoporttal" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: %5ld. folyamat (%s) a the_pipeline-ban" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: %5ld. folyamat (%s) még élÅ‘ként van jelölve" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: nincs ilyen pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "%d. szignál" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Kész" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Megállítva" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Megállítva(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Fut" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Kész(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Kilépett(%d)" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ismeretlen állapot" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core készült) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (mk: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "gyermek setpgid (innen: %ld ide: %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: %ld. számú folyamat nem gyermeke ennek a parancsértelmezÅ‘nek" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Nincs bejegyzés %ld. számú folyamatról" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: %d. számú munka le lett állítva" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: a munka be lett fejezve" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: %d. számú munka már a háttérben van" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: WNOHANG bekapcsolása a korlátlan blokk elkerülésére" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: %d. sor: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core készült)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(mk most: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp sikertelen" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "nem állítható be a terminál folyamatcsoportja (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "nincsen munkakezelés ebben a parancsértelmezÅ‘ben" @@ -1417,103 +1439,110 @@ msgstr "a(z) %d. sorban kezdett heredocot EOF zárja („%s†helyett)" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: %d. átirányító utasítás kívül esik a tartományon" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "a maximális here-document szám túllépve" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "váratlan EOF „%c†helyett" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "váratlan EOF „]]†helyett" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "szintaktikai hiba a feltételben: váratlan token: „%sâ€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "szintaktikai hiba a feltételben" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "váratlan token (%s) „)†helyett" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "„)†szükséges" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "váratlan argumentum (%s) feltételes egyoperandusú operátorhoz" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "váratlan argumentum feltételes egyoperandusú operátorhoz" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "váratlan token (%s), feltételes kétoperandusú operátor szükséges" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "feltételes kétoperandusú operátor szükséges" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "váratlan argumentum (%s) feltételes kétoperandusú operátorhoz" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "váratlan argumentum feltételes kétoperandusú operátorhoz" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "váratlan token (%c) feltételes parancsban" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "váratlan token (%s) feltételes parancsban" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "váratlan token (%d) feltételes parancsban" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "szintaktikai hiba „%s†váratlan token közelében" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "szintaktikai hiba „%s†közelében" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "szintaktikai hiba: váratlan fájlvége" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "szintaktikai hiba" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "„%s†használatával lehet elhagyni a parancsértelmezÅ‘t.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "váratlan EOF „)†helyett" @@ -1522,6 +1551,11 @@ msgstr "váratlan EOF „)†helyett" msgid "completion: function `%s' not found" msgstr "kiegészítés: nem található „%s†függvény" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1588,44 +1622,48 @@ msgstr "/dev/(tcp|udp)/host/port nincs támogatva hálózat nélkül" msgid "redirection error: cannot duplicate fd" msgstr "átirányítási hiba: nem lehet duplikálni a fájlleírót" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "nem található /tmp, hozza létre!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp érvényes könyvtárnév kell legyen" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: érvénytelen kapcsoló" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "az uid nem állítható be %d értékre: a hatásos uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "a gid nem állítható be %d értékre: a hatásos gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: ez egy könyvtár" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nincs nevem!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, %s-(%s) verzió\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1634,53 +1672,53 @@ msgstr "" "Használat:\t%s [GNU hosszú kapcsoló] [kapcsoló] ...\n" "\t%s [GNU hosszú kapcsoló] [kapcsoló] parancsfájl ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU hosszú kapcsolók:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "ParancsértelmezÅ‘-kapcsolók:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD vagy -c parancs vagy -O shopt_option\t\t(csak hívás)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s vagy -o kapcsoló\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "A „%s -c \"help set\"†további információt ad a parancsértelmezÅ‘-" "beállításokról.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "A „%s -c help†további információt ad a beépített parancsokról.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "A „bashbug†paranccsal jelenthet hibákat.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "a bash honlapja: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Ãltalános segítség a GNU szoftverek használatához: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: érvénytelen művelet" @@ -1854,82 +1892,92 @@ msgstr "Ismeretlen szignál #" msgid "Unknown Signal #%d" msgstr "%d. számú ismeretlen szignál" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "hibás helyettesítés: nincs záró „%s†a következÅ‘ben: %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: lista nem adható tömbelemnek értékül" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "nem hozható létre a csÅ‘vezeték a folyamatbehelyettesítéshez" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "nem hozható létre a gyermek a folyamatbehelyettesítéshez" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nem nyitható meg olvasásra a(z) %s csÅ‘vezeték" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nem nyitható meg írásra a(z) %s csÅ‘vezeték" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nem duplikálható a(z) %s csÅ‘vezeték %d. fájlleíróként" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "hibás helyettesítés: nincs záró „`†a következÅ‘ben: %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "nem hozható létre csÅ‘vezeték a parancsbehelyettesítéshez" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "nem hozható létre gyermek a parancsbehelyettesítéshez" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nem duplikálható a csÅ‘vezeték 1. fájlleíróként" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: érvénytelen változóérték a névhivatkozáshoz" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: rossz helyettesítés" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: az indirekt kiegészítés érvénytelen" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: érvénytelen változónév" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: a paraméter null vagy nincs beállítva" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: részkarakterlánc-kifejezés < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nem lehet így értéket adni" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1937,12 +1985,12 @@ msgstr "" "a parancsértelmezÅ‘ késÅ‘bbi verziói kötelezÅ‘vé teszik majd az aritmetikai " "kiértékelést" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "hibás helyettesítés: nincs záró „`†a következÅ‘ben: %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "nincs találat: %s" @@ -1975,7 +2023,7 @@ msgstr "%s: egyoperandusú operátor szükséges" msgid "%s: binary operator expected" msgstr "%s: kétoperandusú operátor szükséges" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "hiányzó „]â€" @@ -2000,72 +2048,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: rossz szignál: %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "hiba a függvénydefiníció betöltésekor: „%sâ€" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "a parancsértelmezÅ‘ szintje (%d) túl magas, visszaállítás 1-re" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: körkörös névhivatkozás" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: nincs függvénykörnyezet az aktuális látókörben" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: nem lehet a változóhoz értéket rendelni" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: érvénytelen változóérték a névhivatkozáshoz" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: nincs függvénykörnyezet az aktuális látókörben" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s exportstr-je null" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "érvénytelen karakter (%d) %s exportstr-jében" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "nincs „=†%s exportstr-jében" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: shell_variables feje nem egy függvénykörnyezet" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: nincs global_variables környezet" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: shell_variables feje nem egy átmeneti környezeti látókör" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: nem nyitható meg FILE-ként" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: érvénytelen érték a trace fájlleíróhoz" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: a kompatibilitási érték kívül esik a tartományon" @@ -2941,10 +2989,11 @@ msgstr "" " hiba történik." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Változóértékek és attribútumok beállítása.\n" " \n" @@ -3473,7 +3522,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4928,6 +4977,7 @@ msgstr "" " Az utolsónak végrehajtott parancs kilépési kódja." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4937,7 +4987,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Egy NÉV nevű társfolyamat létrehozása.\n" " \n" diff --git a/po/id.gmo b/po/id.gmo index 84aa64544513c5bc47d83ef64ee921655fc9650e..9b65c6dbdefcb13bf1c871b4fc750cdf33076006 100644 GIT binary patch delta 11148 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 delta 11985 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 diff --git a/po/id.po b/po/id.po index 54411d52..fbb5a00c 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.3-rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2014-08-06 12:45+0700\n" "Last-Translator: Arif E. Nugroho \n" "Language-Team: Indonesian \n" @@ -21,46 +21,52 @@ msgstr "" msgid "bad array subscript" msgstr "array subscript buruk" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: tidak dapat mengubah index ke array yang berassosiasi" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: kunci array assosiasi tidak valid" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: tidak dapat mengassign ke index tidak-numeric" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: harus menggunakan subscript ketika memberikan assosiasi array" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: tidak dapat membuat: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: tidak dapat menemukan keymap untuk perintah" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: bukan karakter whitespace (spasi) pertama ditemukan `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "tidak menutup '%c' dalam %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: hilang pemisah colon" @@ -80,7 +86,7 @@ msgstr "brace expansion: failed to allocate memory for %d elements" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "brace expansion: failed to allocate memory for `%s'" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': nama alias tidak valid" @@ -141,11 +147,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME tidak diset" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "terlalu banyak argumen" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "top direktori yang baru." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD tidak diset" @@ -164,7 +175,7 @@ msgstr "peringatan: " msgid "%s: usage: " msgstr "%s: penggunaan: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: pilihan membutuhkan sebuah argumen" @@ -179,7 +190,7 @@ msgstr "%s: argumen numeric dibutuhkan" msgid "%s: not found" msgstr "%s: tidak ditemukan" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: pilihan tidak valid" @@ -189,7 +200,7 @@ msgstr "%s: pilihan tidak valid" msgid "%s: invalid option name" msgstr "%s: nama pilihan tidak valid" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': bukan sebuah identifier yang valid" @@ -298,7 +309,7 @@ msgid "%s: invalid action name" msgstr "%s: nama aksi tidak valid" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: tidak ada spesifikasi completion" @@ -313,7 +324,7 @@ msgid "warning: -C option may not work as you expect" msgstr "" "peringatan: pilihan -C mungkin tidak bekerja seperti yang anda harapkan" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "saat ini sedang tidak menjalankan fungsi completion" @@ -321,41 +332,47 @@ msgstr "saat ini sedang tidak menjalankan fungsi completion" msgid "can only be used in a function" msgstr "hanya dapat digunakan dalam sebuah fungsi" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: reference variable cannot be an array" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: nameref variable self references not allowed" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: circular name reference" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: nilai dari berkas pendeskripsi penelusur tidak valid" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "tidak dapat menggunakan `-f' untuk membuat fungsi" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: fungsi baca-saja" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: tidak dapat menghapus variabel array secara ini" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: tidak dapat mengubah assosiasi ke array index" @@ -389,7 +406,7 @@ msgstr "%s: bukan dinamically loaded" msgid "%s: cannot delete: %s" msgstr "%s: tidak dapat menghapus: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: bukan sebuah direktori" @@ -404,7 +421,7 @@ msgstr "%s: bukan sebuah file umum" msgid "%s: file is too large" msgstr "%s: file terlalu besar" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: tidak dapat menjalankan berkas binary" @@ -446,7 +463,7 @@ msgstr "spesifikasi sejarah" msgid "%s: cannot open temp file: %s" msgstr "%s: tidak dapat membuka file sementara: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "sekarang" @@ -797,21 +814,21 @@ msgstr "error baca: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "hanya dapat `return' dari sebuah fungsi atau script yang disource" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "tidak dapat secara simultan unset sebuah fungsi dan sebuah variable" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: tidak dapat unset" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: tidak dapat unset: baca-saja %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: bukan sebuah variabel array" @@ -830,11 +847,11 @@ msgstr "%s: tidak dapat unset" msgid "shift count" msgstr "shift terhitung" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "tidak dapat menset dan menunset pilihan shell secara bersamaan" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nama pilihan shell tidak valid" @@ -980,62 +997,67 @@ msgstr "kehabisan waktu menunggu masukan: otomatis-keluar\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "tidak dapat menyalurkan masukan standar dari /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': karakter format tidak valid" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "pipe error" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: maximum function nesting level exceeded (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximum function nesting level exceeded (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximum function nesting level exceeded (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" "%s: dibatasi: tidak dapat menspesifikasikan '/' dalam nama nama perintah" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: perintah tidak ditemukan" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: interpreter buruk" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: tidak dapat menjalankan berkas binary: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s': adalah sebuah shell builtin" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "tidak dapat menduplikasikan fd %d ke fd %d" @@ -1110,7 +1132,7 @@ msgstr "%s: expresi error\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: tidak dapat mengakses direktori orang tua" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "tidak dapat mereset mode nodelay untuk fd %d" @@ -1127,148 +1149,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "simpan bash_input: buffer telah ada untuk fd %d baru" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "forked pid %d terlihat dalam pekerjaan yang sedang berjalan %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "menghapus pekerjaan yang terhenti %d dengan proses grup %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) dalam the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) ditandai dengan tetap hidup" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: tidak ada pid seperti itu" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "sinyal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Selesai" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Terhenti" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Terhenti(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Berjalan" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Selesai(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Keluar %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Status tidak diketahui" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core didump) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "anak setpgid (%ld ke %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Tidak ada catatan untuk proses %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: pekerjaan %d terhenti" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: pekerjaan telah selesai" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: pekerjaan %d sudah berjalan di belakang (background)" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: mengaktifkan WNOHANG untuk menghindari blok tak terhingga" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: baris %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core didump)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd sekarang: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp gagal" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: baris disiplin" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "tidak dapat menset terminal proses grup (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "tidak ada pengontrol pekerjaan dalam shell ini" @@ -1423,103 +1445,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: instruksi redireksi `%d' diluar dari jangkauan" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF tidak terduga ketika mencari untuk pencocokan `%c'" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "EOF tidak terduga ketika mencari untuk `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntax error dalam ekspresi kondisional: tanda `%s' tidak terduga" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntax error dalam ekspresi kondisional" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "tanda `%s' tidak terduga, diduga `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "diduga `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argumen tidak terduga `%s' ke operator kondisional unary" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argumen tidak terduga untuk operasi unary kondisional" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "tanda `%s' tidak terduga, operator binary kondisional diduga" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "operator binary kondisional diduga" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argumen `%s' tidak terduga ke operator binary kondisional" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argumen tidak terduga ke operasi binary kondisional" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "tanda `%c' tidak terduga dalam perintah kondisional" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "tanda `%s' tidak terduga dalam perintah kondisional" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "tanda %d tidak terduga dalam perintah kondisional" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntax error didekat tanda `%s' yang tidak terduga" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntax error didekat `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntax error: tidak terduga diakhir dari berkas" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntax error" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Gunakan \"%s\" untuk meninggalkan shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "EOF tidak terduga ketika mencari untuk pencocokan ')'" @@ -1528,6 +1557,11 @@ msgstr "EOF tidak terduga ketika mencari untuk pencocokan ')'" msgid "completion: function `%s' not found" msgstr "completion: fungsi `%s' tidak ditemukan" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1594,44 +1628,48 @@ msgstr "/dev/(tcp|udp)/host/port tidak dilayani tanpa jaringan" msgid "redirection error: cannot duplicate fd" msgstr "redirection error: tidak dapat menduplikasi fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "tidak dapat menemukan /tmp, tolong buat!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp harus berupa sebuah nama direktori yang valid" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: pilihan tidak valid" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "tidak dapat mereset mode nodelay untuk fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "tidak dapat mereset mode nodelay untuk fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: bukan sebuah direktori" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Aku tidak memiliki nama!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versi %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1640,54 +1678,54 @@ msgstr "" "Penggunaan:\t%s [GNU pilihan panjang] [pilihan] ...\n" "\t%s [GNU pilihan panjang] [pilihan] berkas-script ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU pilihan panjang:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Pilihan shell:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t-ilrsD atau -c perintah atau -O shopt_option\t\t(hanya pemanggilan)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s atau pilihan -o\n" -#: shell.c:1934 +#: shell.c:1959 #, 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 pilihan " "shell.\n" -#: shell.c:1935 +#: shell.c:1960 #, 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" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Gunakan perintah 'bashbug' untuk melaporkan bugs.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operasi tidak valid" @@ -1861,82 +1899,92 @@ msgstr "Sinyal tidak diketahui #" msgid "Unknown Signal #%d" msgstr "Sinyal tidak diketahui #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substitusi buruk: tidak ada penutupan `%s' dalam %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: tidak dapat meng-assign daftar kedalam anggoya array" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "tidak dapat membuat pipe untuk proses substitusi" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "tidak dapat membuat anak untuk proses substitusi" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "tidak dapat membuka named pipe %s untuk membaca" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "tidak dapat membukan named pipe %s untuk menulis" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "tidak dapat menduplikasi nama pipe %s sebagai fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "substitusi buruk: tidak ada penutupan \"\" dalam %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "tidak dapat membuat pipe untuk perintah substitusi" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "tidak dapat membuat anak untuk perintah substitusi" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: tidak dapat menduplikasikan pipe sebagi fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: nilai dari berkas pendeskripsi penelusur tidak valid" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: substitusi buruk" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: jumlah baris tidak valid" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': nama alias tidak valid" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter kosong atau tidak diset" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expresi < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: tidak dapat meng-assign dengan cara ini" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1944,12 +1992,12 @@ msgstr "" "versi selanjutnya dari shell akan memaksa evaluasi dari sebuah penggantian " "aritmetika" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substitusi buruk: tidak ada penutupan \"\" dalam %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "tidak cocok: %s" @@ -1982,7 +2030,7 @@ msgstr "%s: operator unary diduga" msgid "%s: binary operator expected" msgstr "%s: operator binary diduga" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "hilang `]'" @@ -2008,75 +2056,75 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: sinyal buruk %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "error mengimpor definisi fungsi untuk `%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "level shell (%d) terlalu tinggi, mereset ke 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: circular name reference" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: tidak ada context fungsi di scope ini" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: tidak dapat meng-'assign' fd ke variabel" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: nilai dari berkas pendeskripsi penelusur tidak valid" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: tidak ada context fungsi dalam scope ini" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s memiliki exportstr kosong" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "karakter %d tidak valid dalam exporstr untuk %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "bukan `=' dalam exportstr untuk %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: kepala dari shell_variables bukan sebuah fungsi cbntext" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: bukan global_variable context" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: kepala dari shell_variables bukan sebuah scope lingkungan " "sementara" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: tidak dapat membuka sebagai BERKAS" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: nilai dari berkas pendeskripsi penelusur tidak valid" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: diluar jangkauan" @@ -2969,10 +3017,11 @@ msgstr "" "sebuah error terjadi." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Menset nilai variabel dan atribut.\n" " \n" @@ -3527,7 +3576,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5043,6 +5092,7 @@ msgstr "" " Mengembalikan status dari perintah terakhir yang dijalankan." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5052,7 +5102,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Buat sebuah koproses dengan nama NAMA.\n" " \n" @@ -6025,9 +6075,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "menghapus top direktori dari stack, dan pindah ke" -#~ msgid "top directory." -#~ msgstr "top direktori yang baru." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "+N menghapus masukan ke-N dihitung dari kiri dari daftar" diff --git a/po/it.gmo b/po/it.gmo index a03dc6983a30e0b2b2aea9e80e53eaf463a4d2a3..b736bc88865d090a5ecccd0f1d37ddb32f562427 100644 GIT binary patch delta 10710 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 diff --git a/po/it.po b/po/it.po index d5327d9b..54de2b52 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2011-10-17 09:14+0200\n" "Last-Translator: Sergio Zanchetta \n" "Language-Team: Italian \n" @@ -21,48 +21,54 @@ msgstr "" msgid "bad array subscript" msgstr "indice dell'array errato" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: impossibile convertire un array indicizzato in uno associativo" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: chiave dell'array associativo non valida" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: impossibile assegnare a un indice non numerico" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s: %s: deve essere usato un indice nell'assegnazione di un array associativo" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: impossibile creare: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: impossibile trovare una mappatura per il comando" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: il primo carattere non spazio non eÌ€ \"\"\"" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "carattere di chiusura \"%c\" non presente in %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: separatore di tipo due punti mancante" @@ -82,7 +88,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "\"%s\": nome alias non valido" @@ -143,11 +149,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME non impostata" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "troppi argomenti" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "nessun'altra directory" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD non impostata" @@ -166,7 +177,7 @@ msgstr "attenzione: " msgid "%s: usage: " msgstr "%s: uso: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: l'opzione richiede un argomento" @@ -181,7 +192,7 @@ msgstr "%s: è necessario un argomento numerico" msgid "%s: not found" msgstr "%s: non trovata" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: opzione non valida" @@ -191,7 +202,7 @@ msgstr "%s: opzione non valida" msgid "%s: invalid option name" msgstr "%s: nome dell'opzione non valido" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "\"%s\": non è un identificatore valido" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s: nome azione non valido" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: nessun completamento specificato" @@ -313,7 +324,7 @@ msgstr "attenzione: l'opzione -F potrebbe non funzionare come previsto" msgid "warning: -C option may not work as you expect" msgstr "attenzione: l'opzione -C potrebbe non funzionare come previsto" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "funzione di completamento attualmente non in esecuzione" @@ -321,41 +332,47 @@ msgstr "funzione di completamento attualmente non in esecuzione" msgid "can only be used in a function" msgstr "puoÌ€ essere usato solo in una funzione" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%s: %s: valore non valido per il descrittore del file di traccia" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: %s: valore non valido per il descrittore del file di traccia" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "impossibile usare \"-f\" per creare funzioni" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funzione in sola lettura" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: impossibile eliminare variabili array in questo modo" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: impossibile convertire un array associativo in uno indicizzato" @@ -389,7 +406,7 @@ msgstr "%s: non caricato dinamicamente" msgid "%s: cannot delete: %s" msgstr "%s: impossibile eliminare: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: è una directory" @@ -404,7 +421,7 @@ msgstr "%s: non è un file regolare" msgid "%s: file is too large" msgstr "%s: file troppo grande" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: impossibile eseguire il file binario" @@ -446,7 +463,7 @@ msgstr "specifica della cronologia" msgid "%s: cannot open temp file: %s" msgstr "%s: impossibile aprire il file temp: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "attuale" @@ -795,21 +812,21 @@ msgid "can only `return' from a function or sourced script" msgstr "" "eÌ€ possibile eseguire \"return\" solo da una funzione o da uno script chiamato" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "impossibile azzerare contemporaneamente una funzione e una variabile" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: impossibile azzerare" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: impossibile azzerare: %s in sola lettura" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: non è una variabile array" @@ -828,11 +845,11 @@ msgstr "%s: impossibile azzerare" msgid "shift count" msgstr "numero di scorrimenti" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "impossibile impostare e azzerare opzioni di shell contemporaneamente" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nome dell'opzione di shell non valido" @@ -978,61 +995,66 @@ msgstr "\atempo di attesa scaduto per l'input: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "impossibile redirigere lo standard input da /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: \"%c\": carattere di formato non valido" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "errore della pipe" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: limitato: impossibile specificare \"/\" nei nomi dei comandi" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: comando non trovato" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: interprete errato" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: impossibile eseguire il file binario" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s è un comando interno di shell\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "impossibile duplicare fd %d su fd %d" @@ -1107,7 +1129,7 @@ msgstr "%s: errore di espressione\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: impossibile accedere alle directory padre" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "impossibile reimpostare il modo nodelay per fd %d" @@ -1124,148 +1146,148 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: buffer giaÌ€ esistente per il nuovo fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pipe pgrp" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "il pid %d del fork appare nel job in esecuzione %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "eliminazione del job %d interrotto con il gruppo di processi %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: processo %5ld (%s) in the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) segnato come ancora in vita" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: pid inesistente" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Segnale %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Completato" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Fermato" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Fermato(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "In esecuzione" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Eseguito(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Uscita %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Stato sconosciuto" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dump creato) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (dir: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid del figlio (%ld a %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: il pid %ld non eÌ€ un figlio di questa shell" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: nessun record del processo %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: il job %d eÌ€ fermo" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: il job eÌ€ terminato" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: il job %d è giaÌ€ in background" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: attivato WNOHANG per evitare blocchi indefiniti" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: riga %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dump creato)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(dir ora: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp non riuscita" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: disciplina di linea" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "impossibile impostare il gruppo di processi del terminale (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "nessun controllo dei job in questa shell" @@ -1421,104 +1443,111 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "make_redirection: istruzione di reindirizzamento \"%d\" fuori dell'intervallo" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF non atteso durante la ricerca di \"%c\"" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "EOF non atteso durante la ricerca di \"]]\"" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "" "errore di sintassi nell'espressione condizionale: token non atteso \"%s\"" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "errore di sintassi nell'espressione condizionale" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "token non atteso \"%s\", era atteso \")\"" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "atteso \")\"" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argomento non atteso \"%s\" per l'operatore unario condizionale" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argomento non atteso per l'operatore unario condizionale" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "token non atteso \"%s\", era atteso un operatore binario condizionale" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "atteso operatore binario condizionale" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argomento non atteso \"%s\" per l'operatore binario condizionale" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argomento non atteso per l'operatore binario condizionale" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "token non atteso \"%c\" nel comando condizionale" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "token non atteso \"%s\" nel comando condizionale" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "token non atteso %d nel comando condizionale" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "errore di sintassi vicino al token non atteso \"%s\"" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "errore di sintassi vicino a \"%s\"" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "errore di sintassi: EOF non atteso" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "errore di sintassi" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Usare \"%s\" per uscire dalla shell.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "EOF non atteso durante la ricerca di \")\"" @@ -1527,6 +1556,11 @@ msgstr "EOF non atteso durante la ricerca di \")\"" msgid "completion: function `%s' not found" msgstr "completion: funzione \"%s\" non trovata" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1593,44 +1627,48 @@ msgstr "/dev/(tcp|udp)/host/port non supportata senza rete" msgid "redirection error: cannot duplicate fd" msgstr "errore di reindirizzamento: impossibile duplicare fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "impossibile trovare /tmp, eÌ€ necessario crearla" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp deve essere un nome di directory valido" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: opzione non valida" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "impossibile reimpostare il modo nodelay per fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "impossibile reimpostare il modo nodelay per fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: è una directory" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Manca il nome" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versione %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1639,54 +1677,54 @@ msgstr "" "Uso:\t%s [opzione lunga GNU] [opzione] ...\n" "\t%s [opzione lunga GNU] [opzione] file-script ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Opzioni lunghe GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opzioni di shell:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD o -c comando o -O opzione_shopt\t\t(solo invocazione)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\topzione -%s oppure -o\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Digitare «%s -c \"help set\"» per ulteriori informazioni sulle opzioni di " "shell.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Digitare \"%s -c help\" per ulteriori informazioni sui comandi interni di " "shell.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Usare il comando \"bashbug\" per segnalare i bug.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operazione non valida" @@ -1860,82 +1898,92 @@ msgstr "Numero di segnale sconosciuto" msgid "Unknown Signal #%d" msgstr "Segnale sconosciuto n° %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "sostituzione errata: nessuna chiusura di \"%s\" in %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: impossibile assegnare una lista a un membro di un array" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "impossibile creare una pipe per la sostituzione del processo" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "impossibile creare un figlio per la sostituzione del processo" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "impossibile aprire la pipe con nome %s in lettura" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "impossibile aprire la pipe con nome %s in scrittura" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "impossibile duplicare una pipe con nome %s come fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "sostituzione errata: manca «\"» di chiusura in %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "impossibile creare una pipe per la sostituzione del comando" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "impossibile creare un figlio per la sostituzione del comando" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: impossibile duplicare la pipe come fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: %s: valore non valido per il descrittore del file di traccia" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: sostituzione errata" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: numero di righe non valido" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "\"%s\": nome alias non valido" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametro nullo o non impostato" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expressione di sottostringa < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: impossibile assegnare in questo modo" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1943,12 +1991,12 @@ msgstr "" "le versioni future della shell forzeranno la valutazione come fosse una " "sostituzione aritmetica" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sostituzione errata: manca «\"» di chiusura in %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "nessuna corrispondenza: %s" @@ -1981,7 +2029,7 @@ msgstr "%s: atteso operatore unario" msgid "%s: binary operator expected" msgstr "%s: atteso operatore binario" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "\"]\" mancante" @@ -2007,76 +2055,76 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: segnale errato %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "errore nell'importazione della definizione di funzione per \"%s\"" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "livello di shell (%d) troppo alto, reimpostato a 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%s: %s: valore non valido per il descrittore del file di traccia" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: nessun contesto di funzione nell'ambito corrente" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: impossibile assegnare fd a una variabile" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: %s: valore non valido per il descrittore del file di traccia" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: nessun contesto di funzione nell'ambito corrente" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s ha exportstr null" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "carattere non valido %d in exportstr per %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "nessun \"=\" in exportstr per %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: la prima parte di shell_variables non è un contesto di " "funzione" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: nessun contesto global_variables" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: la prima parte di shell_variables non è un ambito temporaneo " "d'ambiente" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: impossibile aprire come FILE" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: valore non valido per il descrittore del file di traccia" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s fuori dall'intervallo" @@ -2993,10 +3041,11 @@ msgstr "" "si riscontri un errore." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Imposta valori e attributi di variabile.\n" " \n" @@ -3568,7 +3617,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5123,6 +5172,7 @@ msgstr "" " Restituisce lo stato dell'ultimo comando eseguito." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5132,7 +5182,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Crea un coprocesso chiamato NOME.\n" " \n" diff --git a/po/ja.gmo b/po/ja.gmo index d917b8cad215b155bdfef8304423ae792a19cc30..ba7105f7cc56655b9d2a23368e6a79fa2ceb48b9 100644 GIT binary patch delta 11148 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 DA{*hA diff --git a/po/ja.po b/po/ja.po index ad580d34..ecf931b1 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bash 4.3-rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2014-10-30 05:04+0100\n" "Last-Translator: Yasuaki Taniguchi \n" "Language-Team: Japanese \n" @@ -22,46 +22,52 @@ msgstr "" msgid "bad array subscript" msgstr "誤ã£ãŸé…åˆ—ã®æ·»å­—" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: インデックスé…列ã‹ã‚‰é€£æƒ³é…列ã«å¤‰æ›ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: 無効ãªé€£æƒ³é…列ã®ã‚­ãƒ¼ã§ã™" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: é…åˆ—ã®æ·»å­—ã«éžæ•°å­—を設定ã§ãã¾ã›ã‚“" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: 連想é…列を設定ã™ã‚‹ã¨ãã«ã¯æ·»å­—ã‚’ã¤ã‘ãªã‘れã°ã„ã‘ã¾ã›ã‚“" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: %s を作æˆã§ãã¾ã›ã‚“" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: コマンドã®ã‚­ãƒ¼ãƒžãƒƒãƒ—ãŒã‚りã¾ã›ã‚“" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: 最åˆã®éžç©ºç™½é¡žæ–‡å­—㌠`\"' ã§ã¯ã‚りã¾ã›ã‚“" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "é–‰ã˜ã‚‹ `%c' ㌠%s ã«ã‚りã¾ã›ã‚“" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: 区切り文字コロン(:)ãŒã‚りã¾ã›ã‚“" @@ -83,7 +89,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "中括弧展開: `%s' ã¸ã®ãƒ¡ãƒ¢ãƒªå‰²ã‚Šå½“ã¦ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': 無効ãªã‚¨ã‚¤ãƒªã‚¢ã‚¹åã§ã™" @@ -144,11 +150,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME ãŒè¨­å®šã•れã¦ã„ã¾ã›ã‚“" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "引数ãŒå¤šã™ãŽã¾ã™" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ä»–ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ã‚りã¾ã›ã‚“" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD ãŒè¨­å®šã•れã¦ã„ã¾ã›ã‚“" @@ -167,7 +178,7 @@ msgstr "警告: " msgid "%s: usage: " msgstr "%s: 使用法: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: オプションã«ã¯å¼•æ•°ãŒå¿…è¦ã§ã™" @@ -182,7 +193,7 @@ msgstr "%s: æ•°å­—ã®å¼•æ•°ãŒå¿…è¦ã§ã™" msgid "%s: not found" msgstr "%s: 見ã¤ã‹ã‚Šã¾ã›ã‚“" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: 無効ãªã‚ªãƒ—ションã§ã™" @@ -192,7 +203,7 @@ msgstr "%s: 無効ãªã‚ªãƒ—ションã§ã™" msgid "%s: invalid option name" msgstr "%s: 無効ãªã‚ªãƒ—ションåã§ã™" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': 有効ãªè­˜åˆ¥å­ã§ã¯ã‚りã¾ã›ã‚“" @@ -301,7 +312,7 @@ msgid "%s: invalid action name" msgstr "%s: 無効ãªã‚¢ã‚¯ã‚·ãƒ§ãƒ³åã§ã™" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: 補完指定ãŒã‚りã¾ã›ã‚“" @@ -314,7 +325,7 @@ msgstr "警告: -F ã‚ªãƒ—ã‚·ãƒ§ãƒ³ã¯æœŸå¾…通りã«å‹•作ã—ãªã„ã‹ã‚‚ã—れ msgid "warning: -C option may not work as you expect" msgstr "警告: -C ã‚ªãƒ—ã‚·ãƒ§ãƒ³ã¯æœŸå¾…通りã«å‹•作ã—ãªã„ã‹ã‚‚ã—れã¾ã›ã‚“" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "補完機能ã¯ç¾åœ¨å®Ÿè¡Œã•れã¦ã„ã¾ã›ã‚“" @@ -322,41 +333,47 @@ msgstr "補完機能ã¯ç¾åœ¨å®Ÿè¡Œã•れã¦ã„ã¾ã›ã‚“" msgid "can only be used in a function" msgstr "関数ã®ä¸­ã§ã®ã¿ä½¿ç”¨ã§ãã¾ã™" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: å‚照変数ã¯é…列ã§ã‚ã£ã¦ã¯ã„ã‘ã¾ã›ã‚“" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: 自身をå‚ç…§ã™ã‚‹åå‰å‚照変数ã¯è¨±å¯ã•れã¦ã„ã¾ã›ã‚“" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: 循環åå‰å‚ç…§ã§ã™" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: åå‰å‚ç…§ã¨ã—ã¦ç„¡åйãªå¤‰æ•°ã§ã™" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "é–¢æ•°ä½œæˆæ™‚ã« `-f' を使用ã§ãã¾ã›ã‚“" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: 読ã¿å–り専用関数ã§ã™" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: ã“ã®æ–¹æ³•ã§é…列変数を消去ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: 連想é…列ã‹ã‚‰ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹é…列ã«å¤‰æ›ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" @@ -390,7 +407,7 @@ msgstr "%s: å‹•çš„ã«ãƒ­ãƒ¼ãƒ‰ã•れã¦ã„ã¾ã›ã‚“" msgid "%s: cannot delete: %s" msgstr "%s: 削除ã§ãã¾ã›ã‚“: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: ディレクトリã§ã™" @@ -405,7 +422,7 @@ msgstr "%s: 通常ファイルã§ã¯ã‚りã¾ã›ã‚“" msgid "%s: file is too large" msgstr "%s: ファイルãŒå¤§ãã™ãŽã¾ã™" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ãƒã‚¤ãƒŠãƒªãƒ•ァイルを実行ã§ãã¾ã›ã‚“" @@ -447,7 +464,7 @@ msgstr "ヒストリ指定" msgid "%s: cannot open temp file: %s" msgstr "%s: 一時ファイルを開ãã“ã¨ãŒã§ãã¾ã›ã‚“: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "カレント" @@ -792,21 +809,21 @@ msgstr "読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "`return' ã¯é–¢æ•°ã¾ãŸã¯ source ã•れãŸã‚¹ã‚¯ãƒªãƒ—ト内ã®ã¿ã§åˆ©ç”¨ã§ãã¾ã™" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "変数ã¨é–¢æ•°ã‚’åŒæ™‚ã«æ¶ˆåŽ»ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: 消去ã§ãã¾ã›ã‚“" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: 消去ã§ãã¾ã›ã‚“: %s ã¯èª­ã¿å–り専用ã§ã™" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: é…列変数ã§ã¯ã‚りã¾ã›ã‚“" @@ -825,11 +842,11 @@ msgstr "%s: 消去ã§ãã¾ã›ã‚“" msgid "shift count" msgstr "シフト回数" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "ã‚·ã‚§ãƒ«ã‚ªãƒ—ã‚·ãƒ§ãƒ³ã‚’åŒæ™‚ã«æœ‰åйã‹ã¤ç„¡åйã«ã§ãã¾ã›ã‚“" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: 無効ãªã‚·ã‚§ãƒ«ã‚ªãƒ—ションåã§ã™" @@ -975,61 +992,66 @@ msgstr "\a入力待ã¡ãŒã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆã—ã¾ã—ãŸ: 自動ログアウト\n msgid "cannot redirect standard input from /dev/null: %s" msgstr "/dev/null ã‹ã‚‰æ¨™æº–入力ã«å¯¾ã—ã¦ãƒªãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆã§ãã¾ã›ã‚“: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': ç„¡åŠ¹ãªæ›¸å¼æ–‡å­—ã§ã™" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "パイプエラー" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: 関数ã®å…¥ã‚Œå­ãƒ¬ãƒ™ãƒ«ã®æœ€å¤§å€¤ã‚’è¶…ãˆã¦ã„ã¾ã™ (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: 関数ã®å…¥ã‚Œå­ãƒ¬ãƒ™ãƒ«ã®æœ€å¤§å€¤ã‚’è¶…ãˆã¦ã„ã¾ã™ (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: 関数ã®å…¥ã‚Œå­ãƒ¬ãƒ™ãƒ«ã®æœ€å¤§å€¤ã‚’è¶…ãˆã¦ã„ã¾ã™ (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: 制é™ã•れã¦ã„ã¾ã™: `/' をコマンドåã®ä¸­ã«æŒ‡å®šã§ãã¾ã›ã‚“" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: コマンドãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: 誤ã£ãŸã‚¤ãƒ³ã‚¿ãƒ—リタã§ã™" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ãƒã‚¤ãƒŠãƒªãƒ•ァイルを実行ã§ãã¾ã›ã‚“: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s': 特殊シェル組ã¿è¾¼ã¿é–¢æ•°ã§ã™" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "fd %d ã‚’ fd %d ã«è¤‡è£½ã§ãã¾ã›ã‚“" @@ -1104,7 +1126,7 @@ msgstr "%s: å¼ã®ã‚¨ãƒ©ãƒ¼\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: 親ディレクトリã«ã‚¢ã‚¯ã‚»ã‚¹ã§ãã¾ã›ã‚“" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "ファイル記述å­(fd) %d ã‚’ç„¡é…延モードã«å†è¨­å®šã§ãã¾ã›ã‚“" @@ -1119,148 +1141,148 @@ msgstr "æ–°è¦ãƒ•ァイル記述å­(fd) %d ã‚’ bash ã®å…¥åŠ›ã¨ã—ã¦å‰²ã‚Šå½“ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: æ–°è¦ fd %d ã®ãƒãƒƒãƒ•ã‚¡ã¯ã™ã§ã«å­˜åœ¨ã—ã¾ã™" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "実行中ã®ã‚¸ãƒ§ãƒ– %2$d ã§ fork ã—㟠pid %1$d ãŒå‡ºç¾ã—ã¾ã—ãŸ" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "プロセスグループ %2$ld ã®ã‚¸ãƒ§ãƒ– %1$d を削除ã—ã¦ã„ã¾ã™" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: プロセス %5ld (%s) ㌠the_pipeline ã«ã‚りã¾ã™" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) ã¯ã¾ã å­˜åœ¨ã—ã¦ã„ã‚‹ã¨ãƒžãƒ¼ã‚¯ã•れã¦ã„ã¾ã™" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ãã®ã‚ˆã†ãª pid ã¯å­˜åœ¨ã—ã¾ã›ã‚“" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "シグナル %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "終了" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "åœæ­¢" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "åœæ­¢ (%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "実行中" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "終了(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "終了 %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "䏿˜Žãªã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(コアダンプ) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "å­ãƒ—ロセス setpgid (%ld ã‹ã‚‰ %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld ã¯ã“ã®ã‚·ã‚§ãƒ«ã®å­ãƒ—ロセスã§ã¯ã‚りã¾ã›ã‚“" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: プロセス %ld ã®è¨˜éŒ²ãŒã‚りã¾ã›ã‚“" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: ジョブ %d ã¯åœæ­¢ã—ã¦ã„ã¾ã™" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: ジョブã¯çµ‚了ã—ã¾ã—ãŸ" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: ジョブ %d ã¯ã™ã§ã«ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã§å‹•作ã—ã¦ã„ã¾ã™" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: ä¸å®šã®ãƒ–ロックをé¿ã‘ã‚‹ãŸã‚ã« WNOHANG をオンã«ã—ã¾ã—ãŸã€‚" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: %d 行: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (コアダンプ)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd now: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp ãŒå¤±æ•—ã—ã¾ã—ãŸ" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: line discipline" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "端末プロセスグループを設定ã§ãã¾ã›ã‚“ (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "ã“ã®ã‚·ã‚§ãƒ«ã§ã¯ã‚¸ãƒ§ãƒ–制御ãŒç„¡åйã«ãªã£ã¦ã„ã¾ã™" @@ -1414,103 +1436,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: リダイレクト指定 `%d' ã¯ç¯„囲外ã§ã™" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "対応ã™ã‚‹ `%c' を探索中ã«äºˆæœŸã—ãªã„ファイル終了 (EOF) ã§ã™" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "`]]' を探索中ã«äºˆæœŸã—ãªã„ファイル終了 (EOF) ã§ã™" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "æ¡ä»¶å¼ã«æ§‹æ–‡ã‚¨ãƒ©ãƒ¼: 予期ã—ãªã„トークン `%s' ã§ã™" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "æ¡ä»¶å¼ã«æ§‹æ–‡ã‚¨ãƒ©ãƒ¼ãŒã‚りã¾ã™" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "予期ã—ãªã„トークン `%s' ã§ã™ã€‚`)' ãŒäºˆæœŸã•れã¾ã™" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "`)' ãŒäºˆæœŸã•れã¾ã™" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "æ¡ä»¶å˜é …演算å­ã«äºˆæœŸã—ãªã„引数 `%s' ã§ã™" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "æ¡ä»¶å˜é …演算å­ã«äºˆæœŸã—ãªã„引数ã§ã™" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "`%s` ã¯äºˆæœŸã—ãªã„トークンã§ã™ã€‚æ¡ä»¶äºŒé …演算å­ãŒäºˆæœŸã•れã¾ã™" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "æ¡ä»¶äºŒé …演算å­ãŒäºˆæœŸã•れã¾ã™" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "æ¡ä»¶äºŒé …演算å­ã«äºˆæœŸã—ãªã„引数 `%s' ã§ã™" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "æ¡ä»¶äºŒé …演算å­ã«äºˆæœŸã—ãªã„引数ã§ã™" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "æ¡ä»¶ã‚³ãƒžãƒ³ãƒ‰ã«äºˆæœŸã—ãªã„トークン `%c' ãŒã‚りã¾ã™" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "æ¡ä»¶ã‚³ãƒžãƒ³ãƒ‰ã«äºˆæœŸã—ãªã„トークン `%s' ãŒã‚りã¾ã™" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "æ¡ä»¶ã‚³ãƒžãƒ³ãƒ‰ã«äºˆæœŸã—ãªã„トークン %d ãŒã‚りã¾ã™" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "予期ã—ãªã„トークン `%s' å‘¨è¾ºã«æ§‹æ–‡ã‚¨ãƒ©ãƒ¼ãŒã‚りã¾ã™" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "`%s' å‘¨è¾ºã«æ§‹æ–‡ã‚¨ãƒ©ãƒ¼ãŒã‚りã¾ã™" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "構文エラー: 予期ã—ãªã„ファイル終了 (EOF) ã§ã™" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "構文エラー" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "シェルã‹ã‚‰è„±å‡ºã™ã‚‹ã«ã¯ \"%s\" を使用ã—ã¦ãã ã•ã„。\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "対応ã™ã‚‹ `)' を探索中ã«äºˆæœŸã—ãªã„ファイル終了(EOF)ã§ã™" @@ -1519,6 +1548,11 @@ msgstr "対応ã™ã‚‹ `)' を探索中ã«äºˆæœŸã—ãªã„ファイル終了(EOF) msgid "completion: function `%s' not found" msgstr "completion: 関数 `%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1585,44 +1619,48 @@ msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãŒç„¡åйãªå ´åˆ /dev/(tcp|udp)/host/port ã¯ã‚µãƒ msgid "redirection error: cannot duplicate fd" msgstr "リダイレクトエラー: ファイル記述å­ã‚’複製ã§ãã¾ã›ã‚“" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "/tmp ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。作æˆã—ã¦ãã ã•ã„!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp ã¯æœ‰åйãªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªåã§ãªã‘れã°ã„ã‘ã¾ã›ã‚“" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: 無効ãªã‚ªãƒ—ション" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "ファイル記述å­(fd) %d ã‚’ç„¡é…延モードã«å†è¨­å®šã§ãã¾ã›ã‚“" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "ファイル記述å­(fd) %d ã‚’ç„¡é…延モードã«å†è¨­å®šã§ãã¾ã›ã‚“" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: ディレクトリã§ã™" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "ç§ã¯åå‰ãŒã‚りã¾ã›ã‚“!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1631,50 +1669,50 @@ msgstr "" "使用法:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU å½¢å¼ã®é•·ã„オプション:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "シェルオプション:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD, -c command ã¾ãŸã¯ -O shopt_option\t\t(起動時ã®ã¿)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ã¾ãŸã¯ -o option\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "シェルオプションã®è©³ç´°ã«ã¤ã„ã¦ã¯ `%s -c \"help set\"'ã¨å…¥åŠ›ã—ã¦ãã ã•ã„。\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "シェル組ã¿è¾¼ã¿ã‚³ãƒžãƒ³ãƒ‰ã«ã¤ã„ã¦ã¯ `%s -c help' ã¨å…¥åŠ›ã—ã¦ãã ã•ã„。\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "ãƒã‚°å ±å‘Šã‚’ã™ã‚‹å ´åˆã¯ `bashbug' コマンドを使用ã—ã¦ãã ã•ã„。\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: ç„¡åŠ¹ãªæ“作ã§ã™" @@ -1848,93 +1886,103 @@ msgstr "䏿˜Žãªã‚·ã‚°ãƒŠãƒ«ç•ªå·" msgid "Unknown Signal #%d" msgstr "䏿˜Žãªã‚·ã‚°ãƒŠãƒ«ç•ªå· %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "誤ã£ãŸä»£å…¥: é–‰ã˜ã‚‹ `%s' ㌠%s ã«å­˜åœ¨ã—ã¾ã›ã‚“" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: リストをé…列è¦ç´ ã«å‰²ã‚Šå½“ã¦ã§ãã¾ã›ã‚“" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "プロセス代入ã§ã¯ãƒ‘イプを作æˆã§ãã¾ã›ã‚“" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "プロセス代入ã§ã¯å­ãƒ—ロセスを作æˆã§ãã¾ã›ã‚“" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "åå‰ä»˜ãパイプ %s を読ã¿è¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "åå‰ä»˜ãパイプ %s を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "åå‰ä»˜ãパイプ %s をファイル記述å­(fd) %d ã¨ã—ã¦è¤‡è£½ã§ãã¾ã›ã‚“" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "誤ã£ãŸä»£å…¥: %s ã«é–‰ã˜ã‚‹ \"`\" ãŒã‚りã¾ã›ã‚“" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "コマンド代入ã§ã¯ãƒ‘イプを作æˆã§ãã¾ã›ã‚“" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "コマンド代入ã§ã¯å­ãƒ—ロセスを作æˆã§ãã¾ã›ã‚“" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: パイプを fd 1 ã¨ã—ã¦è¤‡è£½ã§ãã¾ã›ã‚“" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: åå‰å‚ç…§ã¨ã—ã¦ç„¡åйãªå¤‰æ•°ã§ã™" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: 誤ã£ãŸä»£å…¥ã§ã™" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: 無効ãªè¡Œæ•°ã§ã™" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': 無効ãªã‚¨ã‚¤ãƒªã‚¢ã‚¹åã§ã™" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: パラメータ㌠null ã¾ãŸã¯è¨­å®šã•れã¦ã„ã¾ã›ã‚“" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: substring expression < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ã“ã®æ–¹æ³•ã§å‰²å½“ã¯ã§ãã¾ã›ã‚“" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "å°†æ¥ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ã‚·ã‚§ãƒ«ã§ã¯å¼·åˆ¶çš„ã«æ•°å€¤ä»£å…¥ã¨ã—ã¦è©•価ã•れã¾ã™" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "誤ã£ãŸä»£å…¥: %s ã«é–‰ã˜ã‚‹ \"`\" ãŒã‚りã¾ã›ã‚“" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "一致ã—ã¾ã›ã‚“: %s" @@ -1967,7 +2015,7 @@ msgstr "%s: å˜é …演算å­ãŒäºˆæœŸã•れã¾ã™" msgid "%s: binary operator expected" msgstr "%s: 二項演算å­ãŒäºˆæœŸã•れã¾ã™" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "`]'ãŒã‚りã¾ã›ã‚“" @@ -1993,73 +2041,73 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: 誤ã£ãŸã‚·ã‚°ãƒŠãƒ« %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "`%s' ã®é–¢æ•°å®šç¾©ã‚’インãƒãƒ¼ãƒˆä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "シェルレベル (%d) ã¯é«˜ã™ãŽã¾ã™ã€‚1ã«å†è¨­å®šã•れã¾ã—ãŸ" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: 循環åå‰å‚ç…§ã§ã™" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ç¾åœ¨ã®ã‚¹ã‚³ãƒ¼ãƒ—ã¯é–¢æ•°ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆã§ã¯ã‚りã¾ã›ã‚“" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: 変数ãŒåˆæœŸåŒ–ã•れã¦ã„ãªã„ã‹ã‚‚ã—れã¾ã›ã‚“" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: åå‰å‚ç…§ã¨ã—ã¦ç„¡åйãªå¤‰æ•°ã§ã™" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ç¾åœ¨ã®ã‚¹ã‚³ãƒ¼ãƒ—ã¯é–¢æ•°ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆã§ã¯ã‚りã¾ã›ã‚“" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s 㯠null ã® exportstr ã‚’æŒã£ã¦ã„ã¾ã™" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "%2$s ã«å¯¾ã™ã‚‹ exportstr ã§ %1$d ã¯ç„¡åŠ¹ãªæ–‡å­—ã§ã™" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s ã«å¯¾ã™ã‚‹ exportstr ã« `=' ãŒã‚りã¾ã›ã‚“" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: shell_variables ã®å…ˆé ­ã§ã™ã€‚関数コンテキストã§ã¯ã‚りã¾ã›ã‚“" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: global_variables コンテキストã§ã¯ã‚りã¾ã›ã‚“" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: shell_variables ã®å…ˆé ­ã§ã™ã€‚一時環境スコープã§ã¯ã‚りã¾ã›ã‚“" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: ファイルã¨ã—ã¦é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: トレースファイル記述å­ã¨ã—ã¦ç„¡åйãªå€¤ã§ã™" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: 値ã®äº’æ›æ€§ãŒç¯„囲外ã§ã™" @@ -2946,10 +2994,11 @@ msgstr "" " 無効ãªã‚ªãƒ—ションãŒä¸Žãˆã‚‰ã‚ŒãŸã‹ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ãªã„é™ã‚ŠæˆåŠŸã‚’è¿”ã—ã¾ã™ã€‚" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "変数ã®å€¤ãŠã‚ˆã³å±žæ€§ã‚’設定ã—ã¾ã™ã€‚\n" " \n" @@ -3489,7 +3538,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4953,6 +5002,7 @@ msgstr "" " 最後ã«å®Ÿè¡Œã—ãŸã‚³ãƒžãƒ³ãƒ‰ã®ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ã‚’è¿”ã—ã¾ã™ã€‚" #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4962,7 +5012,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "NAME ã¨ã„ã†åå‰ã®éžåŒæœŸãƒ—ロセスを作æˆã—ã¾ã™ã€‚\n" " \n" diff --git a/po/lt.gmo b/po/lt.gmo index 2772c0ec91a325181f8bb299665e7f30a546df34..5f2e68b5714ba40d107ce9fdaeaedcee8b20d26a 100644 GIT binary patch delta 28 kcmdn;gmKFg#tj8dyym(FW(tM|R>nrU1}2+pown-(0G9FzbpQYW delta 28 kcmdn;gmKFg#tj8dyhgf)1_}n|R;HG^2Bw>9own-(0G93vdjJ3c diff --git a/po/lt.po b/po/lt.po index d533f711..7413993c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2009-03-25 16:49+0200\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -23,46 +23,52 @@ msgstr "" msgid "bad array subscript" msgstr "blogas masyvo indeksas" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%s: netaisyklingas veiksmo pavadinimas" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nepavyko priskirti prie neskaitinio indekso" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nepavyko sukurti: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: nepavyko rasti keymapo komandai" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: pirmas ne tarpo simbolis nÄ—ra „\"“" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "nÄ—ra uždaranÄiojo „%c“ %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: trÅ«ksta dvitaÅ¡kio skirtuko" @@ -82,7 +88,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "„%s“: netaisyklingas keymap'o pavadinimas" @@ -141,11 +147,16 @@ msgstr "Grąžina esamos procedÅ«ros kontekstÄ…." msgid "HOME not set" msgstr "HOME nenustatytas" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "per daug argumentų" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "steko viršūnÄ—je esanÄiu." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD nenustatytas" @@ -164,7 +175,7 @@ msgstr "įspÄ—jimas: " msgid "%s: usage: " msgstr "%s: naudojimas: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: parametrui reikia argumento" @@ -179,7 +190,7 @@ msgstr "%s: reikia skaitinio argumento" msgid "%s: not found" msgstr "%s: nerasta" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: negalimas parametras" @@ -189,7 +200,7 @@ msgstr "%s: negalimas parametras" msgid "%s: invalid option name" msgstr "%s: netaisyklingas parametro vardas" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': netaisyklingas identifikatorius" @@ -298,7 +309,7 @@ msgid "%s: invalid action name" msgstr "%s: netaisyklingas veiksmo pavadinimas" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: nÄ—ra baigimo specifikacijos" @@ -311,7 +322,7 @@ msgstr "įspÄ—jimas: parametras -F gali neveikti taip, kaip tikitÄ—s" msgid "warning: -C option may not work as you expect" msgstr "įspÄ—jimas: parametras -C gali neveikti taip, kaip tikitÄ—s" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -319,41 +330,47 @@ msgstr "" msgid "can only be used in a function" msgstr "galima naudoti tik funkcijoje" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%d: netaisyklingas failo deskriptorius: %s" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%d: netaisyklingas failo deskriptorius: %s" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "negalima naudoti „-f“ funkcijoms kurti" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkcija tik skaitymui" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: negalima tokiu bÅ«du sunaikinti masyvų kintamųjų" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -387,7 +404,7 @@ msgstr "%s: nedinamiÅ¡kai įkrauta" msgid "%s: cannot delete: %s" msgstr "%s: nepavyko iÅ¡trinti: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: aplankas" @@ -402,7 +419,7 @@ msgstr "%s: ne paprastas failas" msgid "%s: file is too large" msgstr "%s: failas per didelis" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: negalima vykdyti dvejetainių failų" @@ -444,7 +461,7 @@ msgstr "istorijos specifikacija" msgid "%s: cannot open temp file: %s" msgstr "%s: nepavyko atverti laikinojo failo: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "" @@ -738,21 +755,21 @@ msgstr "skaitymo klaida: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "galima grįžti (return) tik iÅ¡ funkcijos ar scenarijaus" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "negalima kartu iÅ¡trinti funkcijos ir kintamojo" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: nepavyko iÅ¡trinti" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nepavyko iÅ¡trinti: %s tik skaitymui" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ne masyvo kintamasis" @@ -771,11 +788,11 @@ msgstr "%s: nepavyko iÅ¡trinti" msgid "shift count" msgstr "postÅ«mių skaiÄius" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "negalima aplinkos nuostatos vienu metu įjungti ir iÅ¡jungti" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: netaisyklingas aplinkos nuostatos pavadinimas" @@ -921,62 +938,67 @@ msgstr "\alaukiant įvedimo baigÄ—si laikas: automatiÅ¡kai atsijungta\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "nepavyko peradresuoti standartinio įvedimo iÅ¡ /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: netaisyklingas formato simbolis" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 #, fuzzy msgid "pipe error" msgstr "raÅ¡ymo klaida: %s" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: apribota: negalima naudoti „/“ komandų pavadinimuose" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: komanda nerasta" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, fuzzy, c-format msgid "%s: %s" msgstr "%s yra %s\n" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: blogas interpretatorius" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: negalima vykdyti dvejetainių failų" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s yra aplinkos vidinÄ— komanda\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nepavyko dublikuoti fd %d į fd %d" @@ -1052,7 +1074,7 @@ msgstr "%s: iÅ¡raiÅ¡kos klaida\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: nepavyko pasiekti aukÅ¡tesnių aplankų" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, fuzzy, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nepavyko dublikuoti fd %d į fd %d" @@ -1067,148 +1089,148 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "trinamas sustabdytas darbas %d procesų grupÄ—je %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: tokio pid nÄ—ra" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signalas %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Atlikta" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Atlikta(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Nežinoma bÅ«sena" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr "" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: nÄ—ra proceso %ld įraÅ¡o" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: darbas %d yra sustabdytas" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: darbas užsibaigÄ—" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: darbas %d jau fone" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: %d eilutÄ—: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr "" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Å¡ioje aplinkoje nÄ—ra darbų valdymo" @@ -1361,103 +1383,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: nukreipimo instrukcija „%d“ už ribų" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "netikÄ—ta failo pabaiga ieÅ¡kant atitinkamo „%c“" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "netikÄ—ta failo pabaiga ieÅ¡kant „]]“" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "sintaksÄ—s klaida sÄ…lygos iÅ¡raiÅ¡koje: netikÄ—ta leksema „%s“" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "sintaksÄ—s klaida sÄ…lygos iÅ¡raiÅ¡koje" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "netikÄ—ta leksema „%s“, tikÄ—tasi „)“" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "tikÄ—tasi „)“" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "netikÄ—tas argumentas „%s“ sÄ…lygos unariniam operatoriui" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "netikÄ—tas argumentas sÄ…lygos unariniam operatoriui" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "netikÄ—ta leksema „%s“, tikÄ—tasi sÄ…lyginio binarinio operatoriaus" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "tikÄ—tasi sÄ…lygos binarinio operatoriaus" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "netikÄ—tas argumentas „%s“ sÄ…lygos binariniam operatoriui" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "netikÄ—tas argumentas sÄ…lygos binariniam operatoriui" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "netikÄ—ta leksema „%c“ sÄ…lygos komandoje" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "netikÄ—ta leksema „%s“ sÄ…lygos komandoje" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "netikÄ—ta leksema %d sÄ…lygos komandoje" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "sintaksÄ—s klaida prie netikÄ—tos leksemos: „%s“" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "sintaksÄ—s klaida prie „%s“" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "sintaksÄ—s klaida: netikÄ—ta failo pabaiga" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "sintaksÄ—s klaida" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Naudokite „%s“, jei norite iÅ¡eiti iÅ¡ ap.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "netikÄ—ta failo pabaiga ieÅ¡kant atitinkamo „)“" @@ -1466,6 +1495,11 @@ msgstr "netikÄ—ta failo pabaiga ieÅ¡kant atitinkamo „)“" msgid "completion: function `%s' not found" msgstr "completion: funkcija „%s“ nerasta" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1532,44 +1566,48 @@ msgstr "/dev/(tcp|udp)/serveris/prievadas nepalaikoma be tinklo" msgid "redirection error: cannot duplicate fd" msgstr "nukreipimo klaida: nepavyko dublikuoti fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "nepavyko rasti /tmp, sukurkite šį aplankÄ…!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp turi bÅ«ti taisyklingas aplanko pavadinimas" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: netaisyklingas parametras" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "nepavyko dublikuoti fd %d į fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "nepavyko dublikuoti fd %d į fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: aplankas" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Neturiu vardo!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versija %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1578,53 +1616,53 @@ msgstr "" "Naudojimas:\t%s [GNU ilgas parametras] [parametras] ...\n" "\t%s [GNU ilgas parametras] [parametras] scenarijaus-failas ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU ilgi parametrai:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Aplinkos parametrai:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t-irsD arba -c komanda arba -O shopt_nustatymas\t\t(tik iÅ¡kvietimui)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s arba -o nustatymas\n" -#: shell.c:1934 +#: shell.c:1959 #, fuzzy, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Bandykite „%s --help“ arba „%s --usage“, jei norite gauti daugiau " "informacijos.\n" -#: shell.c:1935 +#: shell.c:1960 #, fuzzy, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Bandykite „ldd --help“, jei norite daugiau informacijos." -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Naudokite komandÄ… „bashbug“ klaidoms praneÅ¡ti.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: netaisyklinga operacija" @@ -1799,93 +1837,103 @@ msgstr "Nežinomas signalas #" msgid "Unknown Signal #%d" msgstr "Nežinomas signalas #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "blogas keitinys: trÅ«ksta „%s“ %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: negalima priskirti sÄ…raÅ¡o masyvo elementui" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "blogas keitinys: trÅ«ksta „%s“ %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%d: netaisyklingas failo deskriptorius: %s" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: blogas keitinys" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: nesamas parametras" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "„%s“: netaisyklingas keymap'o pavadinimas" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametras tuÅ¡Äias arba nenustatytas" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: posekio iÅ¡raiÅ¡ka < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: negalima tokiu bÅ«du priskirti" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "blogas keitinys: trÅ«ksta „%s“ %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "nÄ—ra atitikmenų: %s" @@ -1918,7 +1966,7 @@ msgstr "%s: tikÄ—tasi unarinio operatoriaus" msgid "%s: binary operator expected" msgstr "%s: tikÄ—tasi binarinio operatoriaus" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "trÅ«ksta „]“" @@ -1942,72 +1990,72 @@ msgstr "run_pending_traps: signalo doroklÄ— yra SIG_DFL, siunÄiamas %d (%s) sau msgid "trap_handler: bad signal %d" msgstr "trap_handler: blogas signalas %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "klaida importuojant funkcijos apibrėžimÄ… „%s“" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "aplinkos lygmuo (%d) per aukÅ¡tas, nustatoma į 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%d: netaisyklingas failo deskriptorius: %s" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: negalima priskirti sÄ…raÅ¡o masyvo elementui" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%d: netaisyklingas failo deskriptorius: %s" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: parametras tuÅ¡Äias arba nenustatytas" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "netaisyklingas simbolis %d %s exportstr'e" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s exportstr'e trÅ«ksta „=“" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: nÄ—ra global_variables konteksto" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: nepavyko atverti: %s" -#: variables.c:5431 +#: variables.c:5624 #, fuzzy, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%d: netaisyklingas failo deskriptorius: %s" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s išėjo už ribų" @@ -2709,7 +2757,7 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" #: builtins.c:538 @@ -3009,7 +3057,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3814,7 +3862,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 @@ -4392,9 +4440,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "paÅ¡alina virÅ¡utinį aplankÄ… iÅ¡ steko ir pakeiÄia darbinį aplankÄ…" -#~ msgid "top directory." -#~ msgstr "steko viršūnÄ—je esanÄiu." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "" #~ "+N paÅ¡alina N-tÄ…jį įrašą skaiÄiuojant iÅ¡ kairÄ—s sÄ…raÅ¡e, iÅ¡vedamame „dir“" diff --git a/po/nb.gmo b/po/nb.gmo index 63177f500c3581b933d8e8c7ba93e699c5ccb994..cf13035df1069cad9a74ab39dd46bc70f4183bf4 100644 GIT binary patch delta 12270 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\n" "Language-Team: Norwegian Bokmaal \n" @@ -22,46 +22,52 @@ msgstr "" msgid "bad array subscript" msgstr "feil i tabell-underskript" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: indeksert tabell kan ikke konverteres til assosiativ tabell" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: ugyldig nøkkel for assosiativ tabell" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: kan ikke tildeles ikke-numerisk indeks" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: underskript mÃ¥ brukes ved tildeling av assosiative tabeller" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: klarte ikke Ã¥ opprette: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: fant ikke tastaturoppsett for kommando" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: første ikke-blanktegn mÃ¥ være «\"»" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "avsluttende «%c» mangler i %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: kolon-skilletegn mangler" @@ -81,7 +87,7 @@ msgstr "brace-utvidelse: klarte ikke Ã¥ tildele minne for %d elementer" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "brace-utvidelse: klarte ikke Ã¥ tildele minne for «%s»" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "«%s»: ugyldig alias" @@ -142,11 +148,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME har ingen verdi" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "for mange argumenter" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ingen annen mappe" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD har ingen verdi" @@ -165,7 +176,7 @@ msgstr "advarsel:" msgid "%s: usage: " msgstr "%s: bruk: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: valget krever et argument" @@ -180,7 +191,7 @@ msgstr "%s: valget krever et tall-argument" msgid "%s: not found" msgstr "%s: ikke funnet" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: ugyldig valg" @@ -190,7 +201,7 @@ msgstr "%s: ugyldig valg" msgid "%s: invalid option name" msgstr "%s: ugyldig valgnavn" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "«%s»: ugyldig navn" @@ -299,7 +310,7 @@ msgid "%s: invalid action name" msgstr "%s: ugyldig handlingsnavn" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: ingen spesifikasjon for fullføring" @@ -312,7 +323,7 @@ msgstr "advarsel: valget «-F» virker kanskje ikke slik du forventer" msgid "warning: -C option may not work as you expect" msgstr "advarsel: valget «-C» virker kanskje ikke slik du forventer" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "fullføringsfunksjon kjøres ikke nÃ¥" @@ -320,41 +331,47 @@ msgstr "fullføringsfunksjon kjøres ikke nÃ¥" msgid "can only be used in a function" msgstr "kan bare brukes i funksjoner" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: referansevariabler kan ikke være tabeller (arrays)" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: navnref.-variabler kan ikke referere til seg selv" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: sirkulær navnreferanse" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: ugyldig variabelnavn for navnreferanse" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "valget«-f» kan ikke brukes til Ã¥ lage funksjoner" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: skrivebeskyttet funksjon" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: sammensatt tabell-tideling i hermetegn er utgÃ¥tt" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: tabellvariabler kan ikke ødelegges pÃ¥ denne mÃ¥ten" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: assosiative tabeller kan ikke konverteres til indekserte tabeller" @@ -388,7 +405,7 @@ msgstr "%s: ikke dynamisk innlastet" msgid "%s: cannot delete: %s" msgstr "%s: klarte ikke Ã¥ slette: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: er en mappe" @@ -403,7 +420,7 @@ msgstr "%s: ikke en vanlig fil" msgid "%s: file is too large" msgstr "%s: fila er for stor" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: klarte ikke Ã¥ kjøre binærfil" @@ -445,7 +462,7 @@ msgstr "historikk-spesifikasjon" msgid "%s: cannot open temp file: %s" msgstr "%s: klarte ikke Ã¥ Ã¥pne midlertidig fil: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "gjeldende" @@ -792,23 +809,23 @@ msgstr "lesefeil: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "du kan bare «return» fra en funksjon eller kildeskript" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "" "du kan ikke utføre «unset» (tømme bÃ¥de en funksjon og en variabel for " "verdier) samtidig" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: klarte ikke Ã¥ fjerne verdi" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: klarte ikke Ã¥ fjerne verdi fra skrivebeskyttet %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ikke en tabellvariabel" @@ -827,11 +844,11 @@ msgstr "%s: klarte ikke Ã¥ eksportere" msgid "shift count" msgstr "shift-antall" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "du kan ikke bÃ¥de definere og fjerne skallvalg samtidig" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: ugyldig navn pÃ¥ skallvalg" @@ -977,63 +994,68 @@ msgstr "\atidsavbrudd for inndata: auto-utlogging\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "klarte ikke Ã¥ videresende standard inndata fra «/dev/null». %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: «%c» er et ugyldig formattegn" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "datarør-feil" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" "eval: grensa for nivÃ¥er av eval-funksjoner i eval-funksjoner (%d) er " "overskredet" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: grensa for nivÃ¥er av kilder i kilder (%d) er overskredet" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: grensa for nivÃ¥er av funksjoner i funksjoner (%d) er overskredet" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: ikke tillatt: kommandonavn kan ikke inneholde «/»" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: fant ikke kommando" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: ugyldig tolk" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: klarte ikke Ã¥ kjøre binærfil: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "«%s» er en innebygd spesialfunksjon" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "klarte ikke Ã¥ duplisere fd %d til fd %d" @@ -1108,7 +1130,7 @@ msgstr "%s: feil i uttrykk\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: fikk ikke tilgang til foreldermapper" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "klarte ikke Ã¥ tilbakestille nodelay-modus for fd %d" @@ -1123,148 +1145,148 @@ msgstr "klarte ikke Ã¥ knytte ny fildeskriptor til bash-inndata fra fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: mellomlager for ny fd %d finnes allerede" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp-datarør" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "kopiert pid %d finnes i kjørende jobb %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "sletter ventende bakgrunnsjobb %d med prosessgruppe %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: prosess %5ld (%s) i _kommandokø" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: markert PID %5ld (%s) som levende" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: pid-en finnes ikke" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Ferdig" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Venter" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Venter(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Kjører" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Ferdig(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Avsluttet %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ukjent status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(kjerne lagret i fil) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "underprosess setpgid (%ld til %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: pid %ld er ikke en underprosess av dette skallet" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ingen kjennskap til prosess %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: prosess %d venter" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: jobben er avsluttet" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: jobb %d kjører allerede i bakgrunnen" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: slÃ¥r pÃ¥ WNOHANG for Ã¥ unngÃ¥ kronisk blokkering" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: linje %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (kjerne lagret i fil)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd nÃ¥: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp mislyktes" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: linjeregler" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "klarte ikke Ã¥ velge terminal-prosessgruppe (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "ingen jobbkontroll i dette skallet" @@ -1418,103 +1440,110 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "make_redirection: videresendinginstruks «%d» er utenfor tillatt rekkevidde" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "grensa for maksimalt antall here-dokumenter er overskredet" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "uforventet slutt pÃ¥ fil (EOF) under søk etter «%c»" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "uforventet slutt pÃ¥ fil (EOF) under søk etter «]]»" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntaksfeil i betinget uttrykk: forventet ikke symbolet «%s»" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntaksfeil i betinget uttrykk" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "forventet ikke symbolet «%s», men «)»" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "forventet «)»" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "«%s» er et uforventet argument for betinget unær operatør" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "uforventet argument for betinget unær operatør" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "«%s» er et uforventet symbol. Forventet betinget binær operatør" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "forventet betinget binæroperatør" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "«%s» er et uforventet argument for betinget binæroperatør" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "uforventet argument for betinget binæroperatør" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "«%c» er et uforventet symbol i en betinget kommando" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "«%s» er et uforventet symbol i en betinget kommando" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "«%d» er et uforventet symbol i en betinget kommando" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntaksfeil ved «%s», som er et uforventet symbol" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntaksfeil ved «%s»" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntaksfeil: uforventet slutt pÃ¥ fil" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntaksfeil" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Bruk «%s» for Ã¥ gÃ¥ ut av skallet.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "uforventet slutt pÃ¥ fil (EOF) under søk etter «)»" @@ -1523,6 +1552,11 @@ msgstr "uforventet slutt pÃ¥ fil (EOF) under søk etter «)»" msgid "completion: function `%s' not found" msgstr "fullføring: fant ikke funksjonen «%s»" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1589,44 +1623,48 @@ msgstr "/dev/(tcp|udp)/host/port støttes ikke uten nettverkstilkobling" msgid "redirection error: cannot duplicate fd" msgstr "videresendingsfeil: klarte ikke Ã¥ duplisere fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "fant ikke «/tmp». Opprett denne mappa!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "«/tmp» mÃ¥ være et gyldig mappenavn" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: ugyldig valg" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "klarte ikke Ã¥ velge %d som uid. Effektiv uid: %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "klarte ikke Ã¥ velge %d som gid. Effektiv gid: %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: er en mappe" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Jeg manger navn!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versjon %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1635,51 +1673,51 @@ msgstr "" "Bruk:\t%s [langt GNU-valg] [valg] …\n" "\t%s [langt GNU-valg] [valg] skriptfil …\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Lange GNU-valg:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Skallvalg:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t«-ilrsD», «-c kommando» eller «-O kortvalg_valg»\t\t(kun programkall)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t«-%s» eller «-o»\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Skriv «%s -c \"help set\"» for mer informasjon om skallvalg.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Skriv «%s -c help» for mer informasjon om innebygde skallkommandoer.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Bruk kommandoen «bashbug» for Ã¥ rapportere programfeil.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "bash-nettside: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Generell hjelp til bruk av GNU-programvare: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: ugyldig handling" @@ -1853,82 +1891,92 @@ msgstr "Ukjent signal #" msgid "Unknown Signal #%d" msgstr "#%d er et ukjent signal" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "ugyldig substitutt: %2$s mangler avsluttende «%1$s»" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: klarte ikke Ã¥ knytte liste til tabellmedlem" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "klarte ikke Ã¥ lage datarør for substitusjon av prosess" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "klarte ikke Ã¥ lage underprosess for substitusjon av prosess" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "klarte ikke Ã¥ Ã¥pne navngitt datarør %s for lesing" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "klarte ikke Ã¥ Ã¥pne navngitt datarør %s for skriving" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "klarte ikke Ã¥ duplisere navngitt datarør %s som fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "ugyldig substitusjon. %s mangler avsluttende «`»" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "klarte ikke Ã¥ lage datarør for substitusjon av kommando" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "klarte ikke Ã¥ lage underprosess for substitusjon av kommando" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: klarte ikke Ã¥ duplisere datarør som fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: ugyldig variabelnavn for navnreferanse" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: ugyldig substitusjon" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: ugyldig indirekte utvidelse" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: ugyldig variabelnavn" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter har null-verdi eller stÃ¥r tomt" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: understreng-uttrykk < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: du kan ikke tildele pÃ¥ denne mÃ¥ten" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1936,12 +1984,12 @@ msgstr "" "fremtidige versjoner av skallet skal tvinge evaluering som en aritmetisk " "substitusjon" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "ugyldig substitusjon. %s mangler avsluttende «`»" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "ingen treff pÃ¥ %s" @@ -1974,7 +2022,7 @@ msgstr "%s: forventet unær operatør" msgid "%s: binary operator expected" msgstr "%s: forventet binær operatør" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "«]» mangler" @@ -2000,73 +2048,73 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: %d er et ugyldig signal" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "feil under importering av definisjonen av funksjonen «%s»" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "skallnivÃ¥et (%d) er for høyt. Tilbakestiller til 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: sirkulær navnreferanse" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ingen funksjonskontekst i gjeldende virkefelt" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: variabel kan ikke tilknyttes verdi" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: ugyldig variabelnavn for navnreferanse" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ingen funksjonskontekst i gjeldende virkefelt" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s har exportstr som er null" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "%d er et ugyldig tegn i exportstr for %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "exportstr for %s mangler «=»" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: toppen av «shell_variables» er ikke en funksjonskontekst" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: kontekst for «global_variables» mangler" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: toppen av «shell_variables» er ikke et midlertidig miljøfelt" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: klarte ikke Ã¥ Ã¥pne som FIL" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: ugyldig verdi for sporing av fildeskriptor" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: samspill-verdi er utenfor tillatt rekkevidde" @@ -2939,10 +2987,11 @@ msgstr "" " det oppstÃ¥r en variabel-tildelingsfeil." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Gi verdier og attributter til variabler.\n" " \n" @@ -3471,7 +3520,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4936,6 +4985,7 @@ msgstr "" " Samme som sist kjørte kommando." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4945,7 +4995,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Lag en medprosess med valgt NAVN.\n" " \n" diff --git a/po/nl.gmo b/po/nl.gmo index 1b74453e47250e1ef715da9908626235d1aa2459..2cbcebf1251dff8d48ec0e59d4ec3c263eb8009d 100644 GIT binary patch delta 12084 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 Zw7~y8#m575$P?vmH#BB{vTQj+ED-i delta 12730 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 diff --git a/po/nl.po b/po/nl.po index ff516c4a..6e964fdf 100644 --- a/po/nl.po +++ b/po/nl.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-18 21:37+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -40,47 +40,53 @@ msgstr "" msgid "bad array subscript" msgstr "ongeldige array-index" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: kan geïndexeerd array niet omzetten naar associatief array" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: ongeldige sleutel voor associatief array" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: niet-numerieke index is niet mogelijk" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: een index is nodig bij toekenning aan associatief array" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "Kan %s niet aanmaken: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command(): kan voor opdracht geen toetsenkaart vinden" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: eerste teken dat geen witruimte is is niet '\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "geen sluit-'%c' in %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: ontbrekend scheidingsteken (dubbele punt)" @@ -100,7 +106,7 @@ msgstr "accoladevervanging: onvoldoende geheugen beschikbaar voor %d elementen" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "accoladevervanging: onvoldoende geheugen beschikbaar voor '%s'" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "'%s': ongeldige naam voor alias" @@ -161,11 +167,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME is niet gedefinieerd" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "te veel argumenten" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "geen andere map" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD is niet gedefinieerd" @@ -184,7 +195,7 @@ msgstr "waarschuwing: " msgid "%s: usage: " msgstr "%s: Gebruik: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: optie vereist een argument" @@ -199,7 +210,7 @@ msgstr "%s: vereist een numeriek argument" msgid "%s: not found" msgstr "%s: niet gevonden" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: ongeldige optie" @@ -209,7 +220,7 @@ msgstr "%s: ongeldige optie" msgid "%s: invalid option name" msgstr "%s: ongeldige optienaam" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "'%s': is geen geldige naam" @@ -318,7 +329,7 @@ msgid "%s: invalid action name" msgstr "%s: ongeldige actienaam" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: is geen completerings-aanduiding" @@ -331,7 +342,7 @@ msgstr "waarschuwing: optie -F functioneert mogelijk niet zoals verwacht" msgid "warning: -C option may not work as you expect" msgstr "waarschuwing: optie -C functioneert mogelijk niet zoals verwacht" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "er wordt momenteel geen completeringsfunctie uitgevoerd" @@ -339,41 +350,47 @@ msgstr "er wordt momenteel geen completeringsfunctie uitgevoerd" msgid "can only be used in a function" msgstr "kan alleen worden gebruikt binnen een functie" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: verwijzingsvariabele mag geen array zijn" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: zelfverwijzing door naamsverwijzingsvariabele is niet toegestaan" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: circulaire naamsverwijzing" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: ongeldige variabelenaam voor naamsverwijzing" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "'-f' kan niet gebruikt worden om een functie te definiëren" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: is een alleen-lezen functie" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: aangehaalde samengesteld-array-toekenning is verouderd" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: kan array-variabelen niet op deze manier verwijderen" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: kan associatief array niet omzetten naar geïndexeerd array" @@ -407,7 +424,7 @@ msgstr "%s: is niet dynamisch geladen" msgid "%s: cannot delete: %s" msgstr "Kan %s niet verwijderen: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: is een map" @@ -422,7 +439,7 @@ msgstr "%s: is geen normaal bestand" msgid "%s: file is too large" msgstr "%s: bestand is te groot" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: kan binair bestand niet uitvoeren" @@ -464,7 +481,7 @@ msgstr "geschiedenisaanduiding" msgid "%s: cannot open temp file: %s" msgstr "Kan tijdelijk bestand '%s' niet openen: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "huidige" @@ -810,21 +827,21 @@ msgstr "" "kan alleen een 'return' doen uit een functie of een uit script aangeroepen " "met 'source'" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "kan niet tegelijk een functie en een variabele verwijderen" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "Kan '%s' niet verwijderen" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "Kan '%s' niet verwijderen: %s is alleen-lezen" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: is geen array-variabele" @@ -843,11 +860,11 @@ msgstr "Kan '%s' niet exporteren" msgid "shift count" msgstr "shift-aantal" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "kan shell-opties niet tegelijk inschakelen en uitschakelen" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: ongeldige shell-optienaam" @@ -993,61 +1010,66 @@ msgstr "\awachten op invoer duurde te lang -- automatisch afgemeld\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "kan standaardinvoer niet omleiden vanaf /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: '%c': ongeldig opmaakteken" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "pijpfout" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: maximum 'eval'-nestingsniveau is overschreden (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximum 'source'-nestingsniveau is overschreden (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximum functie-nestingsniveau is overschreden (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: beperkte modus: '/' in opdrachtnamen is niet toegestaan" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: opdracht niet gevonden" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: ongeldige interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: kan binair bestand %s niet uitvoeren" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "'%s' is een speciale ingebouwde shell-functie" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "kan bestandsdescriptor %d niet dupliceren naar bestandsdescriptor %d" @@ -1122,7 +1144,7 @@ msgstr "%s: expressiefout\n" msgid "getcwd: cannot access parent directories" msgstr "getwd(): kan geen geen toegang verkrijgen tot bovenliggende mappen" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "kan 'nodelay'-modus niet uitschakelen voor bestandsdescriptor %d" @@ -1140,150 +1162,150 @@ msgid "save_bash_input: buffer already exists for new fd %d" msgstr "" "check_bash_input(): buffer bestaat al voor nieuwe bestandsdescriptor %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline(): procesgroep van pijp" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "afgesplitst PID %d hoort bij draaiende taak %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "verwijderen van gepauzeerde taak %d met procesgroep %ld..." -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process(): proces %5ld (%s) in de pijplijn" -#: jobs.c:1255 +#: jobs.c:1257 #, 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:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid(): PID %ld bestaat niet" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signaal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Klaar" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Gepauzeerd" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Gepauzeerd(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Wordt uitgevoerd" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Klaar(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Exit %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Onbekende afsluitwaarde" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(geheugendump gemaakt) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (werkmap: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "instellen van procesgroep %2$ld van dochter %1$ld" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for(): proces %ld is nergens geregistreerd" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job(): taak %d is gepauzeerd" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: taak is afgesloten" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: taak %d draait al op de achtergrond" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" "waitchld(): WNOHANG wordt ingeschakeld om een onbegrensde blokkering te " "vermijden" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: regel %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (geheugendump gemaakt)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(werkmap is nu: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp() is mislukt" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: lijnprotocol" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid()" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "kan procesgroep (%d) van terminal niet instellen" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "er is geen taakbesturing in deze shell" @@ -1438,104 +1460,111 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection(): omleidingsinstructie '%d' valt buiten bereik" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "maximum aantal \"hier\"-documenten is overschreden" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende '%c'" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "onverwacht bestandseinde tijdens zoeken naar ']]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntaxfout in conditionele expressie: onverwacht symbool '%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntaxfout in conditionele expressie" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "onverwacht symbool '%s'; ')' werd verwacht" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "')' werd verwacht" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "onverwacht argument '%s' bij eenzijdige conditionele operator" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "onverwacht argument bij eenzijdige conditionele operator" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "" "onverwacht symbool '%s'; tweezijdige conditionele operator werd verwacht" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "tweezijdige conditionele operator werd verwacht" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "onverwacht argument '%s' bij tweezijdige conditionele operator" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "onverwacht argument bij tweezijdige conditionele operator" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "onverwacht symbool '%c' in conditionele opdracht" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "onverwacht symbool '%s' in conditionele opdracht" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "onverwacht symbool %d in conditionele opdracht" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntaxfout nabij onverwacht symbool '%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntaxfout nabij '%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntaxfout: onverwacht bestandseinde" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntaxfout" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Gebruik \"%s\" om de shell te verlaten.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende ')'" @@ -1544,6 +1573,11 @@ msgstr "onverwacht bestandseinde tijdens zoeken naar bijpassende ')'" msgid "completion: function `%s' not found" msgstr "completion(): functie '%s' niet gevonden" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1612,44 +1646,48 @@ msgstr "/dev/(tcp|udp)/host/port is niet mogelijk zonder netwerk" msgid "redirection error: cannot duplicate fd" msgstr "omleidingsfout: kan bestandsdescriptor niet dupliceren" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "Kan /tmp niet vinden; maak deze aan!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp dient een geldige mapnaam te zijn" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: ongeldige optie" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "kan UID niet op %d instellen; effectieve UID is %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "kan GID niet op %d instellen; effectieve GID is %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: is een map" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ik heb geen naam!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versie %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1658,51 +1696,51 @@ msgstr "" "Gebruik: %s [opties]\n" " %s [opties] scriptbestand...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Lange opties:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Korte opties:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD, of -c OPDRACHT, of -O SHOPT-OPTIE (enkel bij aanroep)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s, of -o optie (veranderbaar via 'set')\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Typ '%s -c \"help set\"' voor meer informatie over shell-opties.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Typ '%s -c help' voor meer informatie over ingebouwde shell-functies.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Gebruik de opdracht 'bashbug' om fouten in bash te rapporteren.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Webpagina van 'bash': \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Algemene hulp bij gebruik van GNU-software: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask(): %d: ongeldige operatie" @@ -1879,83 +1917,93 @@ msgstr "Onbekend signaalnummer" msgid "Unknown Signal #%d" msgstr "Onbekend signaal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "ongeldige vervanging: geen sluit-'%s' in %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: kan geen lijst toewijzen aan een array-element" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "kan geen pijp maken voor procesvervanging" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "kan geen dochterproces maken voor procesvervanging" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "kan pijp genaamd %s niet openen om te lezen" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "kan pijp genaamd %s niet openen om te schrijven" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "kan pijp genaamd %s niet dupliceren als bestandsdescriptor %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "ongeldige vervanging: geen afsluitende '`' in %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "kan geen pijp maken voor opdrachtvervanging" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "kan geen dochterproces maken voor opdrachtvervanging" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute(): kan pijp niet dupliceren als bestandsdescriptor 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: ongeldige variabelenaam voor naamsverwijzing" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: ongeldige vervanging" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: ongeldige indirecte expansie" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: ongeldige variabelenaam" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: lege parameter, of niet ingesteld" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: resultaat van deeltekenreeks is kleiner dan nul" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: kan niet op deze manier toewijzen" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1963,12 +2011,12 @@ msgstr "" "toekomstige versies van de shell zullen dit als een rekenkundige vervanging " "evalueren" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "ongeldige vervanging: geen afsluitende '`' in %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "geen overeenkomst: %s" @@ -2001,7 +2049,7 @@ msgstr "eenzijdige operator werd verwacht, %s gevonden" msgid "%s: binary operator expected" msgstr "tweezijdige operator werd verwacht, %s gevonden" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "ontbrekende ']'" @@ -2027,75 +2075,75 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler(): ongeldig signaal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "fout tijdens importeren van functiedefinitie voor '%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shell-niveau is te hoog (%d); teruggezet op 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: circulaire naamsverwijzing" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" "make_local_variable(): er is geen functiecontext in huidige geldigheidsbereik" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: aan variabele mag geen waarde toegewezen worden" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: ongeldige variabelenaam voor naamsverwijzing" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" "all_local_variables(): er is geen functiecontext in huidige geldigheidsbereik" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "*** %s heeft lege export-tekenreeks" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "*** ongeldig teken '%d' in export-tekenreeks voor %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "*** geen '=' in export-tekenreeks voor %s" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context(): er is geen 'global_variables'-context" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope(): top van 'shell_variables' is geen tijdelijk geldigheidsbereik" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: Kan %s niet openen als BESTAND" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: ongeldige waarde %s voor 'trace'-bestandsdescriptor" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: compatibiliteitswaarde valt buiten bereik" @@ -2957,10 +3005,11 @@ msgstr "" " toekenningsfout optrad." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Waarden en eigenschappen van variabelen instellen.\n" "\n" @@ -3483,7 +3532,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4962,6 +5011,7 @@ msgstr "" " De afsluitwaarde is die van de laatst uitgevoerde opdracht." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4971,7 +5021,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Een co-proces aanmaken genaamd NAAM.\n" "\n" diff --git a/po/pl.gmo b/po/pl.gmo index e55dbb60bd9b58e3d0afcaf0ee8430aa7180bfe0..94d8481890b763f43008fd2bf7ea39584ba0f497 100644 GIT binary patch delta 12275 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 YO1l?b{K?C<=x}VH*p7{{fzMn24{NO3;Q#;t delta 13016 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 diff --git a/po/pl.po b/po/pl.po index 1b592bd6..9d4e401a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-10-24 22:34+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -23,48 +23,54 @@ msgstr "" msgid "bad array subscript" msgstr "nieprawidÅ‚owy indeks tablicy" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: nie można przeksztaÅ‚cić tablicy indeksowanej na asocjacyjnÄ…" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: błędny klucz tablicy asocjacyjnej" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nie można przypisać do nienumerycznego indeksu" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: przy przypisaniu do tablicy asocjacyjnej należy użyć nawiasów" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nie można utworzyć: %s" # ??? -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: nie można znaleźć mapy klawiszy dla polecenia" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: pierwszym drukowalnym znakiem nie jest `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "brak zamykajÄ…cego `%c' w %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: brak separujÄ…cego dwukropka" @@ -86,7 +92,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "rozwijanie nawiasów: nie udaÅ‚o siÄ™ przydzielić pamiÄ™ci dla `%s'" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': błędna nazwa aliasu" @@ -149,11 +155,16 @@ msgstr "" msgid "HOME not set" msgstr "Nie ustawiono HOME" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "za dużo argumentów" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "brak innego katalogu" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Nie ustawiono OLDPWD" @@ -172,7 +183,7 @@ msgstr "uwaga: " msgid "%s: usage: " msgstr "%s: skÅ‚adnia: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: opcja wymaga argumentu" @@ -187,7 +198,7 @@ msgstr "%s: wymagany argument numeryczny" msgid "%s: not found" msgstr "%s: nie znaleziono" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: nieprawidÅ‚owa opcja" @@ -197,7 +208,7 @@ msgstr "%s: nieprawidÅ‚owa opcja" msgid "%s: invalid option name" msgstr "%s: nieprawidÅ‚owa nazwa opcji" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': nieprawidÅ‚owy identyfikator" @@ -306,7 +317,7 @@ msgid "%s: invalid action name" msgstr "%s: nieprawidÅ‚owa nazwa akcji" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: brak definicji dla uzupeÅ‚nienia" @@ -319,7 +330,7 @@ msgstr "uwaga: opcja -F może dziaÅ‚ać inaczej niż oczekiwano" msgid "warning: -C option may not work as you expect" msgstr "uwaga: opcja -C może dziaÅ‚ać inaczej niż oczekiwano" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "aktualnie nie jest wykonywana funkcja dopeÅ‚niania" @@ -327,41 +338,47 @@ msgstr "aktualnie nie jest wykonywana funkcja dopeÅ‚niania" msgid "can only be used in a function" msgstr "można używać tylko w funkcji" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: zmienna referencyjna nie może być tablicÄ…" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: zmienna referencyjna nie może wskazywać na siebie" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: cykliczne odwoÅ‚anie do nazwy" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: nieprawidÅ‚owa nazwa zmiennej przy odwoÅ‚aniu do nazwy" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "nie można używać `-f' do tworzenia funkcji" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkcja tylko do odczytu" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: przypisanie zÅ‚ożonej tablicy z cytowaniem jest przestarzaÅ‚e" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: nie można w ten sposób unicestwić zmiennej tablicowej" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: nie można przeksztaÅ‚cić tablicy asocjacyjnej na indeksowanÄ…" @@ -395,7 +412,7 @@ msgstr "%s: nie jest Å‚adowany dynamicznie" msgid "%s: cannot delete: %s" msgstr "%s: nie można usunąć: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: jest katalogiem" @@ -410,7 +427,7 @@ msgstr "%s: nie jest zwykÅ‚ym plikiem" msgid "%s: file is too large" msgstr "%s: plik jest za duży" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nie można uruchomić pliku binarnego" @@ -452,7 +469,7 @@ msgstr "specyfikacja historii" msgid "%s: cannot open temp file: %s" msgstr "%s: nie udaÅ‚o siÄ™ otworzyć pliku tymczasowego: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "bieżące" @@ -801,21 +818,21 @@ msgstr "błąd odczytu: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "wyjÅ›cie przez `return' możliwe tylko z funkcji lub skryptu" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "nie można jednoczeÅ›nie anulować definicji funkcji i zmiennej" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: nie można anulować definicji" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nie można anulować definicji: %s jest tylko do odczytu" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: nie jest zmiennÄ… tablicowÄ…" @@ -834,11 +851,11 @@ msgstr "%s: nie można wyeksportować" msgid "shift count" msgstr "licznik przesuniÄ™cia" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "nie można opcji powÅ‚oki jednoczeÅ›nie ustawić i unieważnić" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nieprawidÅ‚owa nazwa opcji powÅ‚oki" @@ -984,61 +1001,66 @@ msgstr "\aprzekroczony czas oczekiwania na dane wejÅ›ciowe: auto-wylogowanie\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "nie można przekierować standardowego wejÅ›cia z /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': nieprawidÅ‚owy znak formatujÄ…cy" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "błąd potoku" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: przekroczono maksymalny poziom zagnieżdżenia polecenia eval (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: przekroczono maksymalny poziom zagnieżdżenia polecenia source (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: przekroczono maksymalny poziom zagnieżdżenia funkcji (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: ograniczony: nie można podawać `/' w nazwach poleceÅ„" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: nie znaleziono polecenia" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: zÅ‚y interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: nie można uruchomić pliku binarnego: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s' jest specjalnym poleceniem wewnÄ™trznym" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nie można skopiować deskryptora pliku %d do %d" @@ -1115,7 +1137,7 @@ msgstr "%s: błąd w wyrażeniu\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: niemożliwy dostÄ™p do katalogów nadrzÄ™dnych" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nie można wyłączyć trybu nieblokujÄ…cego dla deskryptora %d" @@ -1130,150 +1152,150 @@ msgstr "nie można przydzielić nowego deskryptora pliku dla wejÅ›cia basha z %d msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: bufor dla nowego deskryptora %d już istnieje" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" # ??? -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "proces o PID %d wystÄ™puje w dziaÅ‚ajÄ…cym zadaniu %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "usuwanie zatrzymanego zadania %d z grupÄ… procesów %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) w potoku" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) oznaczony jako nadal żywy" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: brak takiego PID-u" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "SygnaÅ‚ %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "ZakoÅ„czono" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Zatrzymano" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Zatrzymano(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "DziaÅ‚a" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "ZakoÅ„czono(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Kod wyjÅ›cia %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Stan nieznany" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(zrzut pamiÄ™ci) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (katalog: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid potomka (%ld na %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: PID %ld nie jest potomkiem tej powÅ‚oki" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Brak rekordu dla procesu %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: zadanie %d jest zatrzymane" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: zadanie zostaÅ‚o przerwane" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: zadanie %d już pracuje w tle" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" "waitchld: wyłączanie WNOHANG w celu unikniÄ™cia nieskoÅ„czonego oczekiwania" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: linia %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (zrzut pamiÄ™ci)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(katalog: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp nie powiodÅ‚o siÄ™" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: dyscyplina linii" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "nie można ustawić grupy procesów terminala (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "w tej powÅ‚oce nie ma kontroli zadaÅ„" @@ -1428,103 +1450,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: instrukcja przekierowania `%d' poza zakresem" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "przekroczono maksymalnÄ… liczbÄ™ dokumentów w miejscu" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "nieoczekiwany EOF podczas poszukiwania pasujÄ…cego `%c'" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "nieoczekiwany EOF podczas poszukiwania `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "błąd skÅ‚adni w wyrażeniu warunkowym: nieoczekiwany znacznik `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "błąd skÅ‚adni w wyrażeniu warunkowym" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "nieoczekiwany znacznik `%s', oczekiwano `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "oczekiwano `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "nieoczekiwany argument `%s' jednoargumentowego operatora warunkowego" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "nieoczekiwany argument jednoargumentowego operatora warunkowego" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "nieoczekiwany argument `%s', oczekiwano dwuarg. operatora warunkowego" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "oczekiwano dwuargumentowego operatora warunkowego" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "nieoczekiwany argument `%s' dwuargumentowego operatora warunkowego" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "nieoczekiwany argument dwuargumentowego operatora warunkowego" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "nieoczekiwany znacznik `%c' w poleceniu warunkowym" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "nieoczekiwany znacznik `%s' w poleceniu warunkowym" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "nieoczekiwany znacznik %d w poleceniu warunkowym" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "błąd skÅ‚adni przy nieoczekiwanym znaczniku `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "błąd skÅ‚adni przy `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "błąd skÅ‚adni: nieoczekiwany koniec pliku" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "błąd skÅ‚adni" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Użyj \"%s\", aby opuÅ›cić tÄ™ powÅ‚okÄ™.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "nieoczekiwany EOF podczas poszukiwania pasujÄ…cego `)'" @@ -1533,6 +1562,11 @@ msgstr "nieoczekiwany EOF podczas poszukiwania pasujÄ…cego `)'" msgid "completion: function `%s' not found" msgstr "uzupeÅ‚nienie: nie znaleziono funkcji `%s'" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1599,44 +1633,48 @@ msgstr "/dev/(tcp|udp)/host/port nie sÄ… wspierane bez sieci" msgid "redirection error: cannot duplicate fd" msgstr "błąd przekierowania: nie można powielić deskryptora pliku" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "nie można znaleźć /tmp, proszÄ™ o utworzenie!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp musi być prawidÅ‚owÄ… nazwÄ… katalogu" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: nieprawidÅ‚owa opcja" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "nie można ustawić uid-a na %d: efektywny uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "nie można ustawić gid-a na %d: efektywny gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: jest katalogiem" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nie mam nazwy!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, wersja %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1645,55 +1683,55 @@ msgstr "" "Użycie:\t%s [dÅ‚uga opcja GNU] [opcja] ...\n" "\t%s [dÅ‚uga opcja GNU] [opcja] plik-skryptu ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "DÅ‚ugie opcje GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opcje powÅ‚oki:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD lub -c polecenie lub -O shopt_option\t\t(tylko wywoÅ‚anie)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s lub -o opcja\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Aby uzyskać wiÄ™cej informacji o opcjach powÅ‚oki, napisz `%s -c \"help set" "\"'.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Aby uzyskać wiÄ™cej informacji o poleceniach wewnÄ™trznych powÅ‚oki,\n" "napisz `%s -c help'.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Do zgÅ‚aszania błędów należy używać polecenia `bashbug'.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "strona domowa basha: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Ogólna pomoc przy użytkowaniu oprogramowania GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: nieprawidÅ‚owa operacja" @@ -1867,82 +1905,92 @@ msgstr "Nieznany sygnaÅ‚ #" msgid "Unknown Signal #%d" msgstr "Nieznany sygnaÅ‚ #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "zÅ‚e podstawienie: brak zamykajÄ…cego `%s' w %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nie można przypisać listy do elementu tablicy" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "nie można utworzyć potoku dla podstawienia procesu" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "nie można utworzyć procesu potomnego dla podstawienia procesu" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nie można otworzyć nazwanego potoku %s do odczytu" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nie można otworzyć nazwanego potoku %s do zapisu" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nie można powielić nazwanego potoku %s jako deskryptor %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "zÅ‚e podstawienie: brak zamykajÄ…cego \"`\" w %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "nie można utworzyć potoku dla podstawienia polecenia" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "nie można utworzyć procesu potomnego dla podstawienia polecenia" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nie można powielić potoku jako deskryptora 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: nieprawidÅ‚owa nazwa zmiennej przy odwoÅ‚aniu do nazwy" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: zÅ‚e podstawienie" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: błędne rozwiniÄ™cie niebezpoÅ›rednie" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "`%s': błędna nazwa zmiennej" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametr pusty lub nieustawiony" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: wyrażenie dla podÅ‚aÅ„cucha < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nie można przypisywać w ten sposób" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1950,12 +1998,12 @@ msgstr "" "przyszÅ‚e wersje powÅ‚oki bÄ™dÄ… wymuszać obliczenie jako podstawienie " "arytmetyczne" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "zÅ‚e podstawienie: brak zamykajÄ…cego \"`\" w %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "brak pasujÄ…cego: %s" @@ -1988,7 +2036,7 @@ msgstr "%s: oczekiwano operatora jednoargumentowego" msgid "%s: binary operator expected" msgstr "%s: oczekiwano operatora dwuargumentowego" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "brakujÄ…cy `]'" @@ -2014,73 +2062,73 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: zÅ‚y sygnaÅ‚ %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "błąd importu definicji funkcji dla `%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "poziom powÅ‚oki (%d) jest za duży, ustawiono na 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: cykliczne odwoÅ‚anie do nazwy" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: brak kontekstu funkcji w bieżącym zakresie" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: nie można przypisać wartoÅ›ci do zmiennej" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: nieprawidÅ‚owa nazwa zmiennej przy odwoÅ‚aniu do nazwy" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: brak kontekstu funkcji w bieżącym zakresie" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s ma pusty exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "nieprawidÅ‚owy znak %d w exportstr dla %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "brak `=' w exportstr dla %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: nagłówek shell_variables poza kontekstem funkcji" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: brak kontekstu global_variables" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: nagłówek shell_variables poza zakresem tymczasowego Å›rodowiska" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: nie można otworzyć jako PLIK" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: nieprawidÅ‚owa wartość dla deskryptora pliku do Å›ledzenia" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: wartość zgodnoÅ›ci poza zakresem" @@ -2970,10 +3018,11 @@ msgstr "" " Polecenie zwraca prawdÄ™, chyba że podano błędnÄ… opcjÄ™ lub wystÄ…pi błąd." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Ustawienie wartoÅ›ci i atrybutów zmiennej.\n" " \n" @@ -3517,7 +3566,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5032,6 +5081,7 @@ msgstr "" " Zwracany jest status zakoÅ„czenia ostatniego wykonanego polecenia." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5041,7 +5091,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Utworzenie koprocesu o podanej NAZWIE.\n" " \n" diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo index 3d8b94287fcdc2fe34bc1ebb2290ef7ac36c7ed6..7e9973ddaa1056798c632e123904b32ccdc791d0 100644 GIT binary patch delta 13642 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 w|K1B3jwRR910 diff --git a/po/pt_BR.po b/po/pt_BR.po index 1aec81d4..5273c63a 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,14 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-02 07:21-0400\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2016-02-12 09:33-0200\n" "Last-Translator: Rafael Fontenelle \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" +"Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "X-Generator: Poedit 1.8.7\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -23,46 +24,53 @@ msgstr "" msgid "bad array subscript" msgstr "subscrito de array incorreto" -#: arrayfunc.c:360 builtins/declare.def:647 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: impossível converter array indexado para associativo" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: chave de array associativo inválida" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: impossível atribuir a índice não numérico" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: deve usar subscrito ao atribuir um array associativo" -#: bashhist.c:405 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: impossível criar: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" -msgstr "bash_execute_unix_command: impossível localizar mapa de teclas para comando" +msgstr "" +"bash_execute_unix_command: impossível localizar mapa de teclas para comando" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: primeiro caractere não-espaço em branco não é `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "sem `%c' de fechamento em %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s faltando separador dois-pontos" @@ -82,7 +90,7 @@ msgstr "expansão de chaves: falha ao alocar memória para %d elementos" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "expansão de chaves: falha ao alocar memória para `%s'" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': nome de apelido (alias) inválido" @@ -139,15 +147,20 @@ msgstr "" " \n" " Sem EXPR, retorna " -#: builtins/cd.def:320 +#: builtins/cd.def:321 msgid "HOME not set" msgstr "HOME não definida" -#: builtins/cd.def:328 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "número excessivo de argumentos" -#: builtins/cd.def:339 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "\t\tencontrado no diretório atual." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD não definida" @@ -166,7 +179,7 @@ msgstr "aviso: " msgid "%s: usage: " msgstr "%s: uso: " -#: builtins/common.c:199 shell.c:509 shell.c:800 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: a opção requer um argumento" @@ -181,7 +194,7 @@ msgstr "%s: requer argumento numérico" msgid "%s: not found" msgstr "%s: não encontrado" -#: builtins/common.c:222 shell.c:813 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: opção inválida" @@ -191,7 +204,7 @@ msgstr "%s: opção inválida" msgid "%s: invalid option name" msgstr "%s: nome de opção inválido" -#: builtins/common.c:236 general.c:240 general.c:245 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': não é um identificador válido" @@ -204,7 +217,7 @@ msgstr "número octal inválido" msgid "invalid hex number" msgstr "número do hexa inválido" -#: builtins/common.c:250 expr.c:1470 +#: builtins/common.c:250 expr.c:1473 msgid "invalid number" msgstr "número inválido" @@ -216,9 +229,11 @@ msgstr "%s: especificação de sinal inválida" #: builtins/common.c:265 #, c-format msgid "`%s': not a pid or valid job spec" -msgstr "`%s': não é um identificador de processo (pid) nem é uma especificação de trabalho válida" +msgstr "" +"`%s': não é um identificador de processo (pid) nem é uma especificação de " +"trabalho válida" -#: builtins/common.c:272 error.c:510 +#: builtins/common.c:272 error.c:511 #, c-format msgid "%s: readonly variable" msgstr "%s: a variável permite somente leitura" @@ -280,17 +295,17 @@ msgstr "erro ao definir atributos do terminal: %s" msgid "error getting terminal attributes: %s" msgstr "erro ao obter atributos do terminal: %s" -#: builtins/common.c:583 +#: builtins/common.c:585 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" msgstr "%s: erro ao obter o diretório atual: %s: %s\n" -#: builtins/common.c:649 builtins/common.c:651 +#: builtins/common.c:651 builtins/common.c:653 #, c-format msgid "%s: ambiguous job spec" msgstr "%s: especificação de trabalho ambígua" -#: builtins/common.c:916 +#: builtins/common.c:918 msgid "help not available in this version" msgstr "ajuda não disponível nesta versão" @@ -299,21 +314,21 @@ msgstr "ajuda não disponível nesta versão" msgid "%s: invalid action name" msgstr "%s: nome de ação inválido" -#: builtins/complete.def:451 builtins/complete.def:646 -#: builtins/complete.def:856 +#: builtins/complete.def:452 builtins/complete.def:647 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: nenhuma especificação de completação" -#: builtins/complete.def:698 +#: builtins/complete.def:699 msgid "warning: -F option may not work as you expect" msgstr "aviso: a opção -F pode não funcionar como esperado" -#: builtins/complete.def:700 +#: builtins/complete.def:701 msgid "warning: -C option may not work as you expect" msgstr "aviso: a opção -C pode não funcionar como esperado" -#: builtins/complete.def:829 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "não se está executando atualmente função de completação" @@ -321,41 +336,47 @@ msgstr "não se está executando atualmente função de completação" msgid "can only be used in a function" msgstr "somente pode ser usado em uma função" -#: builtins/declare.def:330 builtins/declare.def:566 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: variável de referência não pode ser um array" -#: builtins/declare.def:339 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: referência a si próprio da variável nameref não é permitido" -#: builtins/declare.def:346 builtins/declare.def:575 subst.c:6257 subst.c:8606 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s referência circular de nome" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: nome de variável inválido para referência de nome" -#: builtins/declare.def:424 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "impossível usar `-f' para criar funções" -#: builtins/declare.def:436 execute_cmd.c:5551 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: função somente para leitura" -#: builtins/declare.def:620 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: atribuição de array composto com aspas está obsoleto" -#: builtins/declare.def:634 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: impossível destruir variáveis de array desta maneira" -#: builtins/declare.def:641 builtins/read.def:750 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: impossível converter array associativo para indexado" @@ -364,52 +385,52 @@ msgstr "%s: impossível converter array associativo para indexado" msgid "dynamic loading not available" msgstr "carregamento dinâmico não está disponível" -#: builtins/enable.def:342 +#: builtins/enable.def:343 #, c-format msgid "cannot open shared object %s: %s" msgstr "impossível abrir objeto compartilhado %s: %s" -#: builtins/enable.def:368 +#: builtins/enable.def:369 #, c-format msgid "cannot find %s in shared object %s: %s" msgstr "impossível localizar %s no objeto compartilhado %s: %s" -#: builtins/enable.def:386 +#: builtins/enable.def:387 #, c-format msgid "load function for %s returns failure (%d): not loaded" msgstr "função de carregamento para %s retorna falha (%d): não foi carregada" -#: builtins/enable.def:511 +#: builtins/enable.def:512 #, c-format msgid "%s: not dynamically loaded" msgstr "%s: não foi carregado dinamicamente" -#: builtins/enable.def:537 +#: builtins/enable.def:538 #, c-format msgid "%s: cannot delete: %s" msgstr "%s: impossível excluir: %s" -#: builtins/evalfile.c:143 builtins/hash.def:171 execute_cmd.c:5393 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: é um diretório" -#: builtins/evalfile.c:149 +#: builtins/evalfile.c:150 #, c-format msgid "%s: not a regular file" msgstr "%s: não é um arquivo irregular" -#: builtins/evalfile.c:158 +#: builtins/evalfile.c:159 #, c-format msgid "%s: file is too large" msgstr "%s: arquivo é muito grande" -#: builtins/evalfile.c:193 builtins/evalfile.c:211 shell.c:1551 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: impossível executar o arquivo binário" -#: builtins/exec.def:155 builtins/exec.def:157 builtins/exec.def:234 +#: builtins/exec.def:156 builtins/exec.def:158 builtins/exec.def:235 #, c-format msgid "%s: cannot execute: %s" msgstr "%s: impossível executar: %s" @@ -433,20 +454,20 @@ msgstr "Há trabalhos parados.\n" msgid "There are running jobs.\n" msgstr "Há trabalhos em execução.\n" -#: builtins/fc.def:268 +#: builtins/fc.def:269 msgid "no command found" msgstr "nenhum comando encontrado" -#: builtins/fc.def:326 builtins/fc.def:375 +#: builtins/fc.def:327 builtins/fc.def:376 msgid "history specification" msgstr "especificação do histórico" -#: builtins/fc.def:396 +#: builtins/fc.def:397 #, c-format msgid "%s: cannot open temp file: %s" msgstr "%s: impossível abrir arquivo temporário: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:282 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "atual" @@ -469,34 +490,37 @@ msgstr "%s: a opção requer um argumento: -- %c\n" msgid "hashing disabled" msgstr "hashing está desabilitado" -#: builtins/hash.def:138 +#: builtins/hash.def:139 #, c-format msgid "%s: hash table empty\n" msgstr "%s: tabela de hash está vazia\n" -#: builtins/hash.def:253 +#: builtins/hash.def:254 #, c-format msgid "hits\tcommand\n" msgstr "número\tcomando\n" -#: builtins/help.def:134 +#: builtins/help.def:135 #, c-format msgid "Shell commands matching keyword `" msgid_plural "Shell commands matching keywords `" msgstr[0] "Comandos shell correspondendo à palavra-chave `" msgstr[1] "Comandos shell correspondendo às palavras-chave `" -#: builtins/help.def:186 +#: builtins/help.def:187 #, c-format -msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "nenhum tópico de ajuda corresponde a `%s'. Tente `help help' ou `man -k %s' ou `info %s'." +msgid "" +"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "" +"nenhum tópico de ajuda corresponde a `%s'. Tente `help help' ou `man -k %s' " +"ou `info %s'." -#: builtins/help.def:225 +#: builtins/help.def:226 #, c-format msgid "%s: cannot open: %s" msgstr "%s: impossível abrir: %s" -#: builtins/help.def:525 +#: builtins/help.def:526 #, c-format msgid "" "These shell commands are defined internally. Type `help' to see this list.\n" @@ -507,24 +531,31 @@ msgid "" "A star (*) next to a name means that the command is disabled.\n" "\n" msgstr "" -"Esses comandos shell são definidos internamente. Digite `help' para ver essa\n" +"Esses comandos shell são definidos internamente. Digite `help' para ver " +"essa\n" "lista. Digite `help NOME' para descobrir mais sobre a função `NOME'.\n" "Use `info bash' para descobrir mais sobre o shell em geral.\n" -"Use `man -k' ou `info' para descobrir mais sobre comandos que não estão nesta\n" +"Use `man -k' ou `info' para descobrir mais sobre comandos que não estão " +"nesta\n" "lista.\n" "\n" "Um asterisco (*) próximo ao nome significa que o comando está desabilitado.\n" "\n" -#: builtins/history.def:154 +#: builtins/history.def:155 msgid "cannot use more than one of -anrw" msgstr "impossível usar mais de um dentre -anrw" -#: builtins/history.def:186 +#: builtins/history.def:187 msgid "history position" msgstr "posição no histórico" -#: builtins/history.def:371 +#: builtins/history.def:264 +#, fuzzy, c-format +msgid "%s: invalid timestamp" +msgstr "%s argumento inválido" + +#: builtins/history.def:375 #, c-format msgid "%s: history expansion failed" msgstr "%s: expansão do histórico falhou" @@ -581,44 +612,44 @@ msgstr "%s: origem do array inválido" msgid "%s: invalid callback quantum" msgstr "%s: quantidade de chamadas inválida" -#: builtins/mapfile.def:349 +#: builtins/mapfile.def:350 msgid "empty array variable name" msgstr "nome de variável array vazio" -#: builtins/mapfile.def:370 +#: builtins/mapfile.def:371 msgid "array variable support required" msgstr "requer suporte a variável de array" -#: builtins/printf.def:410 +#: builtins/printf.def:412 #, c-format msgid "`%s': missing format character" msgstr "`%s': faltando caractere de formato" -#: builtins/printf.def:464 +#: builtins/printf.def:467 #, c-format msgid "`%c': invalid time format specification" msgstr "`%c': especificação de formato de tempo inválida" -#: builtins/printf.def:666 +#: builtins/printf.def:669 #, c-format msgid "`%c': invalid format character" msgstr "`%c': caractere de formato inválido" -#: builtins/printf.def:692 +#: builtins/printf.def:695 #, c-format msgid "warning: %s: %s" msgstr "aviso: %s: %s" -#: builtins/printf.def:778 +#: builtins/printf.def:781 #, c-format msgid "format parsing problem: %s" msgstr "problema ao analisar formato: %s" -#: builtins/printf.def:875 +#: builtins/printf.def:878 msgid "missing hex digit for \\x" msgstr "faltando dígito hexa para \\x" -#: builtins/printf.def:890 +#: builtins/printf.def:893 #, c-format msgid "missing unicode digit for \\%c" msgstr "faltando dígito unicode para \\%c" @@ -659,10 +690,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 "" "Exibe a lista de diretórios atualmente memorizados. Diretórios são\n" @@ -774,40 +807,43 @@ msgstr "" msgid "%s: invalid timeout specification" msgstr "%s: especificação de tempo limite inválida" -#: builtins/read.def:695 +#: builtins/read.def:696 #, c-format msgid "read error: %d: %s" msgstr "erro de leitura: %d: %s" #: builtins/return.def:71 msgid "can only `return' from a function or sourced script" -msgstr "possível retornar (`return') apenas de uma função ou script carregado (com `source')" +msgstr "" +"possível retornar (`return') apenas de uma função ou script carregado (com " +"`source')" -#: builtins/set.def:829 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" -msgstr "impossível simultaneamente remover definição de uma função e uma variável" +msgstr "" +"impossível simultaneamente remover definição de uma função e uma variável" -#: builtins/set.def:876 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: impossível remover definição" -#: builtins/set.def:897 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: impossível remover definição: %s somente-leitura" -#: builtins/set.def:910 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: não é uma variável array" -#: builtins/setattr.def:188 +#: builtins/setattr.def:191 #, c-format msgid "%s: not a function" msgstr "%s: não é uma função" -#: builtins/setattr.def:193 +#: builtins/setattr.def:196 #, c-format msgid "%s: cannot export" msgstr "%s: impossível exportar" @@ -816,11 +852,12 @@ msgstr "%s: impossível exportar" msgid "shift count" msgstr "número de shift" -#: builtins/shopt.def:283 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" -msgstr "impossível simultaneamente definir e remover definição de opções do shell" +msgstr "" +"impossível simultaneamente definir e remover definição de opções do shell" -#: builtins/shopt.def:350 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: nome de opção de shell inválido" @@ -834,88 +871,88 @@ msgstr "requer argumento arquivo" msgid "%s: file not found" msgstr "%s: arquivo não encontrado" -#: builtins/suspend.def:101 +#: builtins/suspend.def:102 msgid "cannot suspend" msgstr "impossível suspender" -#: builtins/suspend.def:111 +#: builtins/suspend.def:112 msgid "cannot suspend a login shell" msgstr "impossível suspender um shell de login." -#: builtins/type.def:235 +#: builtins/type.def:236 #, c-format msgid "%s is aliased to `%s'\n" msgstr "%s está apelidada para `%s'\n" -#: builtins/type.def:256 +#: builtins/type.def:257 #, c-format msgid "%s is a shell keyword\n" msgstr "%s é uma palavra-chave do shell\n" -#: builtins/type.def:275 +#: builtins/type.def:276 #, c-format msgid "%s is a function\n" msgstr "%s é uma função\n" -#: builtins/type.def:299 +#: builtins/type.def:300 #, c-format msgid "%s is a special shell builtin\n" msgstr "%s é um comando interno especial do shell\n" -#: builtins/type.def:301 +#: builtins/type.def:302 #, c-format msgid "%s is a shell builtin\n" msgstr "%s é um comando interno do shell\n" -#: builtins/type.def:323 builtins/type.def:408 +#: builtins/type.def:324 builtins/type.def:409 #, c-format msgid "%s is %s\n" msgstr "%s é %s\n" -#: builtins/type.def:343 +#: builtins/type.def:344 #, c-format msgid "%s is hashed (%s)\n" msgstr "%s está na tabela hash (%s)\n" -#: builtins/ulimit.def:397 +#: builtins/ulimit.def:398 #, c-format msgid "%s: invalid limit argument" msgstr "%s: argumento limite inválido" -#: builtins/ulimit.def:423 +#: builtins/ulimit.def:424 #, c-format msgid "`%c': bad command" msgstr "`%c': comando incorreto" -#: builtins/ulimit.def:452 +#: builtins/ulimit.def:453 #, c-format msgid "%s: cannot get limit: %s" msgstr "%s: impossível obter limite: %s" -#: builtins/ulimit.def:478 +#: builtins/ulimit.def:479 msgid "limit" msgstr "limite" -#: builtins/ulimit.def:490 builtins/ulimit.def:790 +#: builtins/ulimit.def:491 builtins/ulimit.def:791 #, c-format msgid "%s: cannot modify limit: %s" msgstr "%s: impossível modificar limite: %s" -#: builtins/umask.def:114 +#: builtins/umask.def:115 msgid "octal number" msgstr "número octal" -#: builtins/umask.def:231 +#: builtins/umask.def:232 #, c-format msgid "`%c': invalid symbolic mode operator" msgstr "`%c': operador de modo simbólico inválido" -#: builtins/umask.def:286 +#: builtins/umask.def:287 #, c-format msgid "`%c': invalid symbolic mode character" msgstr "`%c': caractere de modo simbólico inválido" -#: error.c:90 error.c:347 error.c:349 error.c:351 +#: error.c:90 error.c:348 error.c:350 error.c:352 msgid " line " msgstr " linha " @@ -929,97 +966,105 @@ msgstr "último comando: %s\n" msgid "Aborting..." msgstr "Abortando..." -#: error.c:287 +#. TRANSLATORS: this is a prefix for informational messages. +#: error.c:288 #, c-format msgid "INFORM: " msgstr "INFORM: " -#: error.c:462 +#: error.c:463 msgid "unknown command error" msgstr "erro de comando desconhecido" -#: error.c:463 +#: error.c:464 msgid "bad command type" msgstr "tipo de comando incorreto" -#: error.c:464 +#: error.c:465 msgid "bad connector" msgstr "conector incorreto" -#: error.c:465 +#: error.c:466 msgid "bad jump" msgstr "desvio incorreto" -#: error.c:503 +#: error.c:504 #, c-format msgid "%s: unbound variable" msgstr "%s: variável não associada" -#: eval.c:192 +#: eval.c:209 #, c-format msgid "\atimed out waiting for input: auto-logout\n" -msgstr "\atempo limite de espera excedido aguardando entrada: fim automático da sessão\n" +msgstr "" +"\atempo limite de espera excedido aguardando entrada: fim automático da " +"sessão\n" -#: execute_cmd.c:538 +#: execute_cmd.c:527 #, c-format msgid "cannot redirect standard input from /dev/null: %s" msgstr "impossível redirecionar a entrada padrão para /dev/null: %s" -#: execute_cmd.c:1284 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': caractere de formato inválido" -#: execute_cmd.c:2350 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "erro de `pipe'" -#: execute_cmd.c:4426 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: excedido o nível máximo de aninhamento de `eval' (%d)" -#: execute_cmd.c:4438 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: excedido o nível máximo de aninhamento de `function' (%d)" -#: execute_cmd.c:4547 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: excedido o nível máximo de aninhamento de avaliação (%d)" -#: execute_cmd.c:5068 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: restrição: não é permitido especificar `/' em nomes de comandos" -#: execute_cmd.c:5156 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: comando não encontrado" -#: execute_cmd.c:5391 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5428 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: interpretador incorreto" -#: execute_cmd.c:5465 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: impossível executar o arquivo binário: %s" -#: execute_cmd.c:5542 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s': é um comando interno especial" -#: execute_cmd.c:5594 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "impossível duplicar fd (descritor de arquivo) %d para fd %d" @@ -1064,193 +1109,199 @@ msgstr "esperava identificador após pré-acréscimo ou pré-decréscimo" msgid "missing `)'" msgstr "faltando `)'" -#: expr.c:1053 expr.c:1390 +#: expr.c:1053 expr.c:1393 msgid "syntax error: operand expected" msgstr "erro de sintaxe: esperava operando" -#: expr.c:1392 +#: expr.c:1395 msgid "syntax error: invalid arithmetic operator" msgstr "erro de sintaxe: operador aritmético inválido" -#: expr.c:1416 +#: expr.c:1419 #, c-format msgid "%s%s%s: %s (error token is \"%s\")" msgstr "%s%s%s: %s (token de erro é \"%s\")" -#: expr.c:1474 +#: expr.c:1477 msgid "invalid arithmetic base" msgstr "base aritmética inválida" -#: expr.c:1494 +#: expr.c:1497 msgid "value too great for base" msgstr "valor muito grande para esta base de numeração" -#: expr.c:1543 +#: expr.c:1546 #, c-format msgid "%s: expression error\n" msgstr "%s: erro de expressão\n" -#: general.c:67 +#: general.c:68 msgid "getcwd: cannot access parent directories" msgstr "getcwd: impossível acessar os diretórios pais (anteriores)" -#: input.c:102 subst.c:5558 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" -msgstr "impossível redefinir modo `nodelay' para o descritor de arquivo (fd) %d" +msgstr "" +"impossível redefinir modo `nodelay' para o descritor de arquivo (fd) %d" #: input.c:271 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "impossível alocar novo descritor de arquivo (fd) para a entrada do `bash' a partir do fd %d" +msgstr "" +"impossível alocar novo descritor de arquivo (fd) para a entrada do `bash' a " +"partir do fd %d" #: input.c:279 #, c-format msgid "save_bash_input: buffer already exists for new fd %d" -msgstr "save_bash_input: buffer já existe para o novo descritor de arquivo (fd) %d" +msgstr "" +"save_bash_input: buffer já existe para o novo descritor de arquivo (fd) %d" -#: jobs.c:509 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: `pipe' de pgrp" -#: jobs.c:944 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" -msgstr "identificador de processo (pid) %d bifurcado (fork) aparece no trabalho em execução %d" +msgstr "" +"identificador de processo (pid) %d bifurcado (fork) aparece no trabalho em " +"execução %d" -#: jobs.c:1063 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "excluindo trabalho parado %d com grupo de processo %ld" -#: jobs.c:1167 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: processo %5ld (%s) em the_pipeline" -#: jobs.c:1170 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: pid %5ld (%s) marcado como ainda vivo" -#: jobs.c:1499 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: o identificador do processo (pid) não existe" -#: jobs.c:1514 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Sinal %d" -#: jobs.c:1528 jobs.c:1554 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Concluído" -#: jobs.c:1533 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Parado" -#: jobs.c:1537 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Parado(%s)" -#: jobs.c:1541 +#: jobs.c:1628 msgid "Running" msgstr "Executando" -#: jobs.c:1558 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Concluído(%d)" -#: jobs.c:1560 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Fim da execução com status %d" -#: jobs.c:1563 +#: jobs.c:1650 msgid "Unknown status" msgstr "Status desconhecido" -#: jobs.c:1650 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(imagem do núcleo gravada)" -#: jobs.c:1669 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1893 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "`setpgid' filho (%ld para %ld)" -#: jobs.c:2242 nojobs.c:639 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: o pid %ld não é um processo filho deste shell" -#: jobs.c:2497 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Sem registro do processo %ld" -#: jobs.c:2815 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: trabalho %d está parado" -#: jobs.c:3107 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: o trabalho terminou" -#: jobs.c:3116 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: o trabalho %d já está em plano de fundo" -#: jobs.c:3341 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: ativando WNOHANG para evitar bloqueio indefinido" -#: jobs.c:3855 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s, linha %d: " -#: jobs.c:3869 nojobs.c:882 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (imagem do núcleo gravada)" -#: jobs.c:3881 jobs.c:3894 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd agora: %s)\n" -#: jobs.c:3926 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp falhou" -#: jobs.c:3989 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: disciplina da linha" -#: jobs.c:3999 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4020 jobs.c:4029 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "impossível definir grupo do processo do terminal (%d)" -#: jobs.c:4034 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "nenhum controle de trabalho neste shell" @@ -1376,131 +1427,139 @@ msgstr "Você tem mensagem nova de correio em $_" msgid "The mail in %s has been read\n" msgstr "As mensagens de correio em %s foram lidas\n" -#: make_cmd.c:326 +#: make_cmd.c:329 msgid "syntax error: arithmetic expression required" msgstr "erro de sintaxe: requer expressão aritmética" -#: make_cmd.c:328 +#: make_cmd.c:331 msgid "syntax error: `;' unexpected" msgstr "erro de sintaxe: `;' inesperado" -#: make_cmd.c:329 +#: make_cmd.c:332 #, c-format msgid "syntax error: `((%s))'" msgstr "erro de sintaxe: `((%s))'" -#: make_cmd.c:581 +#: make_cmd.c:584 #, c-format msgid "make_here_document: bad instruction type %d" msgstr "make_here_document: tipo da instrução incorreto %d" -#: make_cmd.c:665 +#: make_cmd.c:669 #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" -msgstr "here-document na linha %d delimitado pelo fim do arquivo (desejava `%s')" +msgstr "" +"here-document na linha %d delimitado pelo fim do arquivo (desejava `%s')" -#: make_cmd.c:763 +#: make_cmd.c:768 #, c-format msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: instrução de redirecionamento `%d' fora do limite" -#: parse.y:2685 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "excedido o número máximo de here-document" -#: parse.y:3370 parse.y:3653 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "encontrado EOF inesperado enquanto procurava por `%c' correspondente" -#: parse.y:4270 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "encontrado EOF inesperado enquanto procurava por `]]'" -#: parse.y:4275 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "erro de sintaxe na expressão condicional: token inesperado `%s'" -#: parse.y:4279 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "erro de sintaxe na expressão condicional" -#: parse.y:4357 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "token inesperado `%s', esperava`)'" -#: parse.y:4361 +#: parse.y:4501 msgid "expected `)'" msgstr "esperava `)'" -#: parse.y:4389 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "argumento inesperado `%s' para operador unário condicional" -#: parse.y:4393 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "argumento inesperado para operador unário condicional" -#: parse.y:4439 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "token inesperado `%s', esperava operador binário condicional" -#: parse.y:4443 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "esperava operador binário condicional" -#: parse.y:4465 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "argumento inesperado `%s' para operador binário condicional" -#: parse.y:4469 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "argumento inesperado para operador binário condicional" -#: parse.y:4480 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "token inesperado `%c' em comando condicional" -#: parse.y:4483 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "token inesperado `%s' em comando condicional" -#: parse.y:4487 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "token inesperado %d em comando condicional" -#: parse.y:5841 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "erro de sintaxe próximo ao token inesperado `%s'" -#: parse.y:5859 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "erro de sintaxe próximo a `%s'" -#: parse.y:5869 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "erro de sintaxe: fim prematuro do arquivo" -#: parse.y:5869 +#: parse.y:6023 msgid "syntax error" msgstr "erro de sintaxe" -#: parse.y:5931 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Use \"%s\" para sair do shell.\n" -#: parse.y:6093 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "encontrado EOF inesperado enquanto procurava por `)' correspondente" @@ -1509,6 +1568,11 @@ msgstr "encontrado EOF inesperado enquanto procurava por `)' correspondente" msgid "completion: function `%s' not found" msgstr "completion: função `%s' não encontrada" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + # COMPSPEC é variável no código fonte, manter sem tradução para português. #: pcomplib.c:182 #, c-format @@ -1576,44 +1640,48 @@ msgstr "sem suporte a /dev/(tcp|udp)/máquina/porta sem rede" msgid "redirection error: cannot duplicate fd" msgstr "erro de redirecionamento: impossível duplicar fd" -#: shell.c:342 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "impossível localizar /tmp, por favor crie!" -#: shell.c:346 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp deve ser um nome de diretório válido" -#: shell.c:902 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: opção inválida" -#: shell.c:1257 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "impossível definir uid para %d: uid efetivo %d" -#: shell.c:1264 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "impossível definir gid para %d: gid efetivo %d" -#: shell.c:1539 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: É um diretório" -#: shell.c:1744 +#: shell.c:1777 msgid "I have no name!" msgstr "Eu não tenho nome!" -#: shell.c:1895 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, versão %s-(%s)\n" -#: shell.c:1896 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1622,49 +1690,52 @@ msgstr "" "Utilização:\t%s [opção-longa-GNU] [opção] ...\n" "\t%s [opção-longa-GNU] [opção] arquivo-de-script ...\n" -#: shell.c:1898 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "opções-longas-GNU:\n" -#: shell.c:1902 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opções do shell:\n" -#: shell.c:1903 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD or -c comando ou -O opção-shopt\t\t(somente para chamada)\n" -#: shell.c:1918 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ou -o opção\n" -#: shell.c:1924 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "Digite `%s -c \"help set\"' para mais informações sobre as opções do shell.\n" +msgstr "" +"Digite `%s -c \"help set\"' para mais informações sobre as opções do shell.\n" -#: shell.c:1925 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "Digite `%s -c help' para mais informações sobre os comandos internos do shell.\n" +msgstr "" +"Digite `%s -c help' para mais informações sobre os comandos internos do " +"shell.\n" -#: shell.c:1926 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Uso o comando `bashbug' para relatar erros.\n" -#: shell.c:1928 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "página do bash: \n" -#: shell.c:1929 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "Ajuda geral sobre uso de software GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: operação inválida" @@ -1838,91 +1909,106 @@ msgstr "Sinal desconhecido #" msgid "Unknown Signal #%d" msgstr "Sinal desconhecido #%d" -#: subst.c:1401 subst.c:1559 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substituição incorreta: sem `%s' de fechamento em %s" -#: subst.c:2910 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: impossível atribuir uma lista a um membro de um array" -#: subst.c:5449 subst.c:5465 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "impossível criar `pipe' para a substituição do processo" -#: subst.c:5498 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "impossível criar um processo filho para a substituição do processo" -#: subst.c:5548 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "impossível abrir `pipe' %s para leitura" -#: subst.c:5550 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "impossível abrir `pipe' %s para escrita" -#: subst.c:5568 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "impossível duplicar `pipe' %s como descritor de arquivo (fd) %d" -#: subst.c:5775 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "substituição incorreta: sem \"`\" de fechamento em %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "impossível criar um `pipe' para substituição do comando" -#: subst.c:5814 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "impossível criar um processo filho para substituição do comando" -#: subst.c:5833 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" -msgstr "command_substitute: impossível duplicar o `pipe' como descritor de arquivo (fd) 1" +msgstr "" +"command_substitute: impossível duplicar o `pipe' como descritor de arquivo " +"(fd) 1" -#: subst.c:6343 subst.c:8032 subst.c:8052 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: nome de variável inválido para referência de nome" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: substituição incorreta" -#: subst.c:6455 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: expansão indireta inválida" -#: subst.c:6462 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: nome de variável inválido" -#: subst.c:6509 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parâmetro nulo ou não inicializado" -#: subst.c:6781 subst.c:6796 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expressão de substring < 0" -#: subst.c:8130 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: impossível atribuir desta maneira" -#: subst.c:8469 -msgid "future versions of the shell will force evaluation as an arithmetic substitution" -msgstr "versões futuras do shell vão forçar avaliação como um substituto aritmético" +#: subst.c:8697 +msgid "" +"future versions of the shell will force evaluation as an arithmetic " +"substitution" +msgstr "" +"versões futuras do shell vão forçar avaliação como um substituto aritmético" -#: subst.c:9009 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substituição incorreta: sem \"`\" de fechamento em %s" -#: subst.c:9947 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "sem correspondência: %s" @@ -1955,97 +2041,101 @@ msgstr "%s: esperava operador unário" msgid "%s: binary operator expected" msgstr "%s: esperava operador binário" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "faltando `]'" -#: trap.c:223 +#: trap.c:224 msgid "invalid signal number" msgstr "número de sinal inválido" -#: trap.c:385 +#: trap.c:386 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" msgstr "run_pending_traps: valor incorreto em trap_list[%d]: %p" -#: trap.c:389 +#: trap.c:390 #, c-format -msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "run_pending_traps: manipulador de sinal é SIG_DFL, enviando novamente %d (%s) para mim mesmo" +msgid "" +"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "" +"run_pending_traps: manipulador de sinal é SIG_DFL, enviando novamente %d (%" +"s) para mim mesmo" -#: trap.c:442 +#: trap.c:443 #, c-format msgid "trap_handler: bad signal %d" msgstr "trap_handler: sinal incorreto %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "erro ao importar a definição da função para `%s'" -#: variables.c:801 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "nível do shell (%d) muito grande, redefinindo para 1" -#: variables.c:1902 -#, c-format -msgid "%s: circular name reference" -msgstr "%s referência circular de nome" - -#: variables.c:2314 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: nenhum contexto de função no atual escopo" -#: variables.c:2333 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: a variável pode não ter um valor atribuído" -#: variables.c:3739 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: nome de variável inválido para referência de nome" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: nenhum contexto de função no escopo atual" -#: variables.c:4016 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s possui a string de exportação nula" # exportstr é uma variável no código fonte do bash (arquivo variiables.c) -#: variables.c:4021 variables.c:4030 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "caractere inválido na %d na exportstr para %s" # exportstr é uma variável no código fonte do bash (arquivo variiables.c) -#: variables.c:4036 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "Sem `=' na exportstr para %s" -#: variables.c:4471 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: cabeça de shell_variables não é um contexto de função" -#: variables.c:4484 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: nenhum contexto em no global_variables" -#: variables.c:4558 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "pop_scope: cabeça de shell_variables não é um escopo de ambiente temporário" +msgstr "" +"pop_scope: cabeça de shell_variables não é um escopo de ambiente temporário" -#: variables.c:5402 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: impossível abrir como ARQUIVO" -#: variables.c:5407 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: valor inválido para rastrear descritor de arquivo" -#: variables.c:5452 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: valor de compatibilidade fora dos limites" @@ -2055,8 +2145,12 @@ msgid "Copyright (C) 2015 Free Software Foundation, Inc." msgstr "Copyright (C) 2015 Free Software Foundation, Inc." #: version.c:47 version2.c:47 -msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "Licença GPLv3+: GNU GPL versão 3 ou posterior .\n" +msgid "" +"License GPLv3+: GNU GPL version 3 or later \n" +msgstr "" +"Licença GPLv3+: GNU GPL versão 3 ou posterior .\n" #: version.c:86 version2.c:86 #, c-format @@ -2095,324 +2189,347 @@ msgstr "%s: %s:%d: impossível alocar %lu bytes (%lu bytes alocados)" msgid "%s: %s:%d: cannot allocate %lu bytes" msgstr "%s: %s:%d: impossível alocar %lu bytes" -#: builtins.c:43 +#: builtins.c:45 msgid "alias [-p] [name[=value] ... ]" msgstr "alias [-p] [NOME[=VALOR] ... ]" -#: builtins.c:47 +#: builtins.c:49 msgid "unalias [-a] name [name ...]" msgstr "unalias [-a] NOME [NOME ...]" -#: builtins.c:51 -msgid "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpsvPSVX] [-m MAPA-TECLAS] [-f ARQUIVO] [-q NOME] [-u NOME] [-r SEQ-TECLAS] [-x SEQ-TECLAS:COMANDO-SHELL] [SEQ-TECLAS:FUNÇÃO-DE-LINHA ou COMANDO-DE-LINHA]" +#: builtins.c:53 +msgid "" +"bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" +"x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "" +"bind [-lpsvPSVX] [-m MAPA-TECLAS] [-f ARQUIVO] [-q NOME] [-u NOME] [-r SEQ-" +"TECLAS] [-x SEQ-TECLAS:COMANDO-SHELL] [SEQ-TECLAS:FUNÇÃO-DE-LINHA ou " +"COMANDO-DE-LINHA]" -#: builtins.c:54 +#: builtins.c:56 msgid "break [n]" msgstr "break [n]" -#: builtins.c:56 +#: builtins.c:58 msgid "continue [n]" msgstr "continue [n]" -#: builtins.c:58 +#: builtins.c:60 msgid "builtin [shell-builtin [arg ...]]" msgstr "builtin [COMANDO-INTERNO-SHELL [ARG ...]]" -#: builtins.c:61 +#: builtins.c:63 msgid "caller [expr]" msgstr "caller [EXPR]" -#: builtins.c:64 +#: builtins.c:66 msgid "cd [-L|[-P [-e]] [-@]] [dir]" msgstr "cd [-L|[-P [-e]] [-@]] [DIR]" -#: builtins.c:66 +#: builtins.c:68 msgid "pwd [-LP]" msgstr "pwd [-LP]" -#: builtins.c:68 -msgid ":" -msgstr ":" - -# Não traduzir "true", esta é uma opção "builtin" do "bash" que é exibida ao executar "help" e acessível com "help true". -#: builtins.c:70 -msgid "true" -msgstr "true" - -# Não traduzir "false", esta é uma opção "builtin" do "bash" que é exibida ao executar "help" e acessível com "help false". -#: builtins.c:72 -msgid "false" -msgstr "false" - -#: builtins.c:74 +#: builtins.c:76 msgid "command [-pVv] command [arg ...]" msgstr "command [-pVv] COMANDO [ARG ...]" -#: builtins.c:76 +#: builtins.c:78 msgid "declare [-aAfFgilnrtux] [-p] [name[=value] ...]" msgstr "declare [-aAfFgilnrtux] [-p] [NOME[=VALOR] ...]" -#: builtins.c:78 +#: builtins.c:80 msgid "typeset [-aAfFgilnrtux] [-p] name[=value] ..." msgstr "typeset [-aAfFgilnrtux] [-p] NOME[=VALOR] ..." -#: builtins.c:80 +#: builtins.c:82 msgid "local [option] name[=value] ..." msgstr "local [OPÇÃO] NOME[=VALOR] ..." -#: builtins.c:83 +#: builtins.c:85 msgid "echo [-neE] [arg ...]" msgstr "echo [-neE] [ARG ...]" -#: builtins.c:87 +#: builtins.c:89 msgid "echo [-n] [arg ...]" msgstr "echo [-n] [ARG ...]" -#: builtins.c:90 +#: builtins.c:92 msgid "enable [-a] [-dnps] [-f filename] [name ...]" msgstr "enable [-a] [-DnPs] [-f ARQUIVO] [NOME ...]" -#: builtins.c:92 +#: builtins.c:94 msgid "eval [arg ...]" msgstr "eval [ARG ...]" -#: builtins.c:94 +#: builtins.c:96 msgid "getopts optstring name [arg]" msgstr "getopts OPTSTRING NOME [ARG]" -#: builtins.c:96 +#: builtins.c:98 msgid "exec [-cl] [-a name] [command [arguments ...]] [redirection ...]" msgstr "exec [-cl] [-a NOME] [COMANDO [ARGUMENTOS ...]] [REDIRECIONAMENTO ...]" -#: builtins.c:98 +#: builtins.c:100 msgid "exit [n]" msgstr "exit [n]" -#: builtins.c:100 +#: builtins.c:102 msgid "logout [n]" msgstr "logout [n]" -#: builtins.c:103 +#: builtins.c:105 msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e EDITOR] [-lnr] [PRIMEIRO] [ÚLTIMO] ou fc -s [ANTIGO=NOVO] [COMANDO]" +msgstr "" +"fc [-e EDITOR] [-lnr] [PRIMEIRO] [ÚLTIMO] ou fc -s [ANTIGO=NOVO] [COMANDO]" -#: builtins.c:107 +#: builtins.c:109 msgid "fg [job_spec]" msgstr "fg [ESPEC-JOB]" -#: builtins.c:111 +#: builtins.c:113 msgid "bg [job_spec ...]" msgstr "bg [ESPEC-JOB ...]" -#: builtins.c:114 +#: builtins.c:116 msgid "hash [-lr] [-p pathname] [-dt] [name ...]" msgstr "hash [-lr] [-p CAMINHO] [-dt] [NOME ...]" -#: builtins.c:117 +#: builtins.c:119 msgid "help [-dms] [pattern ...]" msgstr "help [-dms] [PADRÃO ...]" -#: builtins.c:121 -msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [-d POSIÇÃO] [n] ou history -anrw [ARQUIVO] ou history -ps ARG [ARG...]" +#: builtins.c:123 +msgid "" +"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " +"[arg...]" +msgstr "" +"history [-c] [-d POSIÇÃO] [n] ou history -anrw [ARQUIVO] ou history -ps ARG " +"[ARG...]" -#: builtins.c:125 +#: builtins.c:127 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" msgstr "jobs [-lnprs] [ESPEC-JOB ...] ou jobs -x COMANDO [ARGS]" -#: builtins.c:129 -msgid "disown [-h] [-ar] [jobspec ...]" +#: builtins.c:131 +#, fuzzy +msgid "disown [-h] [-ar] [jobspec ... | pid ...]" msgstr "disown [-h] [-ar] [ESPEC-JOB ...]" -#: builtins.c:132 -msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s SIGSPEC | -n SIGNUM | -SIGSPEC] PID | ESPEC-JOB ... ou kill -l [SIGSPEC]" - #: builtins.c:134 +msgid "" +"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " +"[sigspec]" +msgstr "" +"kill [-s SIGSPEC | -n SIGNUM | -SIGSPEC] PID | ESPEC-JOB ... ou kill -l " +"[SIGSPEC]" + +#: builtins.c:136 msgid "let arg [arg ...]" msgstr "let ARG [ARG ...]" -#: builtins.c:136 -msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "read [-ers] [-a ARRAY] [-d DELIM] [-i TEXTO] [-n NCHARS] [-N NCHARS] [-p CONFIRMAR ] [-t TEMPO] [-u FD] [NOME ...]" - #: builtins.c:138 +msgid "" +"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p " +"prompt] [-t timeout] [-u fd] [name ...]" +msgstr "" +"read [-ers] [-a ARRAY] [-d DELIM] [-i TEXTO] [-n NCHARS] [-N NCHARS] [-p " +"CONFIRMAR ] [-t TEMPO] [-u FD] [NOME ...]" + +#: builtins.c:140 msgid "return [n]" msgstr "return [n]" -#: builtins.c:140 +#: builtins.c:142 msgid "set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]" msgstr "set [--abefhkmnptuvxBCHP] [-o NOME-OPÇÃO] [--] [ARG ...]" -#: builtins.c:142 +#: builtins.c:144 msgid "unset [-f] [-v] [-n] [name ...]" msgstr "unset [-f] [-v] [-n] [NOME ...]" -#: builtins.c:144 +#: builtins.c:146 msgid "export [-fn] [name[=value] ...] or export -p" msgstr "export [-fn] [NOME[=VALOR] ...] ou export -p" -#: builtins.c:146 +#: builtins.c:148 msgid "readonly [-aAf] [name[=value] ...] or readonly -p" msgstr "readonly [-aAf] [NOME[=VALOR] ...] ou readonly -p" -#: builtins.c:148 +#: builtins.c:150 msgid "shift [n]" msgstr "shift [n]" -#: builtins.c:150 +#: builtins.c:152 msgid "source filename [arguments]" msgstr "source ARQUIVO [ARGUMENTOS]" -#: builtins.c:152 +#: builtins.c:154 msgid ". filename [arguments]" msgstr ". ARQUIVO [ARGUMENTOS]" -#: builtins.c:155 +#: builtins.c:157 msgid "suspend [-f]" msgstr "suspend [-f]" -#: builtins.c:158 +#: builtins.c:160 msgid "test [expr]" msgstr "test [EXPR]" -#: builtins.c:160 +#: builtins.c:162 msgid "[ arg... ]" msgstr "[ ARG... ]" -# não traduzir, este é um comando -#: builtins.c:162 -msgid "times" -msgstr "times" - -#: builtins.c:164 +#: builtins.c:166 msgid "trap [-lp] [[arg] signal_spec ...]" msgstr "trap [-lp] [[ARG] ESPEC-SINAL ...]" -#: builtins.c:166 +#: builtins.c:168 msgid "type [-afptP] name [name ...]" msgstr "type [-apt] NOME [NOME ...]" -#: builtins.c:169 +#: builtins.c:171 msgid "ulimit [-SHabcdefiklmnpqrstuvxPT] [limit]" msgstr "ulimit [-SHabcdefiklmnpqrstuvxPT] [LIMITE]" -#: builtins.c:172 +#: builtins.c:174 msgid "umask [-p] [-S] [mode]" msgstr "umask [-p] [-S] [MODO]" -#: builtins.c:175 +#: builtins.c:177 msgid "wait [-n] [id ...]" msgstr "wait [-n] [ID ...]" -#: builtins.c:179 +#: builtins.c:181 msgid "wait [pid ...]" msgstr "wait [PID ...]" -#: builtins.c:182 +#: builtins.c:184 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" msgstr "for NOME [in PALAVRAS ...] ; do COMANDOS; done" -#: builtins.c:184 +#: builtins.c:186 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" msgstr "for (( EXP1; EXP2; EXP3 )); do COMANDOS; done" -#: builtins.c:186 +#: builtins.c:188 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" msgstr "select NOME [in PALAVRAS ... ;] do COMANDOS; done" -#: builtins.c:188 +#: builtins.c:190 msgid "time [-p] pipeline" msgstr "time [-p] LINHA-COMANDOS" -#: builtins.c:190 +#: builtins.c:192 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" msgstr "case PALAVRA in [PADRÃO [| PADRÃO]...) COMANDOS ;;]... esac" -#: builtins.c:192 -msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" -msgstr "if COMANDOS; then COMANDOS; [ elif COMANDOS; then COMANDOS; ]... [ else COMANDOS; ] fi" - #: builtins.c:194 +msgid "" +"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " +"COMMANDS; ] fi" +msgstr "" +"if COMANDOS; then COMANDOS; [ elif COMANDOS; then COMANDOS; ]... [ else " +"COMANDOS; ] fi" + +#: builtins.c:196 msgid "while COMMANDS; do COMMANDS; done" msgstr "while COMANDOS; do COMANDOS; done" -#: builtins.c:196 +#: builtins.c:198 msgid "until COMMANDS; do COMMANDS; done" msgstr "until COMANDOS; do COMANDOS; done" -#: builtins.c:198 +#: builtins.c:200 msgid "coproc [NAME] command [redirections]" msgstr "coproc [NOME] COMANDO [REDIRECIONAMENTOS]" -#: builtins.c:200 +#: builtins.c:202 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" msgstr "function NOME { COMANDOS ; } ou NOME () { COMANDOS ; }" -#: builtins.c:202 +#: builtins.c:204 msgid "{ COMMANDS ; }" msgstr "{ COMANDOS ; }" -#: builtins.c:204 +#: builtins.c:206 msgid "job_spec [&]" msgstr "ESPEC-JOB [&]" -#: builtins.c:206 +#: builtins.c:208 msgid "(( expression ))" msgstr "(( EXPRESSÃO ))" -#: builtins.c:208 +#: builtins.c:210 msgid "[[ expression ]]" msgstr "[[ EXPRESSÃO ]]" # Não traduzir "variables", esta é uma opção "builtin" do "bash" que é exibida ao executar "help" e acessível com "help variables". -#: builtins.c:210 +#: builtins.c:212 msgid "variables - Names and meanings of some shell variables" msgstr "variables - Nomes e significados de algumas variáveis do shell" -#: builtins.c:213 +#: builtins.c:215 msgid "pushd [-n] [+N | -N | dir]" msgstr "pushd [-n] [+N | -N | DIR]" -#: builtins.c:217 +#: builtins.c:219 msgid "popd [-n] [+N | -N]" msgstr "popd [-n] [+N | -N]" -#: builtins.c:221 +#: builtins.c:223 msgid "dirs [-clpv] [+N] [-N]" msgstr "dirs [-clpv] [+N] [-N]" -#: builtins.c:224 +#: builtins.c:226 msgid "shopt [-pqsu] [-o] [optname ...]" msgstr "shopt [-pqsu] [-o] [NOME-OPÇÃO ...]" -#: builtins.c:226 +#: builtins.c:228 msgid "printf [-v var] format [arguments]" msgstr "printf [-v VAR] FORMATO [ARGUMENTOS]" -#: builtins.c:229 -msgid "complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "complete [-abcdefgjksuv] [-pr] [-DE] [-o OPÇÃO] [-A AÇÃO] [-G GLOBAL] [-W LISTA-PALAVRAS] [-F FUNÇÃO] [-C COMANDO] [-X FILTRO] [-P PREFIXO] [-S SUFIXO] [NOME ...]" +#: builtins.c:231 +msgid "" +"complete [-abcdefgjksuv] [-pr] [-DE] [-o option] [-A action] [-G globpat] [-" +"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " +"suffix] [name ...]" +msgstr "" +"complete [-abcdefgjksuv] [-pr] [-DE] [-o OPÇÃO] [-A AÇÃO] [-G GLOBAL] [-W " +"LISTA-PALAVRAS] [-F FUNÇÃO] [-C COMANDO] [-X FILTRO] [-P PREFIXO] [-S " +"SUFIXO] [NOME ...]" -#: builtins.c:233 -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 OPÇÃO] [-A AÇÃO] [-G GLOBAL] [-W LISTA-PALAVRAS] [-F FUNÇÃO] [-C COMANDO] [-X FILTRO] [-P PREFIXO] [-S SUFIXO] [PALAVRA]" +#: builtins.c:235 +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 OPÇÃO] [-A AÇÃO] [-G GLOBAL] [-W LISTA-" +"PALAVRAS] [-F FUNÇÃO] [-C COMANDO] [-X FILTRO] [-P PREFIXO] [-S SUFIXO] " +"[PALAVRA]" -#: builtins.c:237 +#: builtins.c:239 msgid "compopt [-o|+o option] [-DE] [name ...]" msgstr "compopt [-o|+o OPÇÃO] [-DE] [NOME ...]" -#: builtins.c:240 -msgid "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "mapfile [-d DELIM] [-n NÚMERO] [-O ORIGEM] [-s NÚMERO] [-t] [-u FD] [-C CHAMADA] [-c QUANTIDADE] [ARRAY]" - #: builtins.c:242 -msgid "readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "readarray [-n NÚMERO] [-O ORIGEM] [-s NÚMERO] [-t] [-u FD] [-C CHAMADA] [-c QUANTIDADE] [ARRAY]" +msgid "" +"mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " +"callback] [-c quantum] [array]" +msgstr "" +"mapfile [-d DELIM] [-n NÚMERO] [-O ORIGEM] [-s NÚMERO] [-t] [-u FD] [-C " +"CHAMADA] [-c QUANTIDADE] [ARRAY]" + +#: builtins.c:244 +msgid "" +"readarray [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c " +"quantum] [array]" +msgstr "" +"readarray [-n NÚMERO] [-O ORIGEM] [-s NÚMERO] [-t] [-u FD] [-C CHAMADA] [-c " +"QUANTIDADE] [ARRAY]" # help alias -#: builtins.c:254 +#: builtins.c:256 msgid "" "Define or display aliases.\n" " \n" @@ -2427,7 +2544,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 "" "Define ou exibe apelidos (aliases).\n" @@ -2447,7 +2565,7 @@ msgstr "" " o qual não se tenha definido um apelido" # help unalias -#: builtins.c:276 +#: builtins.c:278 msgid "" "Remove each NAME from the list of defined aliases.\n" " \n" @@ -2464,7 +2582,7 @@ msgstr "" " Retorna sucesso, a menos que NOME não seja um apelido existente." # help bind -#: builtins.c:289 +#: builtins.c:291 msgid "" "Set Readline key bindings and variables.\n" " \n" @@ -2476,25 +2594,30 @@ 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" " \t\t\t\tKEYSEQ is entered.\n" -" -X List key sequences bound with -x and associated commands\n" +" -X List key sequences bound with -x and associated " +"commands\n" " in a form that can be reused as input.\n" " \n" " Exit Status:\n" @@ -2514,24 +2637,33 @@ msgstr "" " vi, vi-move, vi-command e vi-insert.\n" " -l Lista nomes de funções.\n" " -P Lista nomes e associações de função.\n" -" -p Lista funções e associações em uma forma que pode ser\n" +" -p Lista funções e associações em uma forma que pode " +"ser\n" " usada como entrada.\n" -" -S Lista sequências de teclas que chamam macros e seus\n" +" -S Lista sequências de teclas que chamam macros e " +"seus\n" " valores\n" -" -s Lista sequências de teclas que chamam macros e seus\n" -" valores em uma forma que pode ser usada como entrada.\n" +" -s Lista sequências de teclas que chamam macros e " +"seus\n" +" valores em uma forma que pode ser usada como " +"entrada.\n" " -V Lista nomes e valores de variáveis\n" -" -v Lista nomes e valores de variáveis em uma forma que\n" +" -v Lista nomes e valores de variáveis em uma forma " +"que\n" " pode ser usada como entrada.\n" -" -q NOME Consulta sobre quais teclas chamam a função informada.\n" -" -u NOME Desassocia todas teclas que estão associadas à função\n" +" -q NOME Consulta sobre quais teclas chamam a função " +"informada.\n" +" -u NOME Desassocia todas teclas que estão associadas à " +"função\n" " informada.\n" " -r SEQ-TECLAS Remove a associação para SEQ-TECLAS.\n" " -f ARQUIVO Lê associações de tecla de ARQUIVO.\n" " -x SEQ-TECLAS:COMANDO-SHELL\n" -" Faz com que COMANDO-SHELL seja executado ao inserir\n" +" Faz com que COMANDO-SHELL seja executado ao " +"inserir\n" " SEQ-TECLAS.\n" -" -X Lista sequência de teclas associadas com -x e comandos\n" +" -X Lista sequência de teclas associadas com -x e " +"comandos\n" " associados em uma forma que pode ser usada como\n" " entrada.\n" " \n" @@ -2540,7 +2672,7 @@ msgstr "" " um erro ocorrer." # help break -#: builtins.c:328 +#: builtins.c:330 msgid "" "Exit for, while, or until loops.\n" " \n" @@ -2559,7 +2691,7 @@ msgstr "" " O status de saída é 0, a menos que N não seja maior ou igual a 1." # help continue -#: builtins.c:340 +#: builtins.c:342 msgid "" "Resume for, while, or until loops.\n" " \n" @@ -2579,13 +2711,14 @@ msgstr "" " O status de saída é 0, a menos que N não seja maior ou igual a 1." # help builtin -#: builtins.c:352 +#: builtins.c:354 msgid "" "Execute shell builtins.\n" " \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" @@ -2603,7 +2736,7 @@ msgstr "" " COMANDO-INTERNO-SHELL não for de fato um comando interno de shell." # help caller -#: builtins.c:367 +#: builtins.c:369 msgid "" "Return the context of the current subroutine call.\n" " \n" @@ -2621,7 +2754,8 @@ msgstr "" "Retorna o contexto da chamada de sub-rotina atual.\n" " \n" " Sem EXPR, retorna \"$linha $arquivo\". Com EXPR, retorna\n" -" \"$linha $sub-rotina $arquivo\"; essa informação extra pode ser usada para\n" +" \"$linha $sub-rotina $arquivo\"; essa informação extra pode ser usada " +"para\n" " fornecer um rastro da pilha.\n" " \n" " O valor de EXPR indica quantos quadros de chamada deve voltar antes do\n" @@ -2632,20 +2766,26 @@ msgstr "" " shell ou EXPR seja inválida." # help cd -#: builtins.c:385 +#: builtins.c:387 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" @@ -2661,11 +2801,13 @@ msgid "" " \t\tattributes as a directory containing the file attributes\n" " \n" " The default is to follow symbolic links, as if `-L' were specified.\n" -" `..' is processed by removing the immediately previous pathname component\n" +" `..' is processed by removing the immediately previous pathname " +"component\n" " back to a slash or the beginning of DIR.\n" " \n" " Exit Status:\n" -" Returns 0 if the directory is changed, and if $PWD is set successfully when\n" +" Returns 0 if the directory is changed, and if $PWD is set successfully " +"when\n" " -P is used; non-zero otherwise." msgstr "" "Altera o diretório de trabalho do shell.\n" @@ -2673,17 +2815,20 @@ msgstr "" " Altera o diretório atual para DIR, sendo o padrão de DIR o mesmo valor\n" " da variável HOME.\n" " \n" -" A variável CDPATH define o caminho de pesquisa para o diretório contendo\n" +" A variável CDPATH define o caminho de pesquisa para o diretório " +"contendo\n" " DIR. Nomes de diretórios alternativos em CDPATH são separados por\n" " dois-pontos (:). Um nome de diretório nulo é o mesmo que o diretório\n" " atual. Se DIR inicia com uma barra (/), então CDPATH não é usada.\n" " \n" -" Se o diretório não for encontrado e a opção `cdable_vars` estiver definida\n" +" Se o diretório não for encontrado e a opção `cdable_vars` estiver " +"definida\n" " no shell, a palavra é presumida como sendo o nome de uma variável. Se\n" " tal variável possuir um valor, este valor é usado para DIR.\n" " \n" " Opções:\n" -" -L\tforça links simbólicos a serem seguidos: resolver links simbólicos\n" +" -L\tforça links simbólicos a serem seguidos: resolver links " +"simbólicos\n" " \t\tem DIR após processar instâncias de `..'\n" " -P\tusa a estrutura do diretório físico sem seguir links\n" " \t\tsimbólicos: resolve links simbólicos em DIR antes de processar\n" @@ -2694,16 +2839,19 @@ msgstr "" " \t\tatributos estendidos como um diretório contendo os atributos de\n" " \t\tarquivo\n" " \n" -" O padrão é seguir links simbólicos, como se `-L' tivesse sido especificada.\n" -" `..' é processada removendo o componente de caminho imediatamente anterior\n" +" O padrão é seguir links simbólicos, como se `-L' tivesse sido " +"especificada.\n" +" `..' é processada removendo o componente de caminho imediatamente " +"anterior\n" " de volta para uma barra ou para o início de DIR.\n" " \n" " Status de saída:\n" -" Retorna 0, se o diretório tiver sido alterado e se $PWD está definida com\n" +" Retorna 0, se o diretório tiver sido alterado e se $PWD está definida " +"com\n" " sucesso quando a opção -P for usada; do contrário, retorna não-zero." # help pwd -#: builtins.c:423 +#: builtins.c:425 msgid "" "Print the name of the current working directory.\n" " \n" @@ -2732,7 +2880,7 @@ msgstr "" " atual não possa ser lido." # help : -#: builtins.c:440 +#: builtins.c:442 msgid "" "Null command.\n" " \n" @@ -2749,7 +2897,7 @@ msgstr "" " Sempre com sucesso." # help true -#: builtins.c:451 +#: builtins.c:453 msgid "" "Return a successful result.\n" " \n" @@ -2762,7 +2910,7 @@ msgstr "" " Sempre sucesso." # help false -#: builtins.c:460 +#: builtins.c:462 msgid "" "Return an unsuccessful result.\n" " \n" @@ -2775,12 +2923,13 @@ msgstr "" " Sempre falha." # help command -#: builtins.c:469 +#: builtins.c:471 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" @@ -2809,7 +2958,7 @@ msgstr "" " encontrado." # help declare -#: builtins.c:488 +#: builtins.c:490 msgid "" "Set variable values and attributes.\n" " \n" @@ -2840,7 +2989,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. The `-g' option suppresses this behavior.\n" " \n" " Exit Status:\n" @@ -2849,7 +2999,8 @@ msgid "" msgstr "" "Define valores e atributos de variável.\n" " \n" -" Declara variáveis e a elas fornece atributos. Se nenhum NOME for fornecido,\n" +" Declara variáveis e a elas fornece atributos. Se nenhum NOME for " +"fornecido,\n" " exibe os atributos e valores de todas as variáveis.\n" " \n" " Opções:\n" @@ -2884,18 +3035,19 @@ msgstr "" " ocorrer um erro de atribuição de variável." # help typeset -#: builtins.c:528 +#: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Define valores e atributos de variável.\n" " \n" " Obsoleto. Veja `help declare'." # help local -#: builtins.c:536 +#: builtins.c:538 msgid "" "Define local variables.\n" " \n" @@ -2914,7 +3066,8 @@ msgstr "" " Cria uma variável local chamada NOME e lhe dá VALOR. OPÇÃO pode ser\n" " qualquer opção aceita pelo `declare'.\n" " \n" -" Variáveis locais podem ser usadas apenas em uma função; elas são visíveis\n" +" Variáveis locais podem ser usadas apenas em uma função; elas são " +"visíveis\n" " apenas para a função na qual elas foram definidas, bem como para seus\n" " filhos.\n" " \n" @@ -2924,11 +3077,12 @@ msgstr "" " uma função." # help echo -#: builtins.c:553 +#: builtins.c:555 msgid "" "Write arguments to the standard output.\n" " \n" -" Display the ARGs, separated by a single space character and followed by a\n" +" Display the ARGs, separated by a single space character and followed by " +"a\n" " newline, on the standard output.\n" " \n" " Options:\n" @@ -2987,7 +3141,7 @@ msgstr "" " Retorna sucesso, a menos que ocorra um erro de escrita." # help echo -#: builtins.c:589 +#: builtins.c:591 msgid "" "Write arguments to the standard output.\n" " \n" @@ -3010,7 +3164,7 @@ msgstr "" " Retorna sucesso, a menos que ocorra um erro de escrita." # help enable -#: builtins.c:604 +#: builtins.c:606 msgid "" "Enable and disable shell builtins.\n" " \n" @@ -3064,11 +3218,12 @@ msgstr "" " ou ocorrer um erro." # help eval -#: builtins.c:632 +#: builtins.c:634 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" @@ -3083,7 +3238,7 @@ msgstr "" " Retorna status de saída do comando ou sucesso, se o comando for nulo." # help getopts -#: builtins.c:644 +#: builtins.c:646 msgid "" "Parse option arguments.\n" " \n" @@ -3149,7 +3304,8 @@ msgstr "" " caractere de opção encontrada. Se getopts não estiver no modo\n" " silencioso, uma opção inválida é vista, getopts coloca um '?' em\n" " NOME e remove definição de OPTARG. Se um argumento obrigatório não for\n" -" encontrado, um '?' é colocado em NOME, OPTARG tem sua definição removida\n" +" encontrado, um '?' é colocado em NOME, OPTARG tem sua definição " +"removida\n" " e uma mensagem de diagnóstico é mostrada.\n" " \n" " Se a variável shell OPTERR possuir o valor 0, getopts desabilita a\n" @@ -3164,12 +3320,13 @@ msgstr "" " for encontrado ou ocorrer um erro." # help exec -#: builtins.c:686 +#: builtins.c:688 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" @@ -3177,11 +3334,13 @@ msgid "" " -c\texecute COMMAND with an empty environment\n" " -l\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 "" "Substitui o shell com o comando fornecido.\n" " \n" @@ -3203,7 +3362,7 @@ msgstr "" " erro no redirecionamento." # help exit -#: builtins.c:707 +#: builtins.c:709 msgid "" "Exit the shell.\n" " \n" @@ -3216,11 +3375,12 @@ msgstr "" " de saída é o mesmo do último comando executado." # help exit -#: builtins.c:716 +#: builtins.c:718 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 "" "Sai de um shell de login.\n" @@ -3229,17 +3389,19 @@ msgstr "" " se não for executada em um shell de login." # help fc -#: builtins.c:726 +#: builtins.c:728 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" @@ -3253,12 +3415,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 "" "Exibe ou executa comandos da lista do histórico.\n" " \n" " fc é usado para listar ou editar e re-executar comandos da lista de\n" -" histórico. PRIMEIRO e ÚLTIMO podem ser números especificando o intervalo\n" +" histórico. PRIMEIRO e ÚLTIMO podem ser números especificando o " +"intervalo\n" " ou PRIMEIRO pode ser uma string, o que significa o comando mais recente\n" " iniciando com aquela string.\n" " \n" @@ -3281,7 +3445,7 @@ msgstr "" " retorna não-zero." # help fg -#: builtins.c:756 +#: builtins.c:758 msgid "" "Move job to the foreground.\n" " \n" @@ -3299,15 +3463,18 @@ msgstr "" " a noção do shell de trabalho atual é usada.\n" " \n" " Status de saída:\n" -" Status do comando colocado em primeiro plano ou falha, se ocorrer um erro." +" Status do comando colocado em primeiro plano ou falha, se ocorrer um " +"erro." # help bg -#: builtins.c:771 +#: builtins.c:773 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" @@ -3324,12 +3491,13 @@ msgstr "" " habilitado ou ocorra um erro." # help hash -#: builtins.c:785 +#: builtins.c:787 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\tforget the remembered location of each NAME\n" @@ -3348,7 +3516,8 @@ msgid "" msgstr "" "Memoriza ou exibe localizações de programas.\n" " \n" -" Determina e memoriza do caminho completo de cada comando NOME. Se nenhum\n" +" Determina e memoriza do caminho completo de cada comando NOME. Se " +"nenhum\n" " argumento for fornecido, exibe informação sobre comandos memorizados.\n" " \n" " Opções:\n" @@ -3368,7 +3537,7 @@ msgstr "" " inválida seja fornecida." # help help -#: builtins.c:810 +#: builtins.c:812 msgid "" "Display information about builtin commands.\n" " \n" @@ -3386,7 +3555,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 "" "Exibe informação sobre comandos internos (builtin).\n" " \n" @@ -3408,7 +3578,8 @@ msgstr "" " inválida seja fornecida." # help history -#: builtins.c:834 +#: builtins.c:836 +#, fuzzy msgid "" "Display or manipulate the history list.\n" " \n" @@ -3417,14 +3588,14 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" +" \t\tand append them to the history list\n" " -r\tread the history file and append the contents to the history\n" " \t\tlist\n" " -w\twrite the current history to the history file\n" -" \t\tand append them to the history list\n" " \n" " -p\tperform history expansion on each ARG and display the result\n" " \t\twithout storing it in the history list\n" @@ -3435,7 +3606,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." @@ -3474,7 +3646,7 @@ msgstr "" " ocorra um erro." # help jobs -#: builtins.c:870 +#: builtins.c:872 msgid "" "Display status of jobs.\n" " \n" @@ -3520,7 +3692,7 @@ msgstr "" " ocorra um erro. Se -x for usado, retorna o status de saída do COMANDO." # help disown -#: builtins.c:897 +#: builtins.c:899 msgid "" "Remove jobs from current shell.\n" " \n" @@ -3552,7 +3724,8 @@ msgstr "" " sejam fornecidos." # help kill -#: builtins.c:916 +#: builtins.c:918 +#, fuzzy msgid "" "Send a signal to a job.\n" " \n" @@ -3565,6 +3738,7 @@ msgid "" " -n sig\tSIG is a signal number\n" " -l\tlist the signal names; if arguments follow `-l' they are\n" " \t\tassumed to be signal numbers for which names should be listed\n" +" -L\tsynonym for -l\n" " \n" " Kill is a shell builtin for two reasons: it allows job IDs to be used\n" " instead of process IDs, and allows processes to be killed if the limit\n" @@ -3596,14 +3770,15 @@ msgstr "" " ocorra um erro." # help let -#: builtins.c:939 +#: builtins.c:942 msgid "" "Evaluate arithmetic expressions.\n" " \n" " 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" @@ -3681,18 +3856,21 @@ msgstr "" " let retorna 0." # help read -#: builtins.c:984 +#: builtins.c:987 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" @@ -3704,7 +3882,8 @@ msgid "" " -n nchars\treturn after reading NCHARS characters rather than waiting\n" " \t\tfor a newline, but honor a delimiter if fewer than\n" " \t\tNCHARS characters are read before the delimiter\n" -" -N nchars\treturn only after reading exactly NCHARS characters, unless\n" +" -N nchars\treturn only after reading exactly NCHARS characters, " +"unless\n" " \t\tEOF is encountered or read times out, ignoring any\n" " \t\tdelimiter\n" " -p prompt\toutput the string PROMPT without a trailing newline before\n" @@ -3722,15 +3901,19 @@ msgid "" " -u fd\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" -" (in which case it's greater than 128), a variable assignment error occurs,\n" +" The return code is zero, unless end-of-file is encountered, read times " +"out\n" +" (in which case it's greater than 128), a variable assignment error " +"occurs,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" "Lê uma linha da entrada padrão e separa em campos.\n" "\n" " Lê uma linha da entrada padrão ou do descritor de arquivo FD, caso a\n" -" opção -u seja fornecida. A linha é separada em campos, na mesma forma de\n" -" separação de palavras, e a primeira palavra é atribuída ao primeiro NOME,\n" +" opção -u seja fornecida. A linha é separada em campos, na mesma forma " +"de\n" +" separação de palavras, e a primeira palavra é atribuída ao primeiro " +"NOME,\n" " o segundo ao segundo NOME e por aí vai, com qualquer palavras restantes\n" " atribuídas para o último NOME. Apenas os caracteres encontrados em $IFS\n" " são reconhecidos como delimitadores de palavras.\n" @@ -3746,11 +3929,13 @@ msgstr "" " -e usa Readline para obter a linha em um shell interativo\n" " -i TEXTO usa TEXTO como o texto inicial para Readline\n" " -n NCHARS retorna após ler NCHARS caracteres, ao invés de esperar\n" -" por uma nova linha, mas respeita um delimitador se número\n" +" por uma nova linha, mas respeita um delimitador se " +"número\n" " de caracteres menor que NCHARS sejam lidos antes do\n" " delimitador\n" " -N NCHARS retorna apenas após ler exatamente NCHARS caracteres, a\n" -" menos que EOF (fim do arquivo) seja encontrado ou `read'\n" +" menos que EOF (fim do arquivo) seja encontrado ou " +"`read'\n" " esgote o tempo limite, ignorando qualquer delimitador\n" " -p CONFIRMAR mostra a string PROMPT sem remover nova linha antes de\n" " tentar ler\n" @@ -3759,21 +3944,26 @@ msgstr "" " -s não ecoa entrada vindo de um terminal\n" " -t TEMPO esgota-se o tempo limite e retorna falha, caso uma toda\n" " uma linha não seja lida em TEMPO segundos. O valor da\n" -" variável TMOUT é o tempo limite padrão. TEMPO pode ser um\n" -" número fracionado. SE TEMPO for 0, `read' retorna sucesso\n" +" variável TMOUT é o tempo limite padrão. TEMPO pode ser " +"um\n" +" número fracionado. SE TEMPO for 0, `read' retorna " +"sucesso\n" " apenas se a entrada estiver disponível no descritor de\n" -" arquivo especificado. O status de saída é maior que 128,\n" +" arquivo especificado. O status de saída é maior que " +"128,\n" " se o tempo limite for excedido\n" -" -u FD lê do descritor de arquivo FD, ao invés da entrada padrão\n" +" -u FD lê do descritor de arquivo FD, ao invés da entrada " +"padrão\n" " \n" " Status de saída:\n" " O código de retorno é zero, a menos que o EOF (fim do arquivo) seja\n" -" encontrado, `read' esgote o tempo limite (caso em que o código de retorno\n" +" encontrado, `read' esgote o tempo limite (caso em que o código de " +"retorno\n" " será 128), ocorra erro de atribuição de uma variável ou um descritor de\n" " arquivo inválido seja fornecido como argumento para -u." # help return -#: builtins.c:1031 +#: builtins.c:1034 msgid "" "Return from a shell function.\n" " \n" @@ -3795,7 +3985,8 @@ msgstr "" " script." # help set -#: builtins.c:1044 +#: builtins.c:1047 +#, fuzzy msgid "" "Set or unset values of shell options and positional parameters.\n" " \n" @@ -3838,7 +4029,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" @@ -3862,7 +4054,8 @@ msgid "" " by default when the shell is interactive.\n" " -P If set, do not resolve symbolic links when executing commands\n" " such as cd which change the current directory.\n" -" -T If set, the DEBUG trap is inherited by shell functions.\n" +" -T If set, the DEBUG and RETURN traps are inherited by shell " +"functions.\n" " -- Assign any remaining arguments to the positional parameters.\n" " If there are no remaining arguments, the positional parameters\n" " are unset.\n" @@ -3878,18 +4071,21 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given." msgstr "" -"Define ou remove definição de valores das opções e dos parâmetros posicionais\n" +"Define ou remove definição de valores das opções e dos parâmetros " +"posicionais\n" "do shell:\n" " \n" " Altera o valor de opções e de parâmetros posicionais do shell ou mostra\n" " os nomes ou valores de variáveis shell.\n" " \n" " Opções:\n" -" -a Marca variáveis, que foram modificadas ou criadas, para exportação.\n" +" -a Marca variáveis, que foram modificadas ou criadas, para " +"exportação.\n" " -b Notifica sobre terminação de trabalho imediatamente.\n" " -e Sai imediatamente se um comando sai com um status não-zero.\n" " -f Desabilita a geração de nome de arquivo (\"globbing\").\n" -" -h Memoriza a localização de comandos à medida em que são procurados.\n" +" -h Memoriza a localização de comandos à medida em que são " +"procurados.\n" " -k Todos argumentos de atribuição são colocados no ambiente para um\n" " comando, e não apenas aqueles que precedem o nome do comando.\n" " -m Controle de trabalho está habilitado.\n" @@ -3907,7 +4103,8 @@ msgstr "" " history habilita histórico de comandos\n" " ignoreeof shell não vai sair após leitura de EOF\n" " interactive-comments\n" -" permite mostrar comentários em comandos interativos\n" +" permite mostrar comentários em comandos " +"interativos\n" " keyword mesmo que -k\n" " monitor mesmo que -m\n" " noclobber mesmo que -C\n" @@ -3919,8 +4116,10 @@ msgstr "" " onecmd mesmo que -t\n" " physical mesmo que -P\n" " pipefail o valor de retorno de uma linha de comandos é o\n" -" status do último comando a sair com status não-zero,\n" -" ou zero se nenhum comando saiu com status não zero\n" +" status do último comando a sair com status não-" +"zero,\n" +" ou zero se nenhum comando saiu com status não " +"zero\n" " posix altera o comportamento do bash, onde a operação\n" " padrão diverge dos padrões do Posix para\n" " corresponder a estes padrões\n" @@ -3928,33 +4127,43 @@ msgstr "" " verbose mesmo que -v\n" " vi usa interface de edição de linha estilo vi\n" " xtrace mesmo que -x\n" -" -p Ligado sempre que IDs de usuário real e efetivo não corresponderem.\n" -" Desabilita processamento do arquivo $ENV e importação de funções da\n" +" -p Ligado sempre que IDs de usuário real e efetivo não " +"corresponderem.\n" +" Desabilita processamento do arquivo $ENV e importação de funções " +"da\n" " shell. Ao desligar essa opção, causa o uid e o gid efetivo serem\n" " os uid e gid reais.\n" " -t Sai após a leitura e execução de um comando.\n" -" -u Trata limpeza (unset) de variáveis como um erro quando substituindo.\n" +" -u Trata limpeza (unset) de variáveis como um erro quando " +"substituindo.\n" " -v Mostra linhas de entrada do shell na medida em que forem lidas.\n" -" -x Mostra comandos e seus argumentos na medida em que forme executados.\n" +" -x Mostra comandos e seus argumentos na medida em que forme " +"executados.\n" " -B o shell vai realizar expansão de chaves\n" " -C Se definido, não permite arquivos normais existentes serem\n" " sobrescritos por redirecionamento da saída.\n" " -E Se definido, a armadilha ERR é herdada por funções do shell.\n" -" -H Habilita substituição de histórico estilo \"!\". Essa sinalização está\n" +" -H Habilita substituição de histórico estilo \"!\". Essa sinalização " +"está\n" " habilitada por padrão quando shell é interativa.\n" -" -P Se definida, não resolve links simbólicos ao sair de comandos, tais\n" +" -P Se definida, não resolve links simbólicos ao sair de comandos, " +"tais\n" " como `cd' (que altera o diretório atual).\n" " -T Se definido, a armadilha DEBUG é herdada por funções do shell.\n" -" -- Atribui quaisquer argumentos restantes aos parâmetros posicionais.\n" +" -- Atribui quaisquer argumentos restantes aos parâmetros " +"posicionais.\n" " Se não houver argumentos restantes, os parâmetros posicionais são\n" " limpos (unset).\n" -" - Atribui quaisquer argumentos restantes aos parâmetros posicionais.\n" +" - Atribui quaisquer argumentos restantes aos parâmetros " +"posicionais.\n" " As opções -x e -v são desligadas.\n" " \n" " Usar +, ao invés de -, causa essas sinalizações serem desligadas. As\n" " sinalizações também podem ser usadas por meio de chamada do shell. As\n" -" sinalizações atualmente definidas podem ser encontradas em $-. Os n ARGs\n" -" restantes são parâmetros posicionais e são atribuídos, em ordem, a $1, $2,\n" +" sinalizações atualmente definidas podem ser encontradas em $-. Os n " +"ARGs\n" +" restantes são parâmetros posicionais e são atribuídos, em ordem, a $1, " +"$2,\n" " .. $n. Se nenhuma ARG for fornecido, todas as variáveis shell são\n" " mostradas.\n" " \n" @@ -3962,7 +4171,7 @@ msgstr "" " Retorna sucesso, a menos que uma opção inválida seja fornecida." # help unset -#: builtins.c:1129 +#: builtins.c:1132 msgid "" "Unset values and attributes of shell variables and functions.\n" " \n" @@ -3974,7 +4183,8 @@ msgid "" " -n\ttreat each NAME as a name reference and unset the variable itself\n" " \t\trather than the variable it references\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" @@ -4002,12 +4212,13 @@ msgstr "" " um NOME seja somente-leitura." # help export -#: builtins.c:1151 +#: builtins.c:1154 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" @@ -4022,7 +4233,8 @@ msgstr "" "Define atributo de exportação para variáveis shell.\n" " \n" " Marca cada NOME para exportação automática para o ambiente dos comandos\n" -" executados subsequentemente. Se VALOR for fornecido, atribui VALOR antes\n" +" executados subsequentemente. Se VALOR for fornecido, atribui VALOR " +"antes\n" " de exportar.\n" " \n" " Opções:\n" @@ -4037,7 +4249,7 @@ msgstr "" " NOME seja inválido." # help readonly -#: builtins.c:1170 +#: builtins.c:1173 msgid "" "Mark shell variables as unchangeable.\n" " \n" @@ -4077,7 +4289,7 @@ msgstr "" " NOME seja inválido." # help shift -#: builtins.c:1192 +#: builtins.c:1195 msgid "" "Shift positional parameters.\n" " \n" @@ -4089,14 +4301,15 @@ msgid "" msgstr "" "Desloca parâmetros posicionais.\n" " \n" -" Renomeia os parâmetros posicionais $N+1,$N+2 ... até $1,$2 ... Se N não\n" +" Renomeia os parâmetros posicionais $N+1,$N+2 ... até $1,$2 ... Se N " +"não\n" " for fornecido, presume-se que ele seja 1.\n" " \n" " Status de saída:\n" " Retorna sucesso, a menos que N seja negativo ou maior que $#." # help source -#: builtins.c:1204 builtins.c:1219 +#: builtins.c:1207 builtins.c:1222 msgid "" "Execute commands from a file in the current shell.\n" " \n" @@ -4121,7 +4334,7 @@ msgstr "" " ARQUIVO não puder ser lido." # help suspend -#: builtins.c:1235 +#: builtins.c:1238 msgid "" "Suspend shell execution.\n" " \n" @@ -4147,7 +4360,7 @@ msgstr "" " ou ocorra um erro." # help test -#: builtins.c:1251 +#: builtins.c:1254 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4181,7 +4394,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" @@ -4202,7 +4416,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" @@ -4229,8 +4444,10 @@ msgid "" msgstr "" "Avalia expressão condicional.\n" " \n" -" Sai com um status de 0 (verdadeiro) ou 1 (falso) dependendo da avaliação\n" -" de EXPR. As expressões podem ser unárias ou binárias. Expressões unárias\n" +" Sai com um status de 0 (verdadeiro) ou 1 (falso) dependendo da " +"avaliação\n" +" de EXPR. As expressões podem ser unárias ou binárias. Expressões " +"unárias\n" " são normalmente usadas para examinar o status de um arquivo. Há\n" " operadores de strings e também há operadores de comparação numérica.\n" " \n" @@ -4244,7 +4461,8 @@ msgstr "" " -c ARQUIVO Verdadeiro, se arquivo for um caractere especial.\n" " -d ARQUIVO Verdadeiro, se arquivo for um diretório.\n" " -e ARQUIVO Verdadeiro, se arquivo existir.\n" -" -f ARQUIVO Verdadeiro, se arquivo existir e for um arquivo normal.\n" +" -f ARQUIVO Verdadeiro, se arquivo existir e for um arquivo " +"normal.\n" " -g ARQUIVO Verdadeiro, se arquivo for set-group-id.\n" " -h ARQUIVO Verdadeiro, se arquivo for um link simbólico.\n" " -L ARQUIVO Verdadeiro, se arquivo for um link simbólico.\n" @@ -4295,20 +4513,24 @@ msgstr "" " e for uma referência de nome.\n" " ! EXPR Verdadeiro, se a expressão EXPR for falsa.\n" " EXPR1 -a EXPR2 Verdadeiro, se ambas EXPR1 e EXPR2 forem verdadeiras.\n" -" EXPR1 -o EXPR2 Verdadeiro, se ao menos uma das expressões for verdadeira.\n" +" EXPR1 -o EXPR2 Verdadeiro, se ao menos uma das expressões for " +"verdadeira.\n" " \n" -" arg1 OP arg2 Testes aritméticos. OP é um dentre -eq, -ne, -lt, -le,\n" +" arg1 OP arg2 Testes aritméticos. OP é um dentre -eq, -ne, -lt, -" +"le,\n" " -gt, or -ge.\n" " \n" -" Operadores binários de aritmética retornam verdadeiro se ARG1 for igual,\n" +" Operadores binários de aritmética retornam verdadeiro se ARG1 for " +"igual,\n" " não-igual, menor-que, menor-ou-igual-a ou maior-ou-igual-a ARG2.\n" " \n" " Status de saída:\n" -" Retorna sucesso, se EXPR for avaliada como verdadeira; falha, se EXPR for\n" +" Retorna sucesso, se EXPR for avaliada como verdadeira; falha, se EXPR " +"for\n" " avaliada como falsa ou um argumento inválido for informado." # help [ -#: builtins.c:1333 +#: builtins.c:1336 msgid "" "Evaluate conditional expression.\n" " \n" @@ -4321,11 +4543,12 @@ msgstr "" " argumento deve ser um `]' literal, para corresponder ao `[' que abriu." # help times -#: builtins.c:1342 +#: builtins.c:1345 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" @@ -4340,11 +4563,12 @@ msgstr "" " Sempre com sucesso." # help trap -#: builtins.c:1354 +#: builtins.c:1357 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" @@ -4353,26 +4577,34 @@ 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" -" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command. If\n" -" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or a\n" -" script run by the . or source builtins finishes executing. A SIGNAL_SPEC\n" -" of ERR means to execute ARG each time a command's failure would cause the\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. " +"If\n" +" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or " +"a\n" +" script run by the . or source builtins finishes executing. A " +"SIGNAL_SPEC\n" +" of ERR means to execute ARG each time a command's failure would cause " +"the\n" " shell to exit when the -e option is enabled.\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 "" "Tratamento de sinais e outros eventos.\n" " \n" @@ -4412,7 +4644,7 @@ msgstr "" " uma opção inválida seja fornecida." # help type -#: builtins.c:1390 +#: builtins.c:1393 msgid "" "Display information about command type.\n" " \n" @@ -4438,7 +4670,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 "" "Exibe informação sobre o tipo de comando.\n" " \n" @@ -4468,11 +4701,12 @@ msgstr "" " deles não for encontrado." # help ulimit -#: builtins.c:1421 +#: builtins.c:1424 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" @@ -4562,7 +4796,7 @@ msgstr "" " ocorra um erro." # help umask -#: builtins.c:1471 +#: builtins.c:1474 msgid "" "Display or set file mode mask.\n" " \n" @@ -4598,14 +4832,16 @@ msgstr "" " inválida seja fornecida." # help wait -#: builtins.c:1491 +#: builtins.c:1494 msgid "" "Wait for job completion and return exit status.\n" " \n" -" Waits for each process identified by an ID, which may be a process ID or a\n" +" Waits for each process identified by an 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 that job's pipeline.\n" " \n" " If the -n option is supplied, waits for the next job to terminate and\n" @@ -4632,16 +4868,18 @@ msgstr "" " inválida for fornecida." # help wait -#: builtins.c:1512 +#: builtins.c:1515 msgid "" "Wait for process completion and return exit status.\n" " \n" -" Waits for each process specified by a PID and reports its termination status.\n" +" Waits for each process specified by a PID and reports its termination " +"status.\n" " If PID is not given, waits for all currently active child processes,\n" " and the return status is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of the last PID; fails if PID is invalid or an invalid\n" +" Returns the status of the last PID; fails if PID is invalid or an " +"invalid\n" " option is given." msgstr "" "Espera por conclusão de processo e retorna o status de saída.\n" @@ -4656,7 +4894,7 @@ msgstr "" " inválida for fornecida." # help for -#: builtins.c:1527 +#: builtins.c:1530 msgid "" "Execute commands for each member in a list.\n" " \n" @@ -4672,14 +4910,15 @@ msgstr "" " \n" " O loop `for' executa uma sequência de comandos para cada membro em\n" " uma lista de itens. Se `in PALAVRAS ...;' não estiver presente, então\n" -" `in \"$@\"' é presumido. Para cada elemento em PALAVRAS, NOME é definido\n" +" `in \"$@\"' é presumido. Para cada elemento em PALAVRAS, NOME é " +"definido\n" " com aquele elemento e os COMANDOS são executados.\n" " \n" " Status de saída:\n" " Retorna o status do último comando executado." # help for (( (?) -#: builtins.c:1541 +#: builtins.c:1544 msgid "" "Arithmetic for loop.\n" " \n" @@ -4710,7 +4949,7 @@ msgstr "" " Retorna o status do último comando executado." # help select -#: builtins.c:1559 +#: builtins.c:1562 msgid "" "Select words from a list and execute commands.\n" " \n" @@ -4748,7 +4987,7 @@ msgstr "" " Retorna o status do último comando executado." # help time -#: builtins.c:1580 +#: builtins.c:1583 msgid "" "Report time consumed by pipeline's execution.\n" " \n" @@ -4778,7 +5017,7 @@ msgstr "" " O status de retorno é o status retornado por LINHA-COMANDOS." # help case -#: builtins.c:1597 +#: builtins.c:1600 msgid "" "Execute commands based on pattern matching.\n" " \n" @@ -4797,16 +5036,21 @@ msgstr "" " Retorna o status do último comando executado." # help if -#: builtins.c:1609 +#: builtins.c:1612 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" @@ -4827,7 +5071,7 @@ msgstr "" " Retorna o status do último comando executado." # help while -#: builtins.c:1626 +#: builtins.c:1629 msgid "" "Execute commands as long as a test succeeds.\n" " \n" @@ -4846,7 +5090,7 @@ msgstr "" " Retorna o status do último comando executado." # help until -#: builtins.c:1638 +#: builtins.c:1641 msgid "" "Execute commands as long as a test does not succeed.\n" " \n" @@ -4866,7 +5110,8 @@ msgstr "" " Retorna o status do último comando executado." # help coproc -#: builtins.c:1650 +#: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4876,7 +5121,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Cria um coprocesso chamado NOME.\n" " \n" @@ -4889,12 +5134,13 @@ msgstr "" " Retorna o status de saída de COMANDO." # help function -#: builtins.c:1664 +#: builtins.c:1667 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" @@ -4912,7 +5158,7 @@ msgstr "" " Retorna sucesso, a menos que NOME seja somente-leitura." # help -m { -#: builtins.c:1678 +#: builtins.c:1681 msgid "" "Group commands as a unit.\n" " \n" @@ -4930,7 +5176,7 @@ msgstr "" " Status de saída:\n" " Retorna o status do último comando executado." -#: builtins.c:1690 +#: builtins.c:1693 msgid "" "Resume job in foreground.\n" " \n" @@ -4956,7 +5202,7 @@ msgstr "" " Retorna o status de um trabalho resumido." # help '((' -#: builtins.c:1705 +#: builtins.c:1708 msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -4975,13 +5221,16 @@ msgstr "" " Retorna 1, se EXPRESSÃO for avaliada como 0; do contrário, retorna 0." # help '[' -#: builtins.c:1717 +#: builtins.c:1720 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" @@ -5025,7 +5274,7 @@ msgstr "" " 0 ou 1 dependendo do valor de EXPRESSÃO." # help variables -#: builtins.c:1743 +#: builtins.c:1746 msgid "" "Common shell variable names and usage.\n" " \n" @@ -5109,7 +5358,8 @@ msgstr "" " OSTYPE\t\t\tA versão do Unix no qual Bash está sendo executado.\n" " PATH\t\t\tUma lista separada por dois-pontos de diretórios para\n" " \t\t\tpesquisar ao se procurar por comandos.\n" -" PROMPT_COMMAND\tUm comando a ser executado antes de imprimir cada prompt\n" +" PROMPT_COMMAND\tUm comando a ser executado antes de imprimir cada " +"prompt\n" " \t\t\tprimário.\n" " PS1\t\t\t\tA string de prompt primário.\n" " PS2\t\t\t\tA string de prompt secundária.\n" @@ -5140,7 +5390,7 @@ msgstr "" " \t\t\t\thistórico.\n" # help pushd -#: builtins.c:1800 +#: builtins.c:1803 msgid "" "Add directories to stack.\n" " \n" @@ -5200,7 +5450,7 @@ msgstr "" " a alteração de diretório falhar." # help popd -#: builtins.c:1834 +#: builtins.c:1837 msgid "" "Remove directories from stack.\n" " \n" @@ -5251,7 +5501,7 @@ msgstr "" " a alteração de diretório falhar." # help dirs -#: builtins.c:1864 +#: builtins.c:1867 msgid "" "Display directory stack.\n" " \n" @@ -5305,12 +5555,13 @@ msgstr "" " ocorrer um erro." # help shopt -#: builtins.c:1895 +#: builtins.c:1898 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" @@ -5342,7 +5593,7 @@ msgstr "" " opção inválida for fornecida ou NOME-OPÇÃO estiver desabilitado." # help printf -#: builtins.c:1916 +#: builtins.c:1919 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" " \n" @@ -5350,27 +5601,34 @@ 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" " 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" -" %(fmt)T\toutput the date-time string resulting from using FMT as a format\n" +" %(fmt)T\toutput the date-time string resulting from using FMT as a " +"format\n" " \t string for strftime(3)\n" " \n" " The format is re-used as necessary to consume all of the arguments. If\n" " there are fewer arguments than the format requires, extra format\n" -" specifications behave as if a zero value or null string, as appropriate,\n" +" specifications behave as if a zero value or null string, as " +"appropriate,\n" " had been supplied.\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 "" "Formata e imprime ARGUMENTOS sob controle de FORMATO.\n" @@ -5405,12 +5663,14 @@ msgstr "" " ocorra um erro de escrita ou atribuição." # help complete -#: builtins.c:1950 +#: builtins.c:1953 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" @@ -5436,8 +5696,10 @@ msgstr "" " impressas em uma forma que permite-as serem usadas como entrada.\n" " \n" " Opções:\n" -" -p\timprime especificações existentes de completar em um formato usável\n" -" -r\tremove uma especificação de completar para cada NOME ou, se nenhum\n" +" -p\timprime especificações existentes de completar em um formato " +"usável\n" +" -r\tremove uma especificação de completar para cada NOME ou, se " +"nenhum\n" " \t\tNOME for fornecido, todas as especificações de completar\n" " -D\taplica as completações e ações como sendo o padrão para comandos\n" " \t\tsem qualquer especificação definida\n" @@ -5453,12 +5715,13 @@ msgstr "" " ocorra um erro." # help compgen -#: builtins.c:1978 +#: builtins.c:1981 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" @@ -5475,13 +5738,16 @@ msgstr "" " ocorra um erro." # help compopt -#: builtins.c:1993 +#: builtins.c:1996 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 being executed. If no OPTIONs are given, 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 being executed. If no OPTIONs are given, " +"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" @@ -5530,21 +5796,26 @@ msgstr "" " NOME não tem uma especificação de completação definida." # help mapfile -#: builtins.c:2023 +#: builtins.c:2026 msgid "" "Read lines from the standard input into an indexed array variable.\n" " \n" -" Read lines from the standard input into the indexed array variable ARRAY, or\n" -" from file descriptor FD if the -u option is supplied. The variable MAPFILE\n" +" Read lines from the standard input into the indexed array variable " +"ARRAY, or\n" +" from file descriptor FD if the -u option is supplied. The variable " +"MAPFILE\n" " is the default ARRAY.\n" " \n" " Options:\n" " -d delim\tUse DELIM to terminate lines, instead of newline\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\tRemove a trailing DELIM from each line read (default newline)\n" -" -u fd\tRead lines from file descriptor FD instead of the standard input\n" +" -u fd\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\n" " \t\t\tCALLBACK\n" @@ -5557,11 +5828,13 @@ msgid "" " element to be assigned and the line to be assigned to that element\n" " as additional arguments.\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" -" Returns success unless an invalid option is given or ARRAY is readonly or\n" +" Returns success unless an invalid option is given or ARRAY is readonly " +"or\n" " not an indexed array." msgstr "" "Lê linhas da entrada padrão para uma variável array indexado.\n" @@ -5572,23 +5845,28 @@ msgstr "" " \n" " Opções:\n" " -d DELIM Usa DELIM para terminar linhas, ao invés de nova linha\n" -" -n NÚMERO Copia no máximo NÚMERO linhas. Se NÚMERO for 0, todas as\n" +" -n NÚMERO Copia no máximo NÚMERO linhas. Se NÚMERO for 0, todas " +"as\n" " linhas são copiadas\n" " -O ORIGEM Inicia atribuição de ARRAY no índice ORIGEM. O índice\n" " padrão é 0\n" " -s NÚMERO Descarta as primeiras NÚMERO linhas lidas\n" " -t Remove uma DELIM ao final para cada linha lida\n" " (padrão: nova linha)\n" -" -u FD Lê linhas do descritor de arquivos FD, ao invés da entrada\n" +" -u FD Lê linhas do descritor de arquivos FD, ao invés da " +"entrada\n" " padrão\n" -" -C CHAMADA Avalia CHAMADA a cada vez que QUANTIDADE linhas foram lidas\n" -" -c QUANTIDADE Especifica o número de linhas lidas entre cada chamada para\n" +" -C CHAMADA Avalia CHAMADA a cada vez que QUANTIDADE linhas foram " +"lidas\n" +" -c QUANTIDADE Especifica o número de linhas lidas entre cada chamada " +"para\n" " CHAMADA\n" " \n" " Argumentos:\n" " ARRAY Nome da variável array para usar para arquivos de dados\n" " \n" -" Se -C for fornecido sem -c, a quantidade padrão é 5000. Quando CHAMADA é\n" +" Se -C for fornecido sem -c, a quantidade padrão é 5000. Quando CHAMADA " +"é\n" " avaliada, é fornecido o índice para o próximo elemento da array ser\n" " atribuído e a linha para ser atribuída àquele elemento como argumentos\n" " adicionais\n" @@ -5601,7 +5879,7 @@ msgstr "" " somente leitura ou não for um array indexado." # help readarray -#: builtins.c:2059 +#: builtins.c:2062 msgid "" "Read lines from a file into an array variable.\n" " \n" @@ -5611,6 +5889,21 @@ msgstr "" " \n" " Um sinônimo para `mapfile'." +#~ msgid ":" +#~ msgstr ":" + +# Não traduzir "true", esta é uma opção "builtin" do "bash" que é exibida ao executar "help" e acessível com "help true". +#~ msgid "true" +#~ msgstr "true" + +# Não traduzir "false", esta é uma opção "builtin" do "bash" que é exibida ao executar "help" e acessível com "help false". +#~ msgid "false" +#~ msgstr "false" + +# não traduzir, este é um comando +#~ msgid "times" +#~ msgstr "times" + #~ msgid "Missing `}'" #~ msgstr "Faltando `}'" @@ -5727,7 +6020,8 @@ msgstr "" #~ msgstr "substituição de comando" #~ msgid "Can't reopen pipe to command substitution (fd %d): %s" -#~ msgstr "Impossível reabrir o `pipe' para substituição de comando (fd %d): %s" +#~ msgstr "" +#~ "Impossível reabrir o `pipe' para substituição de comando (fd %d): %s" #~ msgid "$%c: unbound variable" #~ msgstr "$%c: variável não associada" @@ -5811,7 +6105,8 @@ msgstr "" #~ msgstr "de aliases na forma `alias NOME=VALOR' na saída padrão." #~ msgid "Otherwise, an alias is defined for each NAME whose VALUE is given." -#~ msgstr "Ou então, um alias é definido para cada NOME cujo VALOR for fornecido." +#~ msgstr "" +#~ "Ou então, um alias é definido para cada NOME cujo VALOR for fornecido." #~ msgid "A trailing space in VALUE causes the next word to be checked for" #~ msgstr "Um espaço após VALOR faz a próxima palavra ser verificada para" @@ -5820,34 +6115,45 @@ msgstr "" #~ msgstr "substituição do alias quando o alias é expandido. Alias retorna" #~ msgid "true unless a NAME is given for which no alias has been defined." -#~ msgstr "verdadeiro, a não ser que seja fornecido um NOME sem alias definido." +#~ msgstr "" +#~ "verdadeiro, a não ser que seja fornecido um NOME sem alias definido." -#~ msgid "Remove NAMEs from the list of defined aliases. If the -a option is given," -#~ msgstr "Remove NOMEs da lista de aliases definidos. Se a opção -a for fornecida," +#~ msgid "" +#~ "Remove NAMEs from the list of defined aliases. If the -a option is given," +#~ msgstr "" +#~ "Remove NOMEs da lista de aliases definidos. Se a opção -a for fornecida," #~ msgid "then remove all alias definitions." #~ msgstr "então todas as definições de alias são removidas." #~ msgid "Bind a key sequence to a Readline function, or to a macro. The" -#~ msgstr "Víncula uma seqüência de teclas a uma função de leitura de linha, ou a uma" +#~ msgstr "" +#~ "Víncula uma seqüência de teclas a uma função de leitura de linha, ou a uma" #~ msgid "syntax is equivalent to that found in ~/.inputrc, but must be" -#~ msgstr "macro. A sintaxe é equivalente à encontrada em ~/.inputrc, mas deve ser" +#~ msgstr "" +#~ "macro. A sintaxe é equivalente à encontrada em ~/.inputrc, mas deve ser" -#~ msgid "passed as a single argument: bind '\"\\C-x\\C-r\": re-read-init-file'." -#~ msgstr "passada como um único argumento: 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 "" +#~ "passada como um único argumento: bind '\"\\C-x\\C-r\": re-read-init-file'." #~ msgid "Arguments we accept:" #~ msgstr "Argumentos permitidos:" -#~ msgid " -m keymap Use `keymap' as the keymap for the duration of this" -#~ msgstr " -m MAPA-TECLAS Usar `MAPA-TECLAS' como mapa das teclas pela duração" +#~ msgid "" +#~ " -m keymap Use `keymap' as the keymap for the duration of this" +#~ msgstr "" +#~ " -m MAPA-TECLAS Usar `MAPA-TECLAS' como mapa das teclas pela duração" #~ msgid " command. Acceptable keymap names are emacs," #~ msgstr " deste comando. Os nomes aceitos são 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, and vi-insert." @@ -5858,8 +6164,10 @@ msgstr "" #~ msgid " -P List function names and bindings." #~ msgstr " -P Listar nomes e associações das funções." -#~ msgid " -p List functions and bindings in a form that can be" -#~ msgstr " -p Listar nomes e associações das funções de uma forma" +#~ msgid "" +#~ " -p List functions and bindings in a form that can be" +#~ msgstr "" +#~ " -p Listar nomes e associações das funções de uma forma" #~ msgid " reused as input." #~ msgstr " que pode ser reutilizada como entrada." @@ -5870,24 +6178,31 @@ msgstr "" #~ msgid " -f filename Read key bindings from FILENAME." #~ msgstr " -f ARQUIVO Ler os vínculos das teclas em ARQUIVO." -#~ msgid " -q function-name Query about which keys invoke the named function." +#~ msgid "" +#~ " -q function-name Query about which keys invoke the named function." #~ msgstr " -q NOME-FUNÇÃO Consultar quais teclas chamam esta função." #~ msgid " -V List variable names and values" #~ msgstr " -V Listar os nomes e os valores das variáveis." -#~ msgid " -v List variable names and values in a form that can" -#~ msgstr " -v Listar os nomes e os valores das variáveis de uma" +#~ msgid "" +#~ " -v List variable names and values in a form that can" +#~ msgstr "" +#~ " -v Listar os nomes e os valores das variáveis de uma" #~ msgid " be reused as input." #~ msgstr " forma que pode ser reutilizada como entrada." -#~ msgid " -S List key sequences that invoke macros and their values" +#~ msgid "" +#~ " -S List key sequences that invoke macros and their " +#~ "values" #~ msgstr "" #~ " -S Listar as seqüências de teclas que chamam macros\n" #~ " e seus valores." -#~ 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 Listar seqüências de teclas que chamam macros" #~ msgid " a form that can be reused as input." @@ -5908,7 +6223,8 @@ msgstr "" #~ msgstr "Se N for especificado, prossegue no N-ésimo laço envolvente." #~ msgid "Run a shell builtin. This is useful when you wish to rename a" -#~ msgstr "Executa um comando interno do shell. Útil quando desejamos substituir" +#~ msgstr "" +#~ "Executa um comando interno do shell. Útil quando desejamos substituir" #~ msgid "shell builtin to be a function, but need the functionality of the" #~ msgstr "um comando interno do shell por uma função, mas necessitamos da" @@ -5923,10 +6239,12 @@ msgstr "" #~ msgstr "para DIR. A variável $CDPATH define o caminho de procura para" #~ msgid "the directory containing DIR. Alternative directory names in CDPATH" -#~ msgstr "o diretório que contém DIR. Nomes de diretórios alternativos em CDPATH" +#~ msgstr "" +#~ "o diretório que contém DIR. Nomes de diretórios alternativos em CDPATH" #~ msgid "are separated by a colon (:). A null directory name is the same as" -#~ msgstr "são separados por dois pontos (:). Um nome de diretório nulo é o mesmo" +#~ msgstr "" +#~ "são separados por dois pontos (:). Um nome de diretório nulo é o mesmo" #~ msgid "the current directory, i.e. `.'. If DIR begins with a slash (/)," #~ msgstr "que o diretório atual, i.e. `.'. Se DIR inicia com uma barra (/)," @@ -5935,15 +6253,20 @@ msgstr "" #~ msgstr "então $CDPATH não é usado. Se o diretório não for encontrado, e a" #~ msgid "shell option `cdable_vars' is set, then try the word as a variable" -#~ msgstr "opção `cdable_vars' estiver definida, tentar usar DIR como um nome de" +#~ msgstr "" +#~ "opção `cdable_vars' estiver definida, tentar usar DIR como um nome de" #~ msgid "name. If that variable has a value, then cd to the value of that" -#~ msgstr "variável. Se esta variável tiver valor, então `cd' para o valor desta" +#~ msgstr "" +#~ "variável. Se esta variável tiver valor, então `cd' para o valor desta" -#~ msgid "variable. The -P option says to use the physical directory structure" -#~ msgstr "variável. A opção -P indica para usar a estrutura física do diretório" +#~ msgid "" +#~ "variable. The -P option says to use the physical directory structure" +#~ msgstr "" +#~ "variável. A opção -P indica para usar a estrutura física do diretório" -#~ 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 "em vez de seguir os vínculos simbólicos; a opção -L força seguir os" #~ msgid "to be followed." @@ -5958,19 +6281,27 @@ msgstr "" #~ msgid "makes pwd follow symbolic links." #~ msgstr "com que `pwd' siga os vínculos simbólicos." -#~ msgid "Runs COMMAND with ARGS ignoring shell functions. If you have a shell" -#~ msgstr "Executa COMANDO com ARGs ignorando as funções da shell. Ex: Havendo" +#~ msgid "" +#~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell" +#~ msgstr "" +#~ "Executa COMANDO com ARGs ignorando as funções da shell. Ex: Havendo" #~ msgid "function called `ls', and you wish to call the command `ls', you can" -#~ msgstr "uma função `ls', e se for necessário executar o comando `ls', executa-se" +#~ msgstr "" +#~ "uma função `ls', e se for necessário executar o comando `ls', executa-se" -#~ msgid "say \"command ls\". If the -p option is given, a default value is used" -#~ msgstr "\"command ls\". Se a opção -p for fornecida, o valor padrão é utilizado" +#~ msgid "" +#~ "say \"command ls\". If the -p option is given, a default value is used" +#~ msgstr "" +#~ "\"command ls\". Se a opção -p for fornecida, o valor padrão é utilizado" -#~ msgid "for PATH that is guaranteed to find all of the standard utilities. If" -#~ msgstr "para PATH, garantindo-se o encontro de todos os utilitários padrão. Se" +#~ msgid "" +#~ "for PATH that is guaranteed to find all of the standard utilities. If" +#~ msgstr "" +#~ "para PATH, garantindo-se o encontro de todos os utilitários padrão. Se" -#~ 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 "a opção -V ou -v for fornecida, é exibida a descrição do COMANDO." #~ msgid "The -V option produces a more verbose description." @@ -6021,7 +6352,8 @@ msgstr "" #~ msgid "name only." #~ msgstr "somente." -#~ msgid "Using `+' instead of `-' turns off the given attribute instead. When" +#~ msgid "" +#~ "Using `+' instead of `-' turns off the given attribute instead. When" #~ msgstr "Usando `+' em vez de `-' faz o atributo ser desabilitado. Quando" #~ msgid "used in a function, makes NAMEs local, as with the `local' command." @@ -6040,7 +6372,8 @@ msgstr "" #~ msgstr "Exibe ARGs. Se -n for fornecido, o caracter final de nova linha é" #~ msgid "suppressed. If the -e option is given, interpretation of the" -#~ msgstr "suprimido. Se a opção -e for fornecida, a interpretação dos seguintes" +#~ msgstr "" +#~ "suprimido. Se a opção -e for fornecida, a interpretação dos seguintes" #~ msgid "following backslash-escaped characters is turned on:" #~ msgstr "caracteres após a contrabarra é ativada:" @@ -6078,56 +6411,74 @@ msgstr "" #~ msgid "\t\\num\tthe character whose ASCII code is NUM (octal)." #~ msgstr "\t\\num\to caracter com código ASCII igual a NUM (octal)." -#~ msgid "You can explicitly turn off the interpretation of the above characters" -#~ msgstr "Pode-se explicitamente desabilitar a interpretação dos caracteres acima" +#~ msgid "" +#~ "You can explicitly turn off the interpretation of the above characters" +#~ msgstr "" +#~ "Pode-se explicitamente desabilitar a interpretação dos caracteres acima" #~ msgid "with the -E option." #~ msgstr "através da opção -E." -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "Exibe ARGS. Se -n for fornecido, o caracter final de nova linha é suprimido." +#~ msgid "" +#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." +#~ msgstr "" +#~ "Exibe ARGS. Se -n for fornecido, o caracter final de nova linha é " +#~ "suprimido." #~ msgid "Enable and disable builtin shell commands. This allows" -#~ msgstr "Habilita e desabilita os comandos internos do shell, permitindo usar" +#~ msgstr "" +#~ "Habilita e desabilita os comandos internos do shell, permitindo usar" #~ msgid "you to use a disk command which has the same name as a shell" -#~ msgstr "um comando de disco que tenha o mesmo nome do comando interno do shell." +#~ msgstr "" +#~ "um comando de disco que tenha o mesmo nome do comando interno do shell." #~ msgid "builtin. If -n is used, the NAMEs become disabled; otherwise" -#~ msgstr "Se -n for especificado, os NOMEs são desabilitados, senão os nomes são" +#~ msgstr "" +#~ "Se -n for especificado, os NOMEs são desabilitados, senão os nomes são" #~ msgid "NAMEs are enabled. For example, to use the `test' found on your" -#~ msgstr "habilitados. Por exemplo, para usar `test' encontrado pelo PATH em vez" +#~ msgstr "" +#~ "habilitados. Por exemplo, para usar `test' encontrado pelo PATH em vez" #~ msgid "path instead of the shell builtin version, type `enable -n test'." -#~ msgstr "da versão interna do comando, digite `enable -n test'. Em sistemas que" +#~ msgstr "" +#~ "da versão interna do comando, digite `enable -n test'. Em sistemas que" #~ msgid "On systems supporting dynamic loading, the -f option may be used" -#~ msgstr "suportam carregamento dinâmico, pode-se usar a opção -f para carregar" +#~ msgstr "" +#~ "suportam carregamento dinâmico, pode-se usar a opção -f para carregar" #~ msgid "to load new builtins from the shared object FILENAME. The -d" -#~ msgstr "novos comandos internos do objeto compartilhado ARQUIVO. A opção -d" +#~ msgstr "" +#~ "novos comandos internos do objeto compartilhado ARQUIVO. A opção -d" #~ msgid "option will delete a builtin previously loaded with -f. If no" -#~ msgstr "elimina os comandos internos previamente carregados com -f. Se nenhum" +#~ msgstr "" +#~ "elimina os comandos internos previamente carregados com -f. Se nenhum" #~ msgid "non-option names are given, or the -p option is supplied, a list" -#~ msgstr "nome for fornecido, ou se a opção -p for fornecida, uma lista de comandos" +#~ msgstr "" +#~ "nome for fornecido, ou se a opção -p for fornecida, uma lista de comandos" #~ msgid "of builtins is printed. The -a option means to print every builtin" -#~ msgstr "internos é exibida. A opção -a faz com que todos os comandos internos" +#~ msgstr "" +#~ "internos é exibida. A opção -a faz com que todos os comandos internos" #~ msgid "with an indication of whether or not it is enabled. The -s option" #~ msgstr "sejam exibidos indicando se estão habilitados ou não. A opção -s" #~ msgid "restricts the output to the Posix.2 `special' builtins. The -n" -#~ msgstr "restringe a saída aos comandos internos `especiais' Posix.2. A opção" +#~ msgstr "" +#~ "restringe a saída aos comandos internos `especiais' Posix.2. A opção" #~ msgid "option displays a list of all disabled builtins." #~ msgstr "-n exibe a lista de todos os comandos internos desabilitados." -#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)." -#~ msgstr "Ler ARGs como entrada do shell e executar o(s) comando(s) resultante(s)." +#~ msgid "" +#~ "Read ARGs as input to the shell and execute the resulting command(s)." +#~ msgstr "" +#~ "Ler ARGs como entrada do shell e executar o(s) comando(s) resultante(s)." #~ msgid "Getopts is used by shell procedures to parse positional parameters." #~ msgstr "" @@ -6156,13 +6507,15 @@ msgstr "" #~ msgstr "shell OPTIND. OPTIND é inicializado com 1 cada vez que o script" #~ msgid "a shell script is invoked. When an option requires an argument," -#~ msgstr "do shell é chamado. Quando uma opção requer um argumento, `getopts'" +#~ msgstr "" +#~ "do shell é chamado. Quando uma opção requer um argumento, `getopts'" #~ msgid "getopts places that argument into the shell variable OPTARG." #~ msgstr "coloca este argumento dentro da variável do shell OPTARG." #~ msgid "getopts reports errors in one of two ways. If the first character" -#~ msgstr "`getopts' informa os erros de duas maneiras. Se o primeiro caracter de" +#~ msgstr "" +#~ "`getopts' informa os erros de duas maneiras. Se o primeiro caracter de" #~ msgid "of OPTSTRING is a colon, getopts uses silent error reporting. In" #~ msgstr "OPÇÕES for dois pontos, `getopts' usa o modo silencioso. Neste" @@ -6174,19 +6527,24 @@ msgstr "" #~ msgstr "encontrada, `getopts' coloca o caracter da opção em OPTARG. Se um" #~ msgid "required argument is not found, getopts places a ':' into NAME and" -#~ msgstr "argumento requerido não for encontrado, `getopts' coloca ':' em NOME e" +#~ msgstr "" +#~ "argumento requerido não for encontrado, `getopts' coloca ':' em NOME e" #~ msgid "sets OPTARG to the option character found. If getopts is not in" -#~ msgstr "atribui a OPTARG o caracter de opção encontrado. Se `getopts' não está em" +#~ msgstr "" +#~ "atribui a OPTARG o caracter de opção encontrado. Se `getopts' não está em" #~ msgid "silent mode, and an illegal option is seen, getopts places '?' into" -#~ msgstr "modo silencioso, e uma opção ilegal é encontrada, `getopts' coloca '?' em" +#~ msgstr "" +#~ "modo silencioso, e uma opção ilegal é encontrada, `getopts' coloca '?' em" #~ msgid "NAME and unsets OPTARG. If a required option is not found, a '?'" -#~ msgstr "NOME e desativa OPTARG. Se uma opção requerida não é encontrada, uma '?'" +#~ msgstr "" +#~ "NOME e desativa OPTARG. Se uma opção requerida não é encontrada, uma '?'" #~ msgid "is placed in NAME, OPTARG is unset, and a diagnostic message is" -#~ msgstr "é colocada em NOME, OPTARG é desativado, e uma mensagem de diagnóstico é" +#~ msgstr "" +#~ "é colocada em NOME, OPTARG é desativado, e uma mensagem de diagnóstico é" #~ msgid "printed." #~ msgstr "exibida." @@ -6201,16 +6559,19 @@ msgstr "" #~ msgstr "OPTSTRING não seja dois pontos. OPTERR tem o valor 1 por padrão." #~ msgid "Getopts normally parses the positional parameters ($0 - $9), but if" -#~ msgstr "`getopts' normalmente faz a leitura dos parãmetros posicionais ($0 - $9)," +#~ msgstr "" +#~ "`getopts' normalmente faz a leitura dos parãmetros posicionais ($0 - $9)," #~ msgid "more arguments are given, they are parsed instead." #~ msgstr "mas, se mais argumentos forem fornecidos, então estes são lidos." #~ msgid "Exec FILE, replacing this shell with the specified program." -#~ msgstr "Executa ARQUIVO, substituindo esta shell pelo programa especificado." +#~ msgstr "" +#~ "Executa ARQUIVO, substituindo esta shell pelo programa especificado." #~ msgid "If FILE is not specified, the redirections take effect in this" -#~ msgstr "Se ARQUIVO não for especificado, os redirecionamentos são efetivados" +#~ msgstr "" +#~ "Se ARQUIVO não for especificado, os redirecionamentos são efetivados" #~ msgid "shell. If the first argument is `-l', then place a dash in the" #~ msgstr "neste shell. Se o primeiro argumento for `-l', coloca um hífen no" @@ -6228,7 +6589,8 @@ msgstr "" #~ msgstr "Se o arquivo não puder ser executado e o shell não for interativa," #~ msgid "then the shell exits, unless the variable \"no_exit_on_failed_exec\"" -#~ msgstr "então o shell termina, a menos que a variável \"no_exit_on_failed_exec\"" +#~ msgstr "" +#~ "então o shell termina, a menos que a variável \"no_exit_on_failed_exec\"" #~ msgid "is set." #~ msgstr "esteja inicializada." @@ -6236,7 +6598,8 @@ msgstr "" #~ msgid "is that of the last command executed." #~ msgstr "de saída é igual ao do último comando executado." -#~ msgid "FIRST and LAST can be numbers specifying the range, or FIRST can be a" +#~ msgid "" +#~ "FIRST and LAST can be numbers specifying the range, or FIRST can be a" #~ msgstr "PRIMEIRO e ÚLTIMO podem ser números especificando o intervalo, ou" #~ msgid "string, which means the most recent command beginning with that" @@ -6245,11 +6608,16 @@ msgstr "" #~ msgid "string." #~ msgstr "mais recente começado por estes caracteres." -#~ msgid " -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR," -#~ msgstr " -e EDITOR seleciona qual editor usar. O padrão é FCEDIT, depois EDITOR," +#~ msgid "" +#~ " -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR," +#~ msgstr "" +#~ " -e EDITOR seleciona qual editor usar. O padrão é FCEDIT, depois " +#~ "EDITOR," -#~ msgid " then the editor which corresponds to the current readline editing" -#~ msgstr " depois o editor correspondente ao modo de edição atual da leitura" +#~ msgid "" +#~ " then the editor which corresponds to the current readline editing" +#~ msgstr "" +#~ " depois o editor correspondente ao modo de edição atual da leitura" #~ msgid " mode, then vi." #~ msgstr " de linha, e depois o vi." @@ -6260,32 +6628,40 @@ msgstr "" #~ msgid " -n means no line numbers listed." #~ msgstr " -n indica para não listar os números das linhas." -#~ msgid " -r means reverse the order of the lines (making it newest listed first)." -#~ msgstr " -r faz reverter a ordem das linhas (a última torna-se a primeira)." +#~ msgid "" +#~ " -r means reverse the order of the lines (making it newest listed " +#~ "first)." +#~ msgstr "" +#~ " -r faz reverter a ordem das linhas (a última torna-se a primeira)." #~ msgid "With the `fc -s [pat=rep ...] [command]' format, the command is" -#~ msgstr "No formato `fc -s [ANTIGO=NOVO ...] [COMANDO]', o comando é executado" +#~ msgstr "" +#~ "No formato `fc -s [ANTIGO=NOVO ...] [COMANDO]', o comando é executado" #~ msgid "re-executed after the substitution OLD=NEW is performed." #~ msgstr "novamente após a substituição de ANTIGO por NOVO ser realizada." #~ msgid "A useful alias to use with this is r='fc -s', so that typing `r cc'" -#~ msgstr "Um alias útil a ser usado é r='fc -s' para que, ao se digitar `r cc'," +#~ msgstr "" +#~ "Um alias útil a ser usado é r='fc -s' para que, ao se digitar `r cc'," #~ msgid "runs the last command beginning with `cc' and typing `r' re-executes" #~ msgstr "seja executado o último comando começado por `cc' e, ao se digitar" #~ msgid "Place JOB_SPEC in the foreground, and make it the current job. If" -#~ msgstr "Colocar JOB-ESPECIFICADO no primeiro plano, e torná-lo o trabalho atual." +#~ msgstr "" +#~ "Colocar JOB-ESPECIFICADO no primeiro plano, e torná-lo o trabalho atual." #~ msgid "JOB_SPEC is not present, the shell's notion of the current job is" -#~ msgstr "Se JOB-ESPECIFICADO não estiver presente, a noção do shell do trabalho" +#~ msgstr "" +#~ "Se JOB-ESPECIFICADO não estiver presente, a noção do shell do trabalho" #~ msgid "used." #~ msgstr "atual é utilizada." #~ msgid "Place JOB_SPEC in the background, as if it had been started with" -#~ msgstr "Colocar JOB-ESPECIFICADO no segundo plano, como se tivesse sido ativado" +#~ msgstr "" +#~ "Colocar JOB-ESPECIFICADO no segundo plano, como se tivesse sido ativado" #~ msgid "`&'. If JOB_SPEC is not present, the shell's notion of the current" #~ msgstr "com `&'. Se JOB-ESPECIFICADO não estiver presente, a noção do shell" @@ -6294,18 +6670,22 @@ msgstr "" #~ msgstr "do trabalho atual é utilizada." #~ msgid "For each NAME, the full pathname of the command is determined and" -#~ msgstr "Para cada NOME, o caminho completo do comando é determinado e lembrado." +#~ msgstr "" +#~ "Para cada NOME, o caminho completo do comando é determinado e lembrado." #~ msgid "remembered. If the -p option is supplied, PATHNAME is used as the" -#~ msgstr "Se a opção -p for fornecida, CAMINHO é utilizado como o caminho completo" +#~ msgstr "" +#~ "Se a opção -p for fornecida, CAMINHO é utilizado como o caminho completo" #~ msgid "full pathname of NAME, and no path search is performed. The -r" #~ msgstr "para NOME, e nenhuma procura de caminho é realizada. A opção -r" #~ msgid "option causes the shell to forget all remembered locations. If no" -#~ msgstr "faz com que a shell esqueça todas as localizações lembradas. Sem nenhum" +#~ msgstr "" +#~ "faz com que a shell esqueça todas as localizações lembradas. Sem nenhum" -#~ msgid "arguments are given, information about remembered commands is displayed." +#~ msgid "" +#~ "arguments are given, information about remembered commands is displayed." #~ msgstr "argumento, as informações sobre os comandos lembrados são exibidas." #~ msgid "Display helpful information about builtin commands. If PATTERN is" @@ -6315,10 +6695,12 @@ msgstr "" #~ msgstr "especificado, fornece ajuda detalhada para todos os comandos que" #~ msgid "otherwise a list of the builtins is printed." -#~ msgstr "correspondem ao PADRÃO, senão a lista dos comandos internos é exibida." +#~ msgstr "" +#~ "correspondem ao PADRÃO, senão a lista dos comandos internos é exibida." #~ msgid "Display the history list with line numbers. Lines listed with" -#~ msgstr "Exibe a lista histórica com os números das linhas. Linhas contendo um" +#~ msgstr "" +#~ "Exibe a lista histórica com os números das linhas. Linhas contendo um" #~ msgid "with a `*' have been modified. Argument of N says to list only" #~ msgstr "`*' foram modificadas. O argumento N faz listar somente as últimas" @@ -6326,14 +6708,19 @@ msgstr "" #~ msgid "the last N lines. The -c option causes the history list to be" #~ msgstr "N linhas. A opção -c faz com que a lista histórica seja apagada" -#~ msgid "cleared by deleting all of the entries. The `-w' option writes out the" -#~ msgstr "removendo todas as entradas. A opção `-w' escreve o histórico atual no" +#~ msgid "" +#~ "cleared by deleting all of the entries. The `-w' option writes out the" +#~ msgstr "" +#~ "removendo todas as entradas. A opção `-w' escreve o histórico atual no" -#~ msgid "current history to the history file; `-r' means to read the file and" -#~ msgstr "arquivo de histórico; A opção `-r' significa ler o arquivo e apensar seu" +#~ msgid "" +#~ "current history to the history file; `-r' means to read the file and" +#~ msgstr "" +#~ "arquivo de histórico; A opção `-r' significa ler o arquivo e apensar seu" #~ msgid "append the contents to the history list instead. `-a' means" -#~ msgstr "conteúdo à lista histórica. A opção `-a' significa apensar as linhas de" +#~ msgstr "" +#~ "conteúdo à lista histórica. A opção `-a' significa apensar as linhas de" #~ msgid "to append history lines from this session to the history file." #~ msgstr "histórico desta sessão ao arquivo de histórico." @@ -6342,82 +6729,113 @@ msgstr "" #~ msgstr "A opção `-n' faz ler todas as linhas de histórico ainda não lidas" #~ msgid "from the history file and append them to the history list. If" -#~ msgstr "do arquivo histórico, e apensá-las à lista de histórico. Se ARQUIVO" +#~ msgstr "" +#~ "do arquivo histórico, e apensá-las à lista de histórico. Se ARQUIVO" #~ msgid "FILENAME is given, then that is used as the history file else" #~ msgstr "for fornecido, então este é usado como arquivo de histórico, senão" #~ msgid "if $HISTFILE has a value, that is used, else ~/.bash_history." -#~ msgstr "se $HISTFILE possui valor, este é usado, senão ~/.bash_history. Se a" +#~ msgstr "" +#~ "se $HISTFILE possui valor, este é usado, senão ~/.bash_history. Se a" #~ msgid "If the -s option is supplied, the non-option ARGs are appended to" -#~ msgstr "opção -s for fornecida, os ARGs, que não forem opções, são apensados à" +#~ msgstr "" +#~ "opção -s for fornecida, os ARGs, que não forem opções, são apensados à" #~ msgid "the history list as a single entry. The -p option means to perform" -#~ msgstr "lista histórica como uma única entrada. A opção -p significa realizar a" +#~ msgstr "" +#~ "lista histórica como uma única entrada. A opção -p significa realizar a" -#~ msgid "history expansion on each ARG and display the result, without storing" -#~ msgstr "expansão da história em cada ARG e exibir o resultado, sem armazenar" +#~ msgid "" +#~ "history expansion on each ARG and display the result, without storing" +#~ msgstr "" +#~ "expansão da história em cada ARG e exibir o resultado, sem armazenar" #~ msgid "anything in the history list." #~ msgstr "nada na lista de histórico." #~ msgid "Lists the active jobs. The -l option lists process id's in addition" -#~ msgstr "Lista os trabalhos ativos. A opção -l lista os ID's dos processos além" +#~ msgstr "" +#~ "Lista os trabalhos ativos. A opção -l lista os ID's dos processos além" #~ msgid "to the normal information; the -p option lists process id's only." -#~ msgstr "das informações usuais; a opção -p lista somente os ID's dos processos." +#~ msgstr "" +#~ "das informações usuais; a opção -p lista somente os ID's dos processos." -#~ msgid "If -n is given, only processes that have changed status since the last" -#~ msgstr "Se -n for fornecido, somente os processos que mudaram de status desde a" +#~ msgid "" +#~ "If -n is given, only processes that have changed status since the last" +#~ msgstr "" +#~ "Se -n for fornecido, somente os processos que mudaram de status desde a" -#~ msgid "notification are printed. JOBSPEC restricts output to that job. The" -#~ msgstr "última notificação são exibidos. JOB-ESPECIFICADO restringe a saída a este" +#~ msgid "" +#~ "notification are printed. JOBSPEC restricts output to that job. The" +#~ msgstr "" +#~ "última notificação são exibidos. JOB-ESPECIFICADO restringe a saída a " +#~ "este" #~ msgid "-r and -s options restrict output to running and stopped jobs only," -#~ msgstr "trabalho. As opções -r e -s restringem a saída apenas aos trabalhos" +#~ msgstr "" +#~ "trabalho. As opções -r e -s restringem a saída apenas aos trabalhos" #~ msgid "respectively. Without options, the status of all active jobs is" -#~ msgstr "executando e parados, respectivamente. Sem opções, o status de todos os" +#~ msgstr "" +#~ "executando e parados, respectivamente. Sem opções, o status de todos os" -#~ msgid "printed. If -x is given, COMMAND is run after all job specifications" -#~ msgstr "trabalhos ativos são exibidos. Se -x for fornecido, COMANDO é executado" +#~ msgid "" +#~ "printed. If -x is given, COMMAND is run after all job specifications" +#~ msgstr "" +#~ "trabalhos ativos são exibidos. Se -x for fornecido, COMANDO é executado" -#~ msgid "that appear in ARGS have been replaced with the process ID of that job's" -#~ msgstr "após todas as especificações de trabalho que aparecem em ARGS terem sido" +#~ msgid "" +#~ "that appear in ARGS have been replaced with the process ID of that job's" +#~ msgstr "" +#~ "após todas as especificações de trabalho que aparecem em ARGS terem sido" #~ msgid "process group leader." #~ msgstr "substituídas pelo ID do processo líder deste grupo de processos." #~ msgid "Removes each JOBSPEC argument from the table of active jobs." -#~ msgstr "Remove cada argumento JOB-ESPECIFICADO da tabela de trabalhos ativos." +#~ msgstr "" +#~ "Remove cada argumento JOB-ESPECIFICADO da tabela de trabalhos ativos." #~ msgid "Send the processes named by PID (or JOB) the signal SIGSPEC. If" -#~ msgstr "Envia ao processo identificado pelo PID (ou JOB) o sinal SIGSPEC. Se" +#~ msgstr "" +#~ "Envia ao processo identificado pelo PID (ou JOB) o sinal SIGSPEC. Se" -#~ msgid "SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'" -#~ msgstr "SIGSPEC não estiver presente, então SIGTERM é assumido. A opção `-l'" +#~ msgid "" +#~ "SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'" +#~ msgstr "" +#~ "SIGSPEC não estiver presente, então SIGTERM é assumido. A opção `-l'" #~ msgid "lists the signal names; if arguments follow `-l' they are assumed to" -#~ msgstr "lista os nomes dos sinais; havendo argumentos após `-l', são assumidos" +#~ msgstr "" +#~ "lista os nomes dos sinais; havendo argumentos após `-l', são assumidos" #~ msgid "be signal numbers for which names should be listed. Kill is a shell" -#~ msgstr "como sendo os números dos sinais cujos nomes devem ser exibidos. Kill" +#~ msgstr "" +#~ "como sendo os números dos sinais cujos nomes devem ser exibidos. Kill" #~ msgid "builtin for two reasons: it allows job IDs to be used instead of" -#~ msgstr "é um comando interno por duas razões: permite o uso do ID do trabalho em" +#~ msgstr "" +#~ "é um comando interno por duas razões: permite o uso do ID do trabalho em" #~ msgid "process IDs, and, if you have reached the limit on processes that" -#~ msgstr "vez do ID do processo e, caso tenha sido atingido o limite de processos que" +#~ msgstr "" +#~ "vez do ID do processo e, caso tenha sido atingido o limite de processos " +#~ "que" -#~ msgid "you can create, you don't have to start a process to kill another one." -#~ msgstr "podem ser criados, não é necessário um novo processo para remover outro." +#~ msgid "" +#~ "you can create, you don't have to start a process to kill another one." +#~ msgstr "" +#~ "podem ser criados, não é necessário um novo processo para remover outro." #~ msgid "Each ARG is an arithmetic expression to be evaluated. Evaluation" #~ msgstr "Cada ARG é uma expressão aritmética a ser avaliada. A avaliação é" #~ msgid "is done in long integers with no check for overflow, though division" -#~ msgstr "feita usando inteiros longos sem verificar estouro, embora a divisão" +#~ msgstr "" +#~ "feita usando inteiros longos sem verificar estouro, embora a divisão" #~ msgid "by 0 is trapped and flagged as an error. The following list of" #~ msgstr "por 0 seja capturada e indicada como erro. A lista abaixo está" @@ -6489,7 +6907,8 @@ msgstr "" #~ msgstr "ativo para ser usada em uma expressão." #~ msgid "Operators are evaluated in order of precedence. Sub-expressions in" -#~ msgstr "Os operadores são avaliados em ordem de precedência. Sub-expressões" +#~ msgstr "" +#~ "Os operadores são avaliados em ordem de precedência. Sub-expressões" #~ msgid "parentheses are evaluated first and may override the precedence" #~ msgstr "entre parênteses são avaliadas primeiro e podem prevalecer sobre as" @@ -6506,53 +6925,76 @@ msgstr "" #~ msgid "One line is read from the standard input, and the first word is" #~ msgstr "Uma linha é lida a partir da entrada padrão, e a primeira palavra é" -#~ msgid "assigned to the first NAME, the second word to the second NAME, and so" -#~ msgstr "atribuída ao primeiro NOME, a segunda ao segundo NOME, e assim por diante," +#~ msgid "" +#~ "assigned to the first NAME, the second word to the second NAME, and so" +#~ msgstr "" +#~ "atribuída ao primeiro NOME, a segunda ao segundo NOME, e assim por diante," -#~ msgid "on, with leftover words assigned to the last NAME. Only the characters" -#~ msgstr "com as palavras restantes atribuídas ao último NOME. Somente os caracteres" +#~ msgid "" +#~ "on, with leftover words assigned to the last NAME. Only the characters" +#~ msgstr "" +#~ "com as palavras restantes atribuídas ao último NOME. Somente os " +#~ "caracteres" #~ msgid "found in $IFS are recognized as word delimiters. The return code is" -#~ msgstr "encontrados em $IFS são reconhecidos como delimitadores. O código de retorno" +#~ msgstr "" +#~ "encontrados em $IFS são reconhecidos como delimitadores. O código de " +#~ "retorno" -#~ msgid "zero, unless end-of-file is encountered. If no NAMEs are supplied, the" -#~ msgstr "é zero, a menos que EOF seja encontrado. Se nenhum NOME for fornecido," +#~ msgid "" +#~ "zero, unless end-of-file is encountered. If no NAMEs are supplied, the" +#~ msgstr "" +#~ "é zero, a menos que EOF seja encontrado. Se nenhum NOME for fornecido," -#~ msgid "line read is stored in the REPLY variable. If the -r option is given," -#~ msgstr "a linha lida é armazenada na variável REPLY. Se a opção -r for fornecida," +#~ msgid "" +#~ "line read is stored in the REPLY variable. If the -r option is given," +#~ msgstr "" +#~ "a linha lida é armazenada na variável REPLY. Se a opção -r for fornecida," #~ msgid "this signifies `raw' input, and backslash escaping is disabled. If" -#~ msgstr "significa entrada `textual', desabilitando a interpretação da contrabarra." +#~ msgstr "" +#~ "significa entrada `textual', desabilitando a interpretação da contrabarra." #~ msgid "the `-p' option is supplied, the string supplied as an argument is" -#~ msgstr "Se a opção `-p' for fornecida a MENSAGEM fornecida como argumento é exibida," +#~ msgstr "" +#~ "Se a opção `-p' for fornecida a MENSAGEM fornecida como argumento é " +#~ "exibida," -#~ msgid "output without a trailing newline before attempting to read. If -a is" -#~ msgstr "sem o caracter de nova linha, antes de efetuar a leitura. Se a opção -a" +#~ msgid "" +#~ "output without a trailing newline before attempting to read. If -a is" +#~ msgstr "" +#~ "sem o caracter de nova linha, antes de efetuar a leitura. Se a opção -a" -#~ msgid "supplied, the words read are assigned to sequential indices of ARRAY," -#~ msgstr "for fornecida, as palavras lidas são atribuídas aos índices seqüenciais" +#~ msgid "" +#~ "supplied, the words read are assigned to sequential indices of ARRAY," +#~ msgstr "" +#~ "for fornecida, as palavras lidas são atribuídas aos índices seqüenciais" #~ msgid "starting at zero. If -e is supplied and the shell is interactive," -#~ msgstr "do ARRAY, começando por zero. Se a opção -e for fornecida, e a shell for" +#~ msgstr "" +#~ "do ARRAY, começando por zero. Se a opção -e for fornecida, e a shell for" #~ msgid "readline is used to obtain the line." #~ msgstr "interativa, `readline' é utilizado para ler a linha." -#~ msgid "Causes a function to exit with the return value specified by N. If N" +#~ msgid "" +#~ "Causes a function to exit with the return value specified by N. If N" #~ msgstr "Faz a função terminar com o valor de retorno especificado por N." #~ msgid "is omitted, the return status is that of the last command." #~ msgstr "Se N for omitido, retorna o status do último comando executado." #~ msgid " -a Mark variables which are modified or created for export." -#~ msgstr " -a Marcar para exportação as variáveis que são criadas ou modificadas." +#~ msgstr "" +#~ " -a Marcar para exportação as variáveis que são criadas ou " +#~ "modificadas." #~ msgid " -b Notify of job termination immediately." #~ msgstr " -b Notificar imediatamente o término do trabalho." #~ msgid " -e Exit immediately if a command exits with a non-zero status." -#~ msgstr " -e Terminar imediatamente se um comando terminar com status != 0." +#~ msgstr "" +#~ " -e Terminar imediatamente se um comando terminar com status != 0." #~ msgid " -f Disable file name generation (globbing)." #~ msgstr " -f Desabilitar a geração de nome de arquivo (metacaracteres)." @@ -6560,14 +7002,16 @@ msgstr "" #~ msgid " -h Remember the location of commands as they are looked up." #~ msgstr " -h Lembrar da localização dos comandos ao procurá-los." -#~ msgid " -i Force the shell to be an \"interactive\" one. Interactive shells" +#~ msgid "" +#~ " -i Force the shell to be an \"interactive\" one. Interactive shells" #~ msgstr " -i Forçar a shell ser do tipo \"interativa\". `Shells'" #~ msgid " always read `~/.bashrc' on startup." #~ msgstr " interativas sempre lêem `~/.bashrc' ao iniciar." #~ msgid " -k All assignment arguments are placed in the environment for a" -#~ msgstr " -k Todos os argumentos de atribuição são colocados no ambiente," +#~ msgstr "" +#~ " -k Todos os argumentos de atribuição são colocados no ambiente," #~ msgid " command, not just those that precede the command name." #~ msgstr " e não somente os que precedem o nome do comando." @@ -6591,7 +7035,8 @@ msgstr "" #~ msgstr " braceexpand o mesmo que -B" #~ msgid " emacs use an emacs-style line editing interface" -#~ msgstr " emacs usar interface de edição de linha estilo emacs" +#~ msgstr "" +#~ " emacs usar interface de edição de linha estilo emacs" #~ msgid " errexit same as -e" #~ msgstr " errexit o mesmo que -e" @@ -6608,8 +7053,10 @@ msgstr "" #~ msgid " interactive-comments" #~ msgstr " interactive-comments" -#~ msgid " allow comments to appear in interactive commands" -#~ msgstr " permite comentários em comandos interativos" +#~ msgid "" +#~ " allow comments to appear in interactive commands" +#~ msgstr "" +#~ " permite comentários em comandos interativos" #~ msgid " keyword same as -k" #~ msgstr " keyword o mesmo que -k" @@ -6638,11 +7085,15 @@ msgstr "" #~ msgid " physical same as -P" #~ msgstr " physical o mesmo que -P" -#~ msgid " posix change the behavior of bash where the default" -#~ msgstr " posix mudar o comportamento do `bash' onde o padrão" +#~ msgid "" +#~ " posix change the behavior of bash where the default" +#~ msgstr "" +#~ " posix mudar o comportamento do `bash' onde o padrão" -#~ msgid " operation differs from the 1003.2 standard to" -#~ msgstr " for diferente do padrão 1003.2, para tornar" +#~ msgid "" +#~ " operation differs from the 1003.2 standard to" +#~ msgstr "" +#~ " for diferente do padrão 1003.2, para tornar" #~ msgid " match the standard" #~ msgstr " igual ao padrão" @@ -6654,19 +7105,26 @@ msgstr "" #~ msgstr " verbose o mesmo que -v" #~ msgid " vi use a vi-style line editing interface" -#~ msgstr " vi usar interface de edição de linha estilo vi" +#~ msgstr "" +#~ " vi usar interface de edição de linha estilo vi" #~ msgid " xtrace same as -x" #~ msgstr " xtrace o mesmo que -x" -#~ msgid " -p Turned on whenever the real and effective user ids do not match." -#~ msgstr " -p Habilitado sempre que o usuário real e efetivo forem diferentes." +#~ msgid "" +#~ " -p Turned on whenever the real and effective user ids do not match." +#~ msgstr "" +#~ " -p Habilitado sempre que o usuário real e efetivo forem diferentes." #~ msgid " Disables processing of the $ENV file and importing of shell" -#~ msgstr " Desabilita o processamento do arquivo $ENV e importação das funções" +#~ msgstr "" +#~ " Desabilita o processamento do arquivo $ENV e importação das " +#~ "funções" -#~ msgid " functions. Turning this option off causes the effective uid and" -#~ msgstr " da shell. Desabilitando esta opção faz com que o `uid' e `gid'" +#~ msgid "" +#~ " functions. Turning this option off causes the effective uid and" +#~ msgstr "" +#~ " da shell. Desabilitando esta opção faz com que o `uid' e `gid'" #~ msgid " gid to be set to the real uid and gid." #~ msgstr " efetivos sejam feitos o mesmo que o `uid' e `gid' reais." @@ -6675,7 +7133,8 @@ msgstr "" #~ msgstr " -t Sair após ler e executar um comando." #~ msgid " -u Treat unset variables as an error when substituting." -#~ msgstr " -u Tratar como erro as variáveis não inicializadas na substituição." +#~ msgstr "" +#~ " -u Tratar como erro as variáveis não inicializadas na substituição." #~ msgid " -v Print shell input lines as they are read." #~ msgstr " -v Exibir as linhas de entrada da shell ao lê-las." @@ -6708,10 +7167,13 @@ msgstr "" #~ msgstr "Usando + em vez de - faz com que as opções sejam desabilitadas. As" #~ msgid "flags can also be used upon invocation of the shell. The current" -#~ msgstr "opções também podem ser usadas na chamada da shell. O conjunto atual" +#~ msgstr "" +#~ "opções também podem ser usadas na chamada da shell. O conjunto atual" -#~ msgid "set of flags may be found in $-. The remaining n ARGs are positional" -#~ msgstr "de opções pode ser encontrado em $-. Os n ARGs restantes são parâmetros" +#~ msgid "" +#~ "set of flags may be found in $-. The remaining n ARGs are positional" +#~ msgstr "" +#~ "de opções pode ser encontrado em $-. Os n ARGs restantes são parâmetros" #~ msgid "parameters and are assigned, in order, to $1, $2, .. $n. If no" #~ msgstr "posicionais e são atribuídos, em ordem, a $1, $2, .. $n. Se nenhum" @@ -6720,10 +7182,12 @@ msgstr "" #~ msgstr "ARG for fornecido, todas as variáveis da shell são exibidas." #~ msgid "For each NAME, remove the corresponding variable or function. Given" -#~ msgstr "Para cada NOME, remove a variável ou a função correspondente. Usando-se a" +#~ msgstr "" +#~ "Para cada NOME, remove a variável ou a função correspondente. Usando-se a" #~ msgid "the `-v', unset will only act on variables. Given the `-f' flag," -#~ msgstr "opção `-v', `unset' atua somente nas variáveis. Usando-se a opção `-f'" +#~ msgstr "" +#~ "opção `-v', `unset' atua somente nas variáveis. Usando-se a opção `-f'" #~ msgid "unset will only act on functions. With neither flag, unset first" #~ msgstr "`unset' atua somente nas funções. Sem nenhuma opção, inicialmente" @@ -6731,26 +7195,32 @@ msgstr "" #~ msgid "tries to unset a variable, and if that fails, then tries to unset a" #~ msgstr "`unset' tenta remover uma variável e, se falhar, tenta remover uma" -#~ msgid "function. Some variables (such as PATH and IFS) cannot be unset; also" -#~ msgstr "função. Algumas variáveis (como PATH e IFS) não podem ser removidas." +#~ msgid "" +#~ "function. Some variables (such as PATH and IFS) cannot be unset; also" +#~ msgstr "" +#~ "função. Algumas variáveis (como PATH e IFS) não podem ser removidas." #~ msgid "see readonly." #~ msgstr "Veja também o comando `readonly'." #~ msgid "NAMEs are marked for automatic export to the environment of" -#~ msgstr "NOMEs são marcados para serem automaticamente exportados para o ambiente" +#~ msgstr "" +#~ "NOMEs são marcados para serem automaticamente exportados para o ambiente" #~ msgid "subsequently executed commands. If the -f option is given," #~ msgstr "dos comando executados a seguir. Se a opção -f for fornecida," #~ msgid "the NAMEs refer to functions. If no NAMEs are given, or if `-p'" -#~ msgstr "os NOMEs se referem a funções. Se nenhum nome for fornecido, ou se `-p'" +#~ msgstr "" +#~ "os NOMEs se referem a funções. Se nenhum nome for fornecido, ou se `-p'" #~ msgid "is given, a list of all names that are exported in this shell is" -#~ msgstr "for usado, uma lista com todos os nomes que são exportados nesta shell é" +#~ msgstr "" +#~ "for usado, uma lista com todos os nomes que são exportados nesta shell é" #~ msgid "printed. An argument of `-n' says to remove the export property" -#~ msgstr "exibida. O argumento `-n' faz remover a propriedade de exportação dos" +#~ msgstr "" +#~ "exibida. O argumento `-n' faz remover a propriedade de exportação dos" #~ msgid "from subsequent NAMEs. An argument of `--' disables further option" #~ msgstr "NOMEs subseqüentes. O argumento `--' desabilita o processamento de" @@ -6758,29 +7228,40 @@ msgstr "" #~ msgid "processing." #~ msgstr "opções posteriores." -#~ msgid "The given NAMEs are marked readonly and the values of these NAMEs may" -#~ msgstr "Os NOMEs são marcados como somente para leitura, e os valores destes" +#~ msgid "" +#~ "The given NAMEs are marked readonly and the values of these NAMEs may" +#~ msgstr "" +#~ "Os NOMEs são marcados como somente para leitura, e os valores destes" #~ msgid "not be changed by subsequent assignment. If the -f option is given," -#~ msgstr "NOMEs não poderão ser alterados por novas atribuições. Se a opção -f for" +#~ msgstr "" +#~ "NOMEs não poderão ser alterados por novas atribuições. Se a opção -f for" #~ msgid "then functions corresponding to the NAMEs are so marked. If no" -#~ msgstr "fornecida, as funções correspondentes a NOMEs também são marcadas. Sem" +#~ msgstr "" +#~ "fornecida, as funções correspondentes a NOMEs também são marcadas. Sem" -#~ msgid "arguments are given, or if `-p' is given, a list of all readonly names" -#~ msgstr "nenhum argumento, ou se `-p' for usado, uma lista com todos os nomes" +#~ msgid "" +#~ "arguments are given, or if `-p' is given, a list of all readonly names" +#~ msgstr "" +#~ "nenhum argumento, ou se `-p' for usado, uma lista com todos os nomes" -#~ msgid "is printed. An argument of `-n' says to remove the readonly property" -#~ msgstr "somente para leitura é exibida. O argumento `-n' remove a propriedade" +#~ msgid "" +#~ "is printed. An argument of `-n' says to remove the readonly property" +#~ msgstr "" +#~ "somente para leitura é exibida. O argumento `-n' remove a propriedade" #~ msgid "from subsequent NAMEs. The `-a' option means to treat each NAME as" #~ msgstr "somente para leitura. A opção `-a' faz tratar cada NOME como uma" #~ msgid "an array variable. An argument of `--' disables further option" -#~ msgstr "variável tipo array. Um argumento `--' desabilita o processamento de" +#~ msgstr "" +#~ "variável tipo array. Um argumento `--' desabilita o processamento de" -#~ msgid "The positional parameters from $N+1 ... are renamed to $1 ... If N is" -#~ msgstr "Os parâmetros posicionais a partir de $N+1 ... são deslocados para $1 ..." +#~ msgid "" +#~ "The positional parameters from $N+1 ... are renamed to $1 ... If N is" +#~ msgstr "" +#~ "Os parâmetros posicionais a partir de $N+1 ... são deslocados para $1 ..." #~ msgid "not given, it is assumed to be 1." #~ msgstr "Se N não for especificado, o valor 1 é assumido ($2 vira $1 ...)." @@ -6792,25 +7273,31 @@ msgstr "" #~ msgstr "$PATH são usados para encontrar o diretório contendo o ARQUIVO." #~ msgid "Suspend the execution of this shell until it receives a SIGCONT" -#~ msgstr "Suspender a execução desta shell até que o sinal SIGCONT seja recebido." +#~ msgstr "" +#~ "Suspender a execução desta shell até que o sinal SIGCONT seja recebido." #~ msgid "signal. The `-f' if specified says not to complain about this" #~ msgstr "Se a opção `-f' for especificada indica para não reclamar sobre ser" #~ msgid "being a login shell if it is; just suspend anyway." -#~ msgstr "uma `shell de login', caso seja; simplesmente suspender de qualquer forma." +#~ msgstr "" +#~ "uma `shell de login', caso seja; simplesmente suspender de qualquer forma." #~ msgid "Exits with a status of 0 (trueness) or 1 (falseness) depending on" -#~ msgstr "Termina com status 0 (verdadeiro) ou 1 (falso) conforme EXPR for avaliada." +#~ msgstr "" +#~ "Termina com status 0 (verdadeiro) ou 1 (falso) conforme EXPR for avaliada." #~ msgid "the evaluation of EXPR. Expressions may be unary or binary. Unary" -#~ msgstr "As expressões podem ser unárias ou binárias. As expressões unárias são" +#~ msgstr "" +#~ "As expressões podem ser unárias ou binárias. As expressões unárias são" #~ msgid "expressions are often used to examine the status of a file. There" -#~ msgstr "muito usadas para examinar o status de um arquivo. Existem, também," +#~ msgstr "" +#~ "muito usadas para examinar o status de um arquivo. Existem, também," #~ msgid "are string operators as well, and numeric comparison operators." -#~ msgstr "operadores para cadeias de caracteres (strings) e comparações numéricas." +#~ msgstr "" +#~ "operadores para cadeias de caracteres (strings) e comparações numéricas." #~ msgid "File operators:" #~ msgstr "Operadores para arquivos:" @@ -6819,7 +7306,8 @@ msgstr "" #~ msgstr " -b ARQUIVO Verdade se o arquivo for do tipo especial de bloco." #~ msgid " -c FILE True if file is character special." -#~ msgstr " -c ARQUIVO Verdade se o arquivo for do tipo especial de caracter." +#~ msgstr "" +#~ " -c ARQUIVO Verdade se o arquivo for do tipo especial de caracter." #~ msgid " -d FILE True if file is a directory." #~ msgstr " -d ARQUIVO Verdade se o arquivo for um diretório." @@ -6831,10 +7319,12 @@ msgstr "" #~ msgstr " -f ARQUIVO Verdade se o arquivo existir e for do tipo regular." #~ msgid " -g FILE True if file is set-group-id." -#~ msgstr " -g ARQUIVO Verdade se o arquivo tiver o bit \"set-group-id\" ativo." +#~ msgstr "" +#~ " -g ARQUIVO Verdade se o arquivo tiver o bit \"set-group-id\" ativo." #~ msgid " -h FILE True if file is a symbolic link. Use \"-L\"." -#~ msgstr " -h ARQUIVO Verdade se arquivo for um vínculo simbólico. Usar \"-L\"." +#~ msgstr "" +#~ " -h ARQUIVO Verdade se arquivo for um vínculo simbólico. Usar \"-L\"." #~ msgid " -L FILE True if file is a symbolic link." #~ msgstr " -L ARQUIVO Verdade se o arquivo for um vínculo simbólico." @@ -6846,7 +7336,8 @@ msgstr "" #~ msgstr " -p ARQUIVO Verdade se o arquivo for um `named pipe'." #~ msgid " -r FILE True if file is readable by you." -#~ msgstr " -r ARQUIVO Verdade se você tiver autorização para ler o arquivo." +#~ msgstr "" +#~ " -r ARQUIVO Verdade se você tiver autorização para ler o arquivo." #~ msgid " -s FILE True if file exists and is not empty." #~ msgstr " -s ARQUIVO Verdade se o arquivo existir e não estiver vazio." @@ -6860,19 +7351,26 @@ msgstr "" #~ " em um terminal." #~ msgid " -u FILE True if the file is set-user-id." -#~ msgstr " -u ARQUIVO Verdade se o arquivo tiver o bit \"set-user-id\" ativo." +#~ msgstr "" +#~ " -u ARQUIVO Verdade se o arquivo tiver o bit \"set-user-id\" ativo." #~ msgid " -w FILE True if the file is writable by you." -#~ msgstr " -w ARQUIVO Verdade se você tiver autorização para escrever no arquivo." +#~ msgstr "" +#~ " -w ARQUIVO Verdade se você tiver autorização para escrever no " +#~ "arquivo." #~ msgid " -x FILE True if the file is executable by you." -#~ msgstr " -x ARQUIVO Verdade se você tiver autorização para executar o arquivo." +#~ msgstr "" +#~ " -x ARQUIVO Verdade se você tiver autorização para executar o arquivo." #~ msgid " -O FILE True if the file is effectively owned by you." -#~ msgstr " -O ARQUIVO Verdade se o arquivo pertencer ao seu usuário efetivo." +#~ msgstr "" +#~ " -O ARQUIVO Verdade se o arquivo pertencer ao seu usuário efetivo." -#~ msgid " -G FILE True if the file is effectively owned by your group." -#~ msgstr " -G ARQUIVO Verdade se o arquivo pertencer ao seu grupo efetivo." +#~ msgid "" +#~ " -G FILE True if the file is effectively owned by your group." +#~ msgstr "" +#~ " -G ARQUIVO Verdade se o arquivo pertencer ao seu grupo efetivo." #~ msgid " FILE1 -nt FILE2 True if file1 is newer than (according to" #~ msgstr " ARQ1 -nt ARQ2 Verdade se ARQ1 for mais novo (conforme a data" @@ -6915,14 +7413,18 @@ msgstr "" #~ msgid " STRING1 < STRING2" #~ msgstr " STRING1 < STRING2" -#~ msgid " True if STRING1 sorts before STRING2 lexicographically" -#~ msgstr " Verdade se STRING1 tiver ordenação anterior à STRING2." +#~ msgid "" +#~ " True if STRING1 sorts before STRING2 lexicographically" +#~ msgstr "" +#~ " Verdade se STRING1 tiver ordenação anterior à STRING2." #~ msgid " STRING1 > STRING2" #~ msgstr " STRING1 > STRING2" -#~ msgid " True if STRING1 sorts after STRING2 lexicographically" -#~ msgstr " Verdade se STRING1 tiver ordenação posterior à STRING2." +#~ msgid "" +#~ " True if STRING1 sorts after STRING2 lexicographically" +#~ msgstr "" +#~ " Verdade se STRING1 tiver ordenação posterior à STRING2." #~ msgid "Other operators:" #~ msgstr "Outros operadores:" @@ -6943,9 +7445,11 @@ msgstr "" #~ msgstr " -lt, -le, -gt, ou -ge." #~ msgid "Arithmetic binary operators return true if ARG1 is equal, not-equal," -#~ msgstr "Operadores aritméticos binários retornam verdadeiro se ARG1 for igual," +#~ msgstr "" +#~ "Operadores aritméticos binários retornam verdadeiro se ARG1 for igual," -#~ msgid "less-than, less-than-or-equal, greater-than, or greater-than-or-equal" +#~ msgid "" +#~ "less-than, less-than-or-equal, greater-than, or greater-than-or-equal" #~ msgstr "diferente, menor, menor ou igual, maior, ou maior ou igual do que" #~ msgid "than ARG2." @@ -6958,46 +7462,60 @@ msgstr "" #~ msgstr "argumento deve ser o literal `]', para fechar o `[' de abertura." #~ msgid "Print the accumulated user and system times for processes run from" -#~ msgstr "Exibe os tempos acumulados do usuário e do sistema para os processos" +#~ msgstr "" +#~ "Exibe os tempos acumulados do usuário e do sistema para os processos" #~ msgid "the shell." #~ msgstr "executados por esta shell." #~ msgid "The command ARG is to be read and executed when the shell receives" -#~ msgstr "O comando em ARG é para ser lido e executado quando a shell receber o(s)" +#~ msgstr "" +#~ "O comando em ARG é para ser lido e executado quando a shell receber o(s)" #~ msgid "signal(s) SIGNAL_SPEC. If ARG is absent all specified signals are" -#~ msgstr "sinal(is) SINAL-ESPEC. Se ARG for omitido, todos os sinais especificados" +#~ msgstr "" +#~ "sinal(is) SINAL-ESPEC. Se ARG for omitido, todos os sinais especificados" #~ msgid "reset to their original values. If ARG is the null string each" -#~ msgstr "retornam aos seus valores originais. Se ARG for uma string nula, cada" +#~ msgstr "" +#~ "retornam aos seus valores originais. Se ARG for uma string nula, cada" #~ msgid "SIGNAL_SPEC is ignored by the shell and by the commands it invokes." -#~ msgstr "SINAL-ESPEC é ignorado pela shell e pelos comandos chamados por ela." +#~ msgstr "" +#~ "SINAL-ESPEC é ignorado pela shell e pelos comandos chamados por ela." #~ msgid "If SIGNAL_SPEC is EXIT (0) the command ARG is executed on exit from" -#~ msgstr "Se SINAL-ESPEC for EXIT (0) o comando em ARG é executado na saída da" +#~ msgstr "" +#~ "Se SINAL-ESPEC for EXIT (0) o comando em ARG é executado na saída da" #~ msgid "the shell. If SIGNAL_SPEC is DEBUG, ARG is executed after every" -#~ msgstr "shell. Se SINAL-ESPEC for DEBUG, o comando em ARG é executado após cada" +#~ msgstr "" +#~ "shell. Se SINAL-ESPEC for DEBUG, o comando em ARG é executado após cada" #~ msgid "command. If ARG is `-p' then the trap commands associated with" -#~ msgstr "comando. Se ARG for `-p' então os comandos de captura associados com cada" +#~ msgstr "" +#~ "comando. Se ARG for `-p' então os comandos de captura associados com cada" #~ msgid "each SIGNAL_SPEC are displayed. If no arguments are supplied or if" #~ msgstr "SINAL-ESPEC são exibidos. Se nenhum argumento for fornecido, ou se" #~ msgid "only `-p' is given, trap prints the list of commands associated with" -#~ msgstr "somente `-p' for fornecido, é exibida a lista dos comandos associados" +#~ msgstr "" +#~ "somente `-p' for fornecido, é exibida a lista dos comandos associados" -#~ msgid "each signal number. SIGNAL_SPEC is either a signal name in " -#~ msgstr "com cada número de sinal. SINAL-ESPEC é um nome de sinal em ou" +#~ msgid "" +#~ "each signal number. SIGNAL_SPEC is either a signal name in " +#~ msgstr "" +#~ "com cada número de sinal. SINAL-ESPEC é um nome de sinal em ou" -#~ msgid "or a signal number. `trap -l' prints a list of signal names and their" -#~ msgstr "um número de sinal. `trap -l' exibe a lista de nomes de sinais com seus" +#~ msgid "" +#~ "or a signal number. `trap -l' prints a list of signal names and their" +#~ msgstr "" +#~ "um número de sinal. `trap -l' exibe a lista de nomes de sinais com seus" #~ msgid "corresponding numbers. Note that a signal can be sent to the shell" -#~ msgstr "números correspondentes. Note que o sinal pode ser enviado para a shell" +#~ msgstr "" +#~ "números correspondentes. Note que o sinal pode ser enviado para a shell" #~ msgid "with \"kill -signal $$\"." #~ msgstr "através do comando \"kill -SINAL $$\"." @@ -7006,13 +7524,19 @@ msgstr "" #~ msgstr "Para cada NOME, indica como este deve ser interpretado caso seja" #~ msgid "If the -t option is used, returns a single word which is one of" -#~ msgstr "Se a opção -t for fornecida, `type' retorna uma única palavra dentre" +#~ msgstr "" +#~ "Se a opção -t for fornecida, `type' retorna uma única palavra dentre" -#~ msgid "`alias', `keyword', `function', `builtin', `file' or `', if NAME is an" -#~ msgstr "`alias', `keyword', `function', `builtin', `file' ou `', se NOME for um" +#~ msgid "" +#~ "`alias', `keyword', `function', `builtin', `file' or `', if NAME is an" +#~ msgstr "" +#~ "`alias', `keyword', `function', `builtin', `file' ou `', se NOME for um" -#~ msgid "alias, shell reserved word, shell function, shell builtin, disk file," -#~ msgstr "alias, uma palavra reservada, função ou comando interno da shell, um arquivo" +#~ msgid "" +#~ "alias, shell reserved word, shell function, shell builtin, disk file," +#~ msgstr "" +#~ "alias, uma palavra reservada, função ou comando interno da shell, um " +#~ "arquivo" #~ msgid "or unfound, respectively." #~ msgstr "em disco, ou não for encontrado, respectivamente." @@ -7026,8 +7550,10 @@ msgstr "" #~ msgid "If the -a flag is used, displays all of the places that contain an" #~ msgstr "Se a opção -a for fornecida, exibe todos os locais que contém um" -#~ msgid "executable named `file'. This includes aliases and functions, if and" -#~ msgstr "arquivo executável chamado `ARQUIVO', incluindo os aliases e funções," +#~ msgid "" +#~ "executable named `file'. This includes aliases and functions, if and" +#~ msgstr "" +#~ "arquivo executável chamado `ARQUIVO', incluindo os aliases e funções," #~ msgid "only if the -p flag is not also used." #~ msgstr "mas somente se a opção -p não for fornecida conjuntamente." @@ -7039,10 +7565,12 @@ msgstr "" #~ msgstr "-a, -p, and -t, respectivamente." #~ msgid "Ulimit provides control over the resources available to processes" -#~ msgstr "Ulimit estabelece controle sobre os recursos disponíveis para os processos" +#~ msgstr "" +#~ "Ulimit estabelece controle sobre os recursos disponíveis para os processos" #~ msgid "started by the shell, on systems that allow such control. If an" -#~ msgstr "iniciados por esta shell, em sistemas que permitem estes controles. Se uma" +#~ msgstr "" +#~ "iniciados por esta shell, em sistemas que permitem estes controles. Se uma" #~ msgid "option is given, it is interpreted as follows:" #~ msgstr "opção for fornecida, é interpretada como mostrado a seguir:" @@ -7057,13 +7585,15 @@ msgstr "" #~ msgstr " -a\ttodos os limites correntes são informados" #~ msgid " -c\tthe maximum size of core files created" -#~ msgstr " -c\to tamanho máximo para os arquivos de imagem do núcleo criados" +#~ msgstr "" +#~ " -c\to tamanho máximo para os arquivos de imagem do núcleo criados" #~ msgid " -d\tthe maximum size of a process's data segment" #~ msgstr " -d\to tamanho máximo do segmento de dados de um processo" #~ msgid " -m\tthe maximum resident set size" -#~ msgstr " -m\to tamanho máximo do conjunto de processos residentes em memória" +#~ msgstr "" +#~ " -m\to tamanho máximo do conjunto de processos residentes em memória" #~ msgid " -s\tthe maximum stack size" #~ msgstr " -s\to tamanho máximo da pilha" @@ -7087,13 +7617,15 @@ msgstr "" #~ msgstr " -v\to tamanho da memória virtual" #~ msgid "If LIMIT is given, it is the new value of the specified resource." -#~ msgstr "Se LIMITE for fornecido, torna-se o novo valor do recurso especificado." +#~ msgstr "" +#~ "Se LIMITE for fornecido, torna-se o novo valor do recurso especificado." #~ msgid "Otherwise, the current value of the specified resource is printed." #~ msgstr "Senão, o valor atual do recurso especificado é exibido." #~ msgid "If no option is given, then -f is assumed. Values are in 1k" -#~ msgstr "Se nenhuma opção for fornecida, então -f é assumido. Os valores são em" +#~ msgstr "" +#~ "Se nenhuma opção for fornecida, então -f é assumido. Os valores são em" #~ msgid "increments, except for -t, which is in seconds, -p, which is in" #~ msgstr "incrementos de 1k, exceto para -t, que é em segundos, -p, que é em" @@ -7104,77 +7636,101 @@ msgstr "" #~ msgid "processes." #~ msgstr "processos." -#~ msgid "The user file-creation mask is set to MODE. If MODE is omitted, or if" -#~ msgstr "MODO é atribuído à máscara de criação de arquivos do usuário. Se omitido," +#~ msgid "" +#~ "The user file-creation mask is set to MODE. If MODE is omitted, or if" +#~ msgstr "" +#~ "MODO é atribuído à máscara de criação de arquivos do usuário. Se omitido," -#~ msgid "`-S' is supplied, the current value of the mask is printed. The `-S'" -#~ msgstr "ou se `-S' for especificado, a máscara em uso é exibida. A opção `-S'" +#~ msgid "" +#~ "`-S' is supplied, the current value of the mask is printed. The `-S'" +#~ msgstr "" +#~ "ou se `-S' for especificado, a máscara em uso é exibida. A opção `-S'" -#~ msgid "option makes the output symbolic; otherwise an octal number is output." +#~ msgid "" +#~ "option makes the output symbolic; otherwise an octal number is output." #~ msgstr "exibe símbolos na saída; sem esta opção um número octal é exibido." #~ msgid "If MODE begins with a digit, it is interpreted as an octal number," -#~ msgstr "Se MODO começar por um dígito, é interpretado como sendo um número octal," +#~ msgstr "" +#~ "Se MODO começar por um dígito, é interpretado como sendo um número octal," -#~ msgid "otherwise it is a symbolic mode string like that accepted by chmod(1)." -#~ msgstr "senão devem ser caracteres simbólicos, como os aceitos por chmod(1)." +#~ msgid "" +#~ "otherwise it is a symbolic mode string like that accepted by chmod(1)." +#~ msgstr "" +#~ "senão devem ser caracteres simbólicos, como os aceitos por chmod(1)." -#~ msgid "Wait for the specified process and report its termination status. If" -#~ msgstr "Aguardar pelo processo especificado e informar seu status de término. Se N" +#~ msgid "" +#~ "Wait for the specified process and report its termination status. If" +#~ msgstr "" +#~ "Aguardar pelo processo especificado e informar seu status de término. Se N" #~ msgid "N is not given, all currently active child processes are waited for," -#~ msgstr "não for especificado, todos os processos filhos ativos são aguardados," +#~ msgstr "" +#~ "não for especificado, todos os processos filhos ativos são aguardados," #~ msgid "and the return code is zero. N may be a process ID or a job" #~ msgstr "e o código de retorno é zero. N pode ser o ID de um processo ou a" #~ msgid "specification; if a job spec is given, all processes in the job's" -#~ msgstr "especificação de um trabalho; Se for a especificação de um trabalho, todos" +#~ msgstr "" +#~ "especificação de um trabalho; Se for a especificação de um trabalho, todos" #~ msgid "pipeline are waited for." #~ msgstr "os processos presentes no `pipeline' do trabalho são aguardados." #~ msgid "and the return code is zero. N is a process ID; if it is not given," -#~ msgstr "e o código de retorno é zero. N é o ID de um processo; se N não for" +#~ msgstr "" +#~ "e o código de retorno é zero. N é o ID de um processo; se N não for" #~ msgid "all child processes of the shell are waited for." #~ msgstr "especificado, todos os processos filhos da shell são aguardados." #~ msgid "The `for' loop executes a sequence of commands for each member in a" -#~ msgstr "O laço `for' executa a seqüência de comandos para cada membro na lista de" +#~ msgstr "" +#~ "O laço `for' executa a seqüência de comandos para cada membro na lista de" -#~ msgid "list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is" -#~ msgstr "items. Se `in PALAVRAS ...;' não estiver presente, então `in \"$@\"'" +#~ msgid "" +#~ "list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is" +#~ msgstr "" +#~ "items. Se `in PALAVRAS ...;' não estiver presente, então `in \"$@\"'" -#~ msgid "assumed. For each element in WORDS, NAME is set to that element, and" -#~ msgstr "(parâmetros posicionais) é assumido. Para cada elemento em PALAVRAS, NOME" +#~ msgid "" +#~ "assumed. For each element in WORDS, NAME is set to that element, and" +#~ msgstr "" +#~ "(parâmetros posicionais) é assumido. Para cada elemento em PALAVRAS, NOME" #~ msgid "the COMMANDS are executed." #~ msgstr "assume seu valor, e os COMANDOS são executados." #~ msgid "The WORDS are expanded, generating a list of words. The" -#~ msgstr "As palavras são expandidas, gerando uma lista de palavras. O conjunto" +#~ msgstr "" +#~ "As palavras são expandidas, gerando uma lista de palavras. O conjunto" #~ msgid "set of expanded words is printed on the standard error, each" -#~ msgstr "de palavras expandidas é enviado para a saída de erro padrão, cada uma" +#~ msgstr "" +#~ "de palavras expandidas é enviado para a saída de erro padrão, cada uma" #~ msgid "preceded by a number. If `in WORDS' is not present, `in \"$@\"'" -#~ msgstr "precedida por um número. Se `in PALAVRAS' for omitido, `in \"$@\"' é" +#~ msgstr "" +#~ "precedida por um número. Se `in PALAVRAS' for omitido, `in \"$@\"' é" #~ msgid "is assumed. The PS3 prompt is then displayed and a line read" #~ msgstr "assumido. Em seguida o prompt PS3 é exibido, e uma linha é lida da" #~ msgid "from the standard input. If the line consists of the number" -#~ msgstr "entrada padrão. Se a linha consistir do número correspondente ao número" +#~ msgstr "" +#~ "entrada padrão. Se a linha consistir do número correspondente ao número" #~ msgid "corresponding to one of the displayed words, then NAME is set" #~ msgstr "de uma das palavras exibidas, então NOME é atribuído para esta" #~ msgid "to that word. If the line is empty, WORDS and the prompt are" -#~ msgstr "PALAVRA. Se a linha estiver vazia, PALAVRAS e o prompt são exibidos" +#~ msgstr "" +#~ "PALAVRA. Se a linha estiver vazia, PALAVRAS e o prompt são exibidos" #~ msgid "redisplayed. If EOF is read, the command completes. Any other" -#~ msgstr "novamente. Se EOF for lido, o comando termina. Qualquer outro valor" +#~ msgstr "" +#~ "novamente. Se EOF for lido, o comando termina. Qualquer outro valor" #~ msgid "value read causes NAME to be set to null. The line read is saved" #~ msgstr "lido faz com que NOME seja tornado nulo. A linha lida é salva" @@ -7186,28 +7742,42 @@ msgstr "" #~ msgstr "até que o comando `break' ou `return' seja executado." #~ msgid "Selectively execute COMMANDS based upon WORD matching PATTERN. The" -#~ msgstr "Executar seletivamente COMANDOS tomando por base a correspondência entre" +#~ msgstr "" +#~ "Executar seletivamente COMANDOS tomando por base a correspondência entre" #~ msgid "`|' is used to separate multiple patterns." -#~ msgstr "PALAVRA e PADRÃO. O caracter `|' é usado para separar múltiplos padrões." +#~ msgstr "" +#~ "PALAVRA e PADRÃO. O caracter `|' é usado para separar múltiplos padrões." -#~ msgid "The if COMMANDS are executed. If the exit status is zero, then the then" -#~ msgstr "Os COMANDOS `if' são executados. Se os status de saída for zero, então os" +#~ msgid "" +#~ "The if COMMANDS are executed. If the exit status is zero, then the then" +#~ msgstr "" +#~ "Os COMANDOS `if' são executados. Se os status de saída for zero, então os" -#~ msgid "COMMANDS are executed. Otherwise, each of the elif COMMANDS are executed" -#~ msgstr "COMANDOS `then' são executados, senão, os COMANDOS `elif' são executados em" +#~ msgid "" +#~ "COMMANDS are executed. Otherwise, each of the elif COMMANDS are executed" +#~ msgstr "" +#~ "COMANDOS `then' são executados, senão, os COMANDOS `elif' são executados " +#~ "em" -#~ msgid "in turn, and if the exit status is zero, the corresponding then COMMANDS" -#~ msgstr "seqüência e, se o status de saída for zero, os COMANDOS `then' associados" +#~ msgid "" +#~ "in turn, and if the exit status is zero, the corresponding then COMMANDS" +#~ msgstr "" +#~ "seqüência e, se o status de saída for zero, os COMANDOS `then' associados" -#~ msgid "are executed and the if command completes. Otherwise, the else COMMANDS" -#~ msgstr "são executados e o `if' termina. Senão, os COMANDOS da cláusula `else'" +#~ msgid "" +#~ "are executed and the if command completes. Otherwise, the else COMMANDS" +#~ msgstr "" +#~ "são executados e o `if' termina. Senão, os COMANDOS da cláusula `else'" -#~ msgid "are executed, if present. The exit status is the exit status of the last" -#~ msgstr "são executados, se houver. O status de saída é o status de saída do" +#~ msgid "" +#~ "are executed, if present. The exit status is the exit status of the last" +#~ msgstr "" +#~ "são executados, se houver. O status de saída é o status de saída do" #~ msgid "command executed, or zero if no condition tested true." -#~ msgstr "último comando executado, ou zero, se nenhuma condição for verdadeira." +#~ msgstr "" +#~ "último comando executado, ou zero, se nenhuma condição for verdadeira." #~ msgid "Expand and execute COMMANDS as long as the final command in the" #~ msgstr "Expande e executa COMANDOS enquanto o comando final nos" @@ -7234,16 +7804,22 @@ msgstr "" #~ msgstr "redirecionar todo um conjunto de comandos." #~ msgid "This is similar to the `fg' command. Resume a stopped or background" -#~ msgstr "Semelhante ao comando `fg'. Prossegue a execução de um trabalho parado ou" +#~ msgstr "" +#~ "Semelhante ao comando `fg'. Prossegue a execução de um trabalho parado ou" #~ msgid "job. If you specifiy DIGITS, then that job is used. If you specify" -#~ msgstr "em segundo plano. Se DÃGITOS for especificado, então este trabalho é usado." +#~ msgstr "" +#~ "em segundo plano. Se DÃGITOS for especificado, então este trabalho é " +#~ "usado." -#~ msgid "WORD, then the job whose name begins with WORD is used. Following the" -#~ msgstr "Se for especificado PALAVRA, o trabalho começado por PALAVRA é usado." +#~ msgid "" +#~ "WORD, then the job whose name begins with WORD is used. Following the" +#~ msgstr "" +#~ "Se for especificado PALAVRA, o trabalho começado por PALAVRA é usado." #~ msgid "job specification with a `&' places the job in the background." -#~ msgstr "Seguindo-se a especificação por um `&' põe o trabalho em segundo plano." +#~ msgstr "" +#~ "Seguindo-se a especificação por um `&' põe o trabalho em segundo plano." #~ msgid "BASH_VERSION The version numbers of this Bash." #~ msgstr "BASH_VERSION Os números da versão desta `bash'." @@ -7254,14 +7830,15 @@ msgstr "" #~ msgid "\t\twhen the argument to `cd' is not found in the current" #~ msgstr "\t\ta serem pesquisados quando o argumento para `cd' não for" -#~ msgid "\t\tdirectory." -#~ msgstr "\t\tencontrado no diretório atual." - -#~ msgid "HISTFILE The name of the file where your command history is stored." -#~ msgstr "HISTFILE O nome do arquivo onde o histórico de comandos é armazenado." +#~ msgid "" +#~ "HISTFILE The name of the file where your command history is stored." +#~ msgstr "" +#~ "HISTFILE O nome do arquivo onde o histórico de comandos é " +#~ "armazenado." #~ msgid "HISTFILESIZE The maximum number of lines this file can contain." -#~ msgstr "HISTFILESIZE O número máximo de linhas que este arquivo pode conter." +#~ msgstr "" +#~ "HISTFILESIZE O número máximo de linhas que este arquivo pode conter." #~ msgid "HISTSIZE The maximum number of history lines that a running" #~ msgstr "HISTSIZE O número máximo de linhas do histórico que uma" @@ -7270,12 +7847,16 @@ msgstr "" #~ msgstr "\t\tshell em execução pode acessar." #~ msgid "HOME The complete pathname to your login directory." -#~ msgstr "HOME O nome completo do caminho do seu diretório de login." +#~ msgstr "" +#~ "HOME O nome completo do caminho do seu diretório de login." -#~ msgid "HOSTTYPE The type of CPU this version of Bash is running under." -#~ msgstr "HOSTTYPE O tipo de CPU sob a qual esta `bash' está executando." +#~ msgid "" +#~ "HOSTTYPE The type of CPU this version of Bash is running under." +#~ msgstr "" +#~ "HOSTTYPE O tipo de CPU sob a qual esta `bash' está executando." -#~ msgid "IGNOREEOF Controls the action of the shell on receipt of an EOF" +#~ msgid "" +#~ "IGNOREEOF Controls the action of the shell on receipt of an EOF" #~ msgstr "IGNOREEOF Controla a ação da shell ao receber um caracter" #~ msgid "\t\tcharacter as the sole input. If set, then the value" @@ -7288,13 +7869,16 @@ msgstr "" #~ msgstr "\t\tde forma seguida em uma linha vazia, antes da shell terminar" #~ msgid "\t\t(default 10). When unset, EOF signifies the end of input." -#~ msgstr "\t\t(padrão 10). Caso contrário, EOF significa o fim da entrada de dados." +#~ msgstr "" +#~ "\t\t(padrão 10). Caso contrário, EOF significa o fim da entrada de dados." #~ msgid "MAILCHECK\tHow often, in seconds, Bash checks for new mail." -#~ msgstr "MAILCHECK\tFreqüência, em segundos, para a `bash' verificar novo e-mail." +#~ msgstr "" +#~ "MAILCHECK\tFreqüência, em segundos, para a `bash' verificar novo e-mail." #~ msgid "MAILPATH\tA colon-separated list of filenames which Bash checks" -#~ msgstr "MAILPATH\tUma lista, separada por dois pontos, de nomes de arquivos," +#~ msgstr "" +#~ "MAILPATH\tUma lista, separada por dois pontos, de nomes de arquivos," #~ msgid "\t\tfor new mail." #~ msgstr "\t\tnos quais a `bash' vai verificar se existe novo e-mail." @@ -7303,7 +7887,8 @@ msgstr "" #~ msgstr "OSTYPE\t\tA versão do Unix sob a qual a `bash' está executando." #~ msgid "PATH A colon-separated list of directories to search when" -#~ msgstr "PATH Uma lista, separada por dois pontos, de diretórios a" +#~ msgstr "" +#~ "PATH Uma lista, separada por dois pontos, de diretórios a" #~ msgid "\t\tlooking for commands." #~ msgstr "\t\tserem pesquisados quando os comandos forem procurados." @@ -7324,16 +7909,20 @@ msgstr "" #~ msgstr "TERM O nome do tipo de terminal em uso no momento." #~ msgid "auto_resume Non-null means a command word appearing on a line by" -#~ msgstr "auto_resume Não nulo significa que um comando aparecendo sozinho em" +#~ msgstr "" +#~ "auto_resume Não nulo significa que um comando aparecendo sozinho em" #~ msgid "\t\titself is first looked for in the list of currently" -#~ msgstr "\t\tlinha deve ser procurado primeiro na lista de trabalhos parados." +#~ msgstr "" +#~ "\t\tlinha deve ser procurado primeiro na lista de trabalhos parados." #~ msgid "\t\tstopped jobs. If found there, that job is foregrounded." -#~ msgstr "\t\tSe for encontrado na lista, o trabalho vai para o primeiro plano." +#~ msgstr "" +#~ "\t\tSe for encontrado na lista, o trabalho vai para o primeiro plano." #~ msgid "\t\tA value of `exact' means that the command word must" -#~ msgstr "\t\tO valor `exact' significa que a palavra do comando deve corresponder" +#~ msgstr "" +#~ "\t\tO valor `exact' significa que a palavra do comando deve corresponder" #~ msgid "\t\texactly match a command in the list of stopped jobs. A" #~ msgstr "\t\texatamente a um comando da lista de trabalhos parados." @@ -7345,19 +7934,23 @@ msgstr "" #~ msgstr "\t\tcorresponder a uma parte do trabalho. Qualquer outro valor" #~ msgid "\t\tthe command must be a prefix of a stopped job." -#~ msgstr "\t\tsignifica que o comando deve ser um prefixo de um trabalho parado." +#~ msgstr "" +#~ "\t\tsignifica que o comando deve ser um prefixo de um trabalho parado." #~ msgid "command_oriented_history" #~ msgstr "command_oriented_history" -#~ msgid " Non-null means to save multiple-line commands together on" -#~ msgstr " Se não for nulo significa salvar comandos com múltiplas" +#~ msgid "" +#~ " Non-null means to save multiple-line commands together on" +#~ msgstr "" +#~ " Se não for nulo significa salvar comandos com múltiplas" #~ msgid " a single history line." #~ msgstr " linhas, juntas em uma única linha do histórico." #~ msgid "histchars Characters controlling history expansion and quick" -#~ msgstr "histchars Caracteres que controlam a expansão do histórico e a" +#~ msgstr "" +#~ "histchars Caracteres que controlam a expansão do histórico e a" #~ msgid "\t\tsubstitution. The first character is the history" #~ msgstr "\t\tsubstituição rápida. O primeiro caracter é o de substituição" @@ -7372,10 +7965,12 @@ msgstr "" #~ msgstr "\t\té o de comentário do histórico, geralmente o `#'." #~ msgid "HISTCONTROL\tSet to a value of `ignorespace', it means don't enter" -#~ msgstr "HISTCONTROL\tCom valor igual a `ignorespace', significa não introduzir" +#~ msgstr "" +#~ "HISTCONTROL\tCom valor igual a `ignorespace', significa não introduzir" #~ msgid "\t\tlines which begin with a space or tab on the history" -#~ msgstr "\t\tlinhas que iniciam por espaço ou tabulação na lista de histórico." +#~ msgstr "" +#~ "\t\tlinhas que iniciam por espaço ou tabulação na lista de histórico." #~ msgid "\t\tlist. Set to a value of `ignoredups', it means don't" #~ msgstr "\t\tCom valor igual a `ignoredups', significa não introduzir linhas" @@ -7387,7 +7982,8 @@ msgstr "" #~ msgstr "\t\t`ignoreboth' significa combinar as duas opções. Remover," #~ msgid "\t\tor set to any other value than those above means to save" -#~ msgstr "\t\tou atribuir algum outro valor que não os acima, significa salvar" +#~ msgstr "" +#~ "\t\tou atribuir algum outro valor que não os acima, significa salvar" #~ msgid "\t\tall lines on the history list." #~ msgstr "\t\ttodas as linhas na lista de histórico." @@ -7396,19 +7992,22 @@ msgstr "" #~ msgstr "Adiciona o diretório no topo da pilha de diretórios, ou rotaciona a" #~ msgid "the stack, making the new top of the stack the current working" -#~ msgstr "pilha, fazendo o diretório atual de trabalho ficar no topo da pilha." +#~ msgstr "" +#~ "pilha, fazendo o diretório atual de trabalho ficar no topo da pilha." #~ msgid "directory. With no arguments, exchanges the top two directories." #~ msgstr "Sem nenhum argumento, troca os dois diretórios do topo." #~ msgid "+N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "+N\tRotaciona a pilha de tal forma que o n-ésimo diretório (contado a" +#~ msgstr "" +#~ "+N\tRotaciona a pilha de tal forma que o n-ésimo diretório (contado a" #~ msgid "\tfrom the left of the list shown by `dirs') is at the top." #~ msgstr "\tpartir da esquerda da lista exibida por `dirs') fique no topo." #~ msgid "-N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "-N\tRotaciona a pilha de tal forma que o n-ésimo diretório (contado a" +#~ msgstr "" +#~ "-N\tRotaciona a pilha de tal forma que o n-ésimo diretório (contado a" #~ msgid "\tfrom the right) is at the top." #~ msgstr "\tpartir da direita) fique no topo." @@ -7449,7 +8048,8 @@ msgstr "" #~ msgid "\tremoves the last directory, `popd -1' the next to last." #~ msgstr "\tremove o último diretório, `popd -1' o penúltimo." -#~ msgid "-n\tsuppress the normal change of directory when removing directories" +#~ msgid "" +#~ "-n\tsuppress the normal change of directory when removing directories" #~ msgstr "-n\tsuprime a troca normal de diretório ao remover-se diretórios" #~ msgid "\tfrom the stack, so only the stack is manipulated." @@ -7464,44 +8064,57 @@ msgstr "" #~ msgid "back up through the list with the `popd' command." #~ msgstr "removidos da lista através do comando `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 "A opção -l especifica que `dirs' não deve exibir a versão resumida" -#~ msgid "of directories which are relative to your home directory. This means" -#~ msgstr "dos diretórios relativos ao seu diretório `home'. Isto significa que" +#~ msgid "" +#~ "of directories which are relative to your home directory. This means" +#~ msgstr "" +#~ "dos diretórios relativos ao seu diretório `home'. Isto significa que" #~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr "`~/bin' deve ser exibido como `/home/você/bin'. A opção -v faz com que" +#~ msgstr "" +#~ "`~/bin' deve ser exibido como `/home/você/bin'. A opção -v faz com que" #~ msgid "causes `dirs' to print the directory stack with one entry per line," #~ msgstr "`dirs' exiba a pilha de diretórios com uma entrada por linha," -#~ 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 "antecedendo o nome do diretório com a sua posição na pilha. A opção" #~ msgid "flag does the same thing, but the stack position is not prepended." #~ msgstr "-p faz a mesma coisa, mas a posição na pilha não é exibida. A opção" -#~ 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 "-c limpa a pilha de diretórios apagando todos os seus elementos." -#~ msgid "+N\tdisplays the Nth entry counting from the left of the list shown by" -#~ msgstr "+N\texibe a n-ésima entrada contada a partir da esquerda da lista exibida" +#~ msgid "" +#~ "+N\tdisplays the Nth entry counting from the left of the list shown by" +#~ msgstr "" +#~ "+N\texibe a n-ésima entrada contada a partir da esquerda da lista exibida" #~ msgid "\tdirs when invoked without options, starting with zero." #~ msgstr "\tpor `dirs', quando este é chamado sem opções, começando por zero." -#~ msgid "-N\tdisplays the Nth entry counting from the right of the list shown by" -#~ msgstr "-N\texibe a n-ésima entrada contada a partir da direita da lista exibida" +#~ msgid "" +#~ "-N\tdisplays the Nth entry counting from the right of the list shown by" +#~ msgstr "" +#~ "-N\texibe a n-ésima entrada contada a partir da direita da lista exibida" #~ msgid "Toggle the values of variables controlling optional behavior." -#~ msgstr "Alterna os valores das variáveis controladoras de comportamentos opcionais." +#~ msgstr "" +#~ "Alterna os valores das variáveis controladoras de comportamentos " +#~ "opcionais." #~ msgid "The -s flag means to enable (set) each OPTNAME; the -u flag" #~ msgstr "A opção -s ativa (set) cada NOME-OPÇÃO; a opção -u desativa cada" #~ msgid "unsets each OPTNAME. The -q flag suppresses output; the exit" -#~ msgstr "NOME-OPÇÃO. A opção -q suprime a saída; o status de término indica se" +#~ msgstr "" +#~ "NOME-OPÇÃO. A opção -q suprime a saída; o status de término indica se" #~ msgid "status indicates whether each OPTNAME is set or unset. The -o" #~ msgstr "cada NOME-OPÇÃO foi ativado ou desativado A opção -o restringe" @@ -7513,7 +8126,8 @@ msgstr "" #~ msgstr "Sem nenhuma opção, ou com a opção -p, uma lista com todas as" #~ msgid "settable options is displayed, with an indication of whether or" -#~ msgstr "opções que podem ser ativadas é exibida, com indicação sobre se cada uma" +#~ msgstr "" +#~ "opções que podem ser ativadas é exibida, com indicação sobre se cada uma" #~ msgid "not each is set." #~ msgstr "das opções está ativa ou não." diff --git a/po/ro.gmo b/po/ro.gmo index df616ff173460cf3f6680d3d68579244183d5a9d..e00286162c93f749817c25121452bf33b485c2fd 100644 GIT binary patch delta 26 hcmaFh@xWt)zZkE%u7R0?p@EgLk*\n" "Language-Team: Romanian \n" @@ -19,46 +19,52 @@ msgstr "" msgid "bad array subscript" msgstr "incluziune greºitã în interval" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, fuzzy, c-format msgid "%s: invalid associative array key" msgstr "%c%c: opþiune invalidã" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nu se poate atribui cãtre index ne-numeric" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nu s-a putut crea: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "" @@ -78,7 +84,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, fuzzy, c-format msgid "`%s': invalid alias name" msgstr "%c%c: opþiune invalidã" @@ -137,11 +143,16 @@ msgstr "" msgid "HOME not set" msgstr "" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "prea mulþi parametri" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "\t\tdirectorul curent." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "" @@ -160,7 +171,7 @@ msgstr " msgid "%s: usage: " msgstr "" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, fuzzy, c-format msgid "%s: option requires an argument" msgstr "opþiunea necesitã un parametru: -" @@ -175,7 +186,7 @@ msgstr "" msgid "%s: not found" msgstr "%s: comandã negãsitã" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, fuzzy, c-format msgid "%s: invalid option" msgstr "%c%c: opþiune invalidã" @@ -185,7 +196,7 @@ msgstr "%c%c: op msgid "%s: invalid option name" msgstr "%c%c: opþiune invalidã" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, fuzzy, c-format msgid "`%s': not a valid identifier" msgstr "`%s' nu este un identificator valid" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "" @@ -313,7 +324,7 @@ msgstr "" msgid "warning: -C option may not work as you expect" msgstr "" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "" @@ -322,41 +333,47 @@ msgstr "" msgid "can only be used in a function" msgstr "poate fi folosit doar într-o funcþie, ºi face ca variabila NUME" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%c%c: opþiune invalidã" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funcþie doar în citire (readonly)" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, fuzzy, c-format msgid "%s: cannot destroy array variables in this way" msgstr "$%s: nu se poate asigna în acest mod" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "" @@ -390,7 +407,7 @@ msgstr "" msgid "%s: cannot delete: %s" msgstr "%s: nu s-a putut crea: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: este director" @@ -405,7 +422,7 @@ msgstr "%s: nu se poate executa fi msgid "%s: file is too large" msgstr "" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nu se poate executa fiºierul binar" @@ -448,7 +465,7 @@ msgstr "" msgid "%s: cannot open temp file: %s" msgstr "%s: nu s-a putut crea: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "" @@ -732,22 +749,22 @@ msgstr "eroare de leg msgid "can only `return' from a function or sourced script" msgstr "" -#: builtins/set.def:831 +#: builtins/set.def:841 #, fuzzy msgid "cannot simultaneously unset a function and a variable" msgstr "poate fi folosit doar într-o funcþie, ºi face ca variabila NUME" -#: builtins/set.def:878 +#: builtins/set.def:888 #, fuzzy, c-format msgid "%s: cannot unset" msgstr "%s: nu s-a putut crea: %s" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, fuzzy, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nu s-a putut crea: %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, fuzzy, c-format msgid "%s: not an array variable" msgstr "%s: variabilã fãrã limitã" @@ -767,11 +784,11 @@ msgstr "%s: nu s-a putut crea: %s" msgid "shift count" msgstr "shift [n]" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "" @@ -924,62 +941,67 @@ msgstr "%ca expirat a msgid "cannot redirect standard input from /dev/null: %s" msgstr "" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 #, fuzzy msgid "pipe error" msgstr "eroare de legãturã (pipe): %s" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: limitat: nu se poate specifica `/' în numele comenzilor" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: comandã negãsitã" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, fuzzy, c-format msgid "%s: %s: bad interpreter" msgstr "%s: este director" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: nu se poate executa fiºierul binar" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, fuzzy, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nu se poate duplica fd %d în fd 0: %s" @@ -1058,7 +1080,7 @@ msgstr "eroare de redirectare" msgid "getcwd: cannot access parent directories" msgstr "getwd: nu s-au putut accesa directoarele pãrinte" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "" @@ -1074,151 +1096,151 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" -#: jobs.c:1584 +#: jobs.c:1586 #, fuzzy, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: Nu existã pid-ul (%d)!\n" -#: jobs.c:1599 +#: jobs.c:1601 #, fuzzy, c-format msgid "Signal %d" msgstr "Semnal Necunoscut #%d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Finalizat" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stopat" -#: jobs.c:1622 +#: jobs.c:1624 #, fuzzy, c-format msgid "Stopped(%s)" msgstr "Stopat" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "În rulare" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Finalizat(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Ieºire %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Stare necunoscutã" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(core dumped) " -#: jobs.c:1754 +#: jobs.c:1756 #, fuzzy, c-format msgid " (wd: %s)" msgstr "(wd actual: %s)\n" -#: jobs.c:1978 +#: jobs.c:1981 #, fuzzy, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid copil (de la %d la %d) a întâlnit o eroare %d: %s\n" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, fuzzy, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "aºteptaþi: pid-ul %d nu este rezultat(child) al acestui shell" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: jobul a fost terminat" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" -#: jobs.c:3948 +#: jobs.c:3959 #, fuzzy, c-format msgid "%s: line %d: " msgstr "slot %3d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (core dumped)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd actual: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 #, fuzzy msgid "initialize_job_control: getpgrp failed" msgstr "initialize_jobs: getpgrp eºuat: %s" -#: jobs.c:4082 +#: jobs.c:4093 #, fuzzy msgid "initialize_job_control: line discipline" msgstr "initialize_jobs: disciplinã linie: %s" -#: jobs.c:4092 +#: jobs.c:4103 #, fuzzy msgid "initialize_job_control: setpgid" msgstr "initialize_jobs: getpgrp eºuat: %s" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "nici un control de job în acest shell" @@ -1371,107 +1393,114 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, fuzzy, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "EOF brusc în cãutare dupã `%c'" -#: parse.y:4279 +#: parse.y:4410 #, fuzzy msgid "unexpected EOF while looking for `]]'" msgstr "EOF brusc în cãutare dupã `%c'" -#: parse.y:4284 +#: parse.y:4415 #, fuzzy, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "eroare de sintaxã neaºteptatã lângã `%s'" -#: parse.y:4288 +#: parse.y:4419 #, fuzzy msgid "syntax error in conditional expression" msgstr "eroare de sintaxã în expresie " -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "" -#: parse.y:4370 +#: parse.y:4501 #, fuzzy msgid "expected `)'" msgstr "se aºteaptã `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "" -#: parse.y:4448 +#: parse.y:4579 #, fuzzy, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "%s: se aºteaptã operator binar" -#: parse.y:4452 +#: parse.y:4583 #, fuzzy msgid "conditional binary operator expected" msgstr "%s: se aºteaptã operator binar" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "" -#: parse.y:4489 +#: parse.y:4620 #, fuzzy, c-format msgid "unexpected token `%c' in conditional command" msgstr "`:' aºteptat dupã expresie condiþionalã" -#: parse.y:4492 +#: parse.y:4623 #, fuzzy, c-format msgid "unexpected token `%s' in conditional command" msgstr "`:' aºteptat dupã expresie condiþionalã" -#: parse.y:4496 +#: parse.y:4627 #, fuzzy, c-format msgid "unexpected token %d in conditional command" msgstr "`:' aºteptat dupã expresie condiþionalã" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "eroare de sintaxã neaºteptatã lângã `%s'" -#: parse.y:5871 +#: parse.y:6013 #, fuzzy, c-format msgid "syntax error near `%s'" msgstr "eroare de sintaxã neaºteptatã lângã `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "eroare de sintaxã: sfârºit de fiºier neaºteptat" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "eroare de sintaxã" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Folosiþi \"%s\" pentru a pãrãsi shellul.\n" -#: parse.y:6105 +#: parse.y:6247 #, fuzzy msgid "unexpected EOF while looking for matching `)'" msgstr "EOF brusc în cãutare dupã `%c'" @@ -1481,6 +1510,11 @@ msgstr "EOF brusc msgid "completion: function `%s' not found" msgstr "" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1548,44 +1582,48 @@ msgstr "" msgid "redirection error: cannot duplicate fd" msgstr "eroare de redirectare" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "" -#: shell.c:904 +#: shell.c:927 #, fuzzy, c-format msgid "%c%c: invalid option" msgstr "%c%c: opþiune invalidã" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: este director" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nu am nici un nume!" -#: shell.c:1905 +#: shell.c:1930 #, fuzzy, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU %s, versiunea %s\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1594,54 +1632,54 @@ msgstr "" "Folosire:\t%s [GNU opþiune lungã] [opþiune] ...\n" "\t%s [GNU opþiune lungã] [opþiune] fiºier script ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "opþiuni lungi GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Opþiuni ale shell-ului:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD sau -c comandã\t\t(doar invocaþie)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s sau -o opþiune\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Apãsaþi `%s -c \"set-ajutor\"' pentru mai multe informaþii despre opþiunile " "shell-ului.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Apãsaþi `%s -c ajutor' pentru mai multe informaþii despre comenzile interne " "ale shell-ului.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "" @@ -1815,98 +1853,108 @@ msgstr "Semnal Necunoscut #" msgid "Unknown Signal #%d" msgstr "Semnal Necunoscut #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, fuzzy, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "substituþie invalidã: nu existã '%s' în %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nu pot asigna listã membrului intervalului" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 #, fuzzy msgid "cannot make pipe for process substitution" msgstr "nu pot face legãturã (pipe) pentru substituþia procesului: %s" -#: subst.c:5703 +#: subst.c:5707 #, fuzzy msgid "cannot make child for process substitution" msgstr "nu pot crea un proces copil pentru substituirea procesului: %s" -#: subst.c:5753 +#: subst.c:5757 #, fuzzy, c-format msgid "cannot open named pipe %s for reading" msgstr "nu pot deschide legãtura numitã %s pentru %s: %s" -#: subst.c:5755 +#: subst.c:5759 #, fuzzy, c-format msgid "cannot open named pipe %s for writing" msgstr "nu pot deschide legãtura numitã %s pentru %s: %s" -#: subst.c:5778 +#: subst.c:5782 #, fuzzy, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nu se poate duplica legãtura numitã %s ca fd %d: %s " -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "substituþie invalidã: nu existã ')' de final în %s" + +#: subst.c:5992 #, fuzzy msgid "cannot make pipe for command substitution" msgstr "nu pot face legãturi(pipes) pentru substituþia de comenzi: %s" -#: subst.c:6027 +#: subst.c:6036 #, fuzzy msgid "cannot make child for command substitution" msgstr "nu pot crea un copil pentru substituþia de comenzi: %s" -#: subst.c:6050 +#: subst.c:6062 #, fuzzy msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nu se poate duplica legãtura (pipe) ca fd 1: %s" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: substituþie invalidã" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%c%c: opþiune invalidã" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "%c%c: opþiune invalidã" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametru null sau nesetat" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: expresie subºir < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nu se poate asigna în acest mod" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" -#: subst.c:9199 +#: subst.c:9242 #, fuzzy, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "substituþie invalidã: nu existã ')' de final în %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "" @@ -1939,7 +1987,7 @@ msgstr "%s: se a msgid "%s: binary operator expected" msgstr "%s: se aºteaptã operator binar" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "lipseºte ']'" @@ -1964,72 +2012,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: Semnal invalid %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "eroare în importarea definiþiei funcþiei pentru '%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: nu pot asigna listã membrului intervalului" -#: variables.c:3753 +#: variables.c:3043 +#, c-format +msgid "%s: assigning integer to name reference" +msgstr "" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "" -#: variables.c:4030 +#: variables.c:4218 #, fuzzy, c-format msgid "%s has null exportstr" msgstr "%s: parametru null sau nesetat" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" -#: variables.c:5426 +#: variables.c:5619 #, fuzzy, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: nu s-a putut crea: %s" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "" @@ -2720,7 +2768,7 @@ msgstr "" msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" #: builtins.c:538 @@ -3017,7 +3065,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -3811,7 +3859,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 @@ -6279,9 +6327,6 @@ msgstr "" #~ "\t\tcãuta atunci când parametrii specificaþi comenzii `cd' nu sunt gãsiþi " #~ "în" -#~ msgid "\t\tdirectory." -#~ msgstr "\t\tdirectorul curent." - #~ msgid "" #~ "HISTFILE The name of the file where your command history is stored." #~ msgstr "" diff --git a/po/ru.gmo b/po/ru.gmo index a4ea48604d7ed0ad8e529b5e6b949ac51f0a0a05..033d47503300cc5478dd9bbf6de8089f8ab990a9 100644 GIT binary patch delta 11149 zcmZA737k*W|Htuj#~91l24k#a#?D~Iz8hPObqJw|NM)C@l;~?;n=BKNkZr6<4Q8xS zvhONeC?Z=Z%2xTm-uE1jfB*k|JU%_o=iKd_bI(2ZJAS|8%QGLDpE+vyDO)Do$V+o^uD>c7{~2Clo<7peh!@1k8!AViXQR-FP`7QFsbV;X`Ls zoV{^^a~Otmf3sW#+=krCoInj-P$hfAXjFrmV1De3>d|1-ji;k}ycX5KuU&o_bCEwp z9hbGTJ+BPveoZhyrmI(iE7YM%!lW(7XFFFF%V0p9qlj-`=Bm30-I(qW)f;7j@7mP zjN1P@KI<9t59&ru>f8P8FdO+RsN>#1z1}076Ht$GI&R6z^Iu9KGZim4Gv+HU*c)HM zvMr4Hj0Q|>X-o_YQnfb5w4}a!TVqyo{MvTL#IwIsdt-vh=XA8!nU8943JzxfM*M?3 zrZbNtBX3q0CM0=i4`c4@{a-~P0~cQW3cb>aJ(+miaL%jtMAM7Kh5dJN4fgJ1%tv@2wbx9nW$fSM}9gn?k!Jf&&UpvqL!mH6lZ?K0`ejfs~Ij)m9SE zSeX13RKrI(7h`SmU2gvq4Cq-F{?gv4238{Pgv)RW>V|QtwkPdTk6;95!$mG%i#qNE zs>k;+6Bb=>fAN&YisT(pBQ^oUaoKvtUxh7HXp$U54e?dfTksd=!Mq#n31v`|us)W@ zPN)$Z@AB0yKZQA{{}&rz_KkLKB%&JL5%Xftjf}r8^bQreQ3|Rjo3R0&M>VKunjO*# zs1a+9de*O^&QC`5e23eA71iSm>2`l*)T8Q#aX101V_JYh8w$6u490J=H|m9&6XP)# zevSoj2gc(WY>x#u+x-JEoO~3j!LzX@F2xRb4%L9FTWmu+qb6x!EQJUPOHf0z1=Wzf zm>Yjb4Q23FJ7jrKH!6e0us-U%?pO^6U~628VR+9OvW-=eJU{B~ip2bS|I1KNOB$jk zO?S+Sy`6(GhCG0^a5dJ!%c#j1z1_~0XHk=@Cx+r!=QQL-W*!#7^%#Z6v7p}nyA;%; z9ADX?EP+kQtD$=S9u~$VR8Lo-MkWn40{c-7{0$3XfgSd^YFL%L5voJOunCUAc-({K z0~9jtw3DwY<|A*4(bx@jgVD~Vs3F~h1@Sa$DDUAw{1?@*0blbs0**$#&gU=|bADsz zR6JH8?~MUXs`(T&InuB)o<}{)uw8ccCZKvS*cm`wcnUVdt*D-cd~0WY9n|FOgPKcA zP;bdW=R?$6P--{huUX!4x9!Pj)U%t4QTP#R1kzDMdluE;`>00|w#OQYrO0Ej9=1h| z&~(&@uEx^%wac%g9;vsN@mI?t_u8Rpfsy1xumpaHnj4!?4LgDw;(Hu+P9!0RwqwDbtLc}1d^tz1#Y2E$Z^O%qGvEC zd23V;x;c|jH`;>Qe-1U|zd6GX+mWeKOX7eVrPi_P>DjaRKUv=TIXR zdXatD1T~Tiur*#momc&meY@U8owxQ$?)iKw}=6Lp`68@5A%cnV2WEJpPx?xwxb zSk#G|F$(XYE)f2kT}b+3HS%#-0ykq(ynxN|3AV%Lx9s&6U_tWlF#_-4@QghF%(w0P zI`*FZD6Bypa1IlK_?HUQh3nn7lk_E2{yu65*Puq^1Qx<;s0L(wz~YsgUssrqJU-Mj zUuNLf5MJWCS#o-&Y^DG!RG4R)1#{B^o*B=M?nOK^#$#Y1(7_lfrWpJ1g+dG;A& zelD1Zbuux#aXH5?soSzJ>!}A956D03)8|v%{?=S3s-IBncdW?v!@1p)@EY!vGKffvbGfSW5xf9 z&4uk)5+7g%jO@k`VoS`6LoqW>#liR?hR~5LFMFms9m(~&XCg46w`X|jrdwYx;9sb9 zKhIpu#t5Kp`0_iR8H;_fINruv3|XGx+?Wvx3V3E3J&EHv)g<3B)-!83?%@Q_tizOv zoX?FqPV&qs_MfHO$<%lG!1KQycTm@T@&Okb6v8KztDWHnvu1hbE+@S4v29_`1)jgq zv|s3%_qbs)=H$fOi)@dJp@y~wYBF}iayS7C;1?Lo^$uVM@}o;_14=LR{I{oifI=KQ z`k@}hd}L0VcWk`vG&CX@?_Lo zu^MA>7dFRx*b3u!dH(v5gssUhVLk3|s(fo(J_u{FV;MHX^Vk&2>}Ke35H`X)sI|Y! z9y=M|MCEf(7e0w2u=HNr^QEZCd1r{@g%my#3P>nFP8IA7pQ&I^S^TQaSZu=dq@uugwxTokCEtc)vF!J@XP@CqRho}w}{mC;Uv0H#b9t!7Blkay_%NqS` zXa8tagZATS47z9=HV$7PPeq-V{gP+8VOLDT?WotU319KdJw{)b+-D^^?7Pz}Y(n2OKi734E+>fW$4E-hdroHe4)HD7P z!*Cz!MrW})7W&Qe|AcFcS;@O%A-(^-Dd?Gw$9{MW-^2R1JktQTVI2O8YGCYbJ7WEu zvoVqS9jKpbIq!HzZ&eGdf=O5&cVaQTg)1=ZcSe@`o6Qt@;x#OaiTrBN2n;|iAd65d zp}Fgs=b#yCjh}}v<5#HjqVCz1uL1Ta--epJF@M@QHU#x3CnHO*Nyk7V3V%^h%WC~) zFWd$7-i|`8R4I52*I_h{xop*YRf_4-eV@Obt|0tScZ}N21YgjBpkiSq33{cSI+Jn0B1Juvt+`&Qqv#NmF-^Jxg zs7J6B^%|bXD13~512bCtqegZ+4!|5CLH^_(iLaAi$5%1XHdBy4)aj@tHi-WtfNX>M zYArxL<6K#S{NH%(P?NJ4sv+~R0&YW1(i=Dht7Z-ISHQ1ObLl!x#9X04{?~O5@>&MW zAqqMnI9rgv08K+ZinXYP<%F|oc6TGxXZQx{BaKlz+zv zSNA^UMy^~Qx081xv~`K%KRKyvsEnPUTlo^H7) zJR)9Zf1&>zqy49dW<)&od)&UY+Tk|7^=2vY3cKEd#?0DAYbFdtFPi#xe2lWD?=B*g;H%{Su%_s5ACONX?z+4xCc1Kd>R%_alMhF2-w{VC zFDKH7C;0x}5 zlKI4&my%y9St!tk(nyZTfIs0}Vl8EDe4qWV!U2~rqwX9rkNi&z#&9Bqa#lj?uD0{U z5$abG4~RDiZ7<^YxCr;+&-QOgo*~I@DsL0rDQi1PISC*78Gm__&!^lO^_-?+JGbu* z{DNG+M0*f9bPU@(;tX+BiQ7hCRrb&Fa~|C;lG$!&J&YjUqV6)5!2t1eOQigW=ugD} zS2@bHe2>op})a@IDkBL?;7wY84#0HKns|vQdlxx~wQ!K+Ii<18-9T9j! zNn2NEgVsK}{|t#I<9vJv6@Ml-FbElo`xq9f(ld67`8EI+5)l z<(q`I(oU7Xq#TYO{zWXI+*&*SvyG(w7h()`?J$~ny7i&_8%cQ$*J_eybO06GQCoZB zA?1R8#=p{0o4;m=FO z87flULE~`~QH^+=eK!eh!-yf&RrIs}{ZCfvmb-K+<|ERn8%!iqj>H&Z9p%Y*3D@I~ z`nG;b@+EPX^8ep{OdcH*5%w;7#<^V^aewN{n4gNI-e|tARdSZOk*OKyj;oQqMuoWQ hQI+CqSE*bfu4?M+qtoi9oyqCtNKWgu#Ow3M{{Y*OzxDtC delta 12050 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 BV6FfF diff --git a/po/ru.po b/po/ru.po index 30d6b48e..dd20755f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.3-rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2014-10-13 17:51+0200\n" "Last-Translator: Pavel Maryanov \n" "Language-Team: Russian \n" @@ -24,47 +24,53 @@ msgstr "" msgid "bad array subscript" msgstr "неправильный Ð¸Ð½Ð´ÐµÐºÑ Ð¼Ð°ÑÑива" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: не удаётÑÑ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ñ‚ÑŒ Ð¸Ð½Ð´ÐµÐºÑ Ð² аÑÑоциативный маÑÑив" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: недейÑтвительный ключ аÑÑоциативного маÑÑива" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: не удаётÑÑ Ð¿Ñ€Ð¸Ñвоить значение нечиÑловому индекÑу" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "" "%s: %s: необходимо иÑпользовать Ð¸Ð½Ð´ÐµÐºÑ Ð¿Ñ€Ð¸ назначении аÑÑоциативному маÑÑиву" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: не удаётÑÑ Ñоздать файл: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: не удаётÑÑ Ð½Ð°Ð¹Ñ‚Ð¸ keymap Ð´Ð»Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ñ‹" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: первый непробельный Ñимвол не ÑвлÑетÑÑ Â«\"»" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "нет закрывающего «%c» в %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: отÑутÑтвует разделитель-двоеточие" @@ -84,7 +90,7 @@ msgstr "раÑширение Ñкобки: не удаётÑÑ Ð²Ñ‹Ð´ÐµÐ»Ð¸Ñ‚ÑŒ msgid "brace expansion: failed to allocate memory for `%s'" msgstr "раÑширение Ñкобки: не удалоÑÑŒ выделить памÑть Ð´Ð»Ñ Â«%s»" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "«%s»: недопуÑтимый пÑевдоним" @@ -145,11 +151,16 @@ msgstr "" msgid "HOME not set" msgstr "Ðе задана Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ HOME" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "Ñлишком много аргументов" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "\t\tкаталоге." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Ðе задана Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ OLDPWD" @@ -168,7 +179,7 @@ msgstr "предупреждение: " msgid "%s: usage: " msgstr "%s: иÑпользование: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: Ð´Ð»Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° требуетÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚" @@ -183,7 +194,7 @@ msgstr "%s: требуетÑÑ Ñ‡Ð¸Ñловой аргумент" msgid "%s: not found" msgstr "%s: не найден" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: недопуÑтимый параметр" @@ -193,7 +204,7 @@ msgstr "%s: недопуÑтимый параметр" msgid "%s: invalid option name" msgstr "%s: недопуÑтимое название параметра" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "«%s»: Ñто недопуÑтимый идентификатор" @@ -302,7 +313,7 @@ msgid "%s: invalid action name" msgstr "%s: недопуÑтимое название дейÑтвиÑ" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: нет Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ" @@ -315,7 +326,7 @@ msgstr "предупреждение: параметр -F может работ msgid "warning: -C option may not work as you expect" msgstr "предупреждение: параметр -C может работать не так, как ожидаетÑÑ" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ðµ выполнÑет функцию завершениÑ" @@ -323,41 +334,47 @@ msgstr "ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ðµ выполнÑет функцию Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ msgid "can only be used in a function" msgstr "можно иÑпользовать только внутри функции" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: ÑÑÑ‹Ð»Ð¾Ñ‡Ð½Ð°Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð½Ðµ может быть маÑÑивом" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: переменные nameref, ÑÑылающиеÑÑ Ñами на ÑебÑ, не допуÑкаютÑÑ" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: ÐºÑ€ÑƒÐ³Ð¾Ð²Ð°Ñ ÑÑылка на имÑ" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: недопуÑтимое название переменной Ð´Ð»Ñ ÑÑылки на имÑ" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "«-f» Ð½ÐµÐ»ÑŒÐ·Ñ Ð¸Ñпользовать Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¹" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: значение функции можно только Ñчитать" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: переменные маÑÑива Ð½ÐµÐ»ÑŒÐ·Ñ ÑƒÐ½Ð¸Ñ‡Ñ‚Ð¾Ð¶Ð¸Ñ‚ÑŒ таким образом" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: не удаётÑÑ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ñ‚ÑŒ аÑÑоциативный маÑÑив в индекÑированный" @@ -391,7 +408,7 @@ msgstr "%s: не загружаетÑÑ Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑки" msgid "%s: cannot delete: %s" msgstr "%s: не удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: Ñто каталог" @@ -406,7 +423,7 @@ msgstr "%s: Ñто не обычный файл" msgid "%s: file is too large" msgstr "%s: файл Ñлишком велик" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: не удаётÑÑ Ð·Ð°Ð¿ÑƒÑтить бинарный файл" @@ -448,7 +465,7 @@ msgstr "указание журнала команд" msgid "%s: cannot open temp file: %s" msgstr "%s: не удаётÑÑ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ÑŒ временный файл: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "текущий" @@ -798,21 +815,21 @@ msgstr "ошибка чтениÑ: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "возврат можно выполнить только из функции или иÑходного Ñкрипта" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "Ð½ÐµÐ»ÑŒÐ·Ñ Ð¾Ð´Ð½Ð¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾ ÑброÑить функцию и переменную" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: не удаётÑÑ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ ÑброÑ" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: не удаётÑÑ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ ÑброÑ: %s доÑтупен только Ð´Ð»Ñ Ñ‡Ñ‚ÐµÐ½Ð¸Ñ" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: Ñто не Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð¼Ð°ÑÑива" @@ -831,11 +848,11 @@ msgstr "%s: не удаётÑÑ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ ÑброÑ" msgid "shift count" msgstr "Ñчётчик Ñмещений" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "Ð½ÐµÐ»ÑŒÐ·Ñ Ð¾Ð´Ð½Ð¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾ задать и ÑброÑить параметры командного процеÑÑора" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: недопуÑтимое название параметра командного процеÑÑора" @@ -981,62 +998,67 @@ msgstr "\\aпревышено Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð²Ð²Ð¾Ð´Ð°: auto-logou msgid "cannot redirect standard input from /dev/null: %s" msgstr "не удаётÑÑ Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ñтандартный ввод из /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: «%c»: недопуÑтимый Ñимвол форматированиÑ" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "ошибка конвейера" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: доÑтигнут макÑимальный уровень вложенноÑти функций (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: доÑтигнут макÑимальный уровень вложенноÑти функций (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: доÑтигнут макÑимальный уровень вложенноÑти функций (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "" "%s: ограниченный режим: в названиÑÑ… команд Ð½ÐµÐ»ÑŒÐ·Ñ Ð¸Ñпользовать коÑую черту «/»" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: команда не найдена" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: неверный интерпретатор" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: не удаётÑÑ Ð·Ð°Ð¿ÑƒÑтить бинарный файл: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "«%s»: Ñто ÑÐ¿ÐµÑ†Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ð²ÑÑ‚Ñ€Ð¾ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "не удаётÑÑ Ñкопировать файловый деÑкриптор %d в %d" @@ -1112,7 +1134,7 @@ msgstr "%s: ошибка выражениÑ\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: нет доÑтупа к родительÑким каталогам" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "не удаётÑÑ ÑброÑить режим nodelay Ð´Ð»Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ð³Ð¾ деÑкриптора %d" @@ -1129,152 +1151,152 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: у нового файлового деÑкриптора %d уже еÑть буфер" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "идентификатор дочернего процеÑÑа %d принадлежит запущенному заданию %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "удаление оÑтановленного Ð·Ð°Ð´Ð°Ð½Ð¸Ñ %d Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð¾Ð¹ процеÑÑа %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: процеÑÑ %5ld (%s) в the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" "add_process: процеÑÑ Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€Ð¾Ð¼ %5ld (%s) помечен как вÑÑ‘ ещё активный" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: нет процеÑÑа Ñ Ñ‚Ð°ÐºÐ¸Ð¼ идентификатором" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Сигнал %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Завершён" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "ОÑтановлен" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "ОÑтановлен (%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Запущен" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Завершён (%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Выход %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "СоÑтоÑние неизвеÑтно" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(Ñтек памÑти Ñброшен на диÑк) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (рабочий каталог: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "дочерний setpgid (%ld к %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "" "wait: процеÑÑ %ld не ÑвлÑетÑÑ Ð´Ð¾Ñ‡ÐµÑ€Ð½Ð¸Ð¼ процеÑÑом Ñтого командного процеÑÑора" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: нет запиÑей процеÑÑа %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: задание %d оÑтановлено" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: выполнение Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Ð¿Ñ€ÐµÑ€Ð²Ð°Ð½Ð¾" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: задание %d уже выполнÑетÑÑ Ð² фоновом режиме" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "" "waitchld: включаетÑÑ WNOHANG, чтобы предотвратить поÑвление неопределённого " "блока" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: Ñтрока %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (Ñтек памÑти Ñброшен на диÑк)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(рабочий каталог: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: ошибка вызова getpgrp " -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: диÑциплина Ñтроки" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "не удаётÑÑ Ð·Ð°Ð´Ð°Ñ‚ÑŒ группу процеÑÑа терминала (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Ñтот командный процеÑÑор не может управлÑть заданиÑми" @@ -1433,103 +1455,110 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "make_redirection: инÑÑ‚Ñ€ÑƒÐºÑ†Ð¸Ñ Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Â«%d» вышла за пределы диапазона" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "неожиданный конец файла во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ð¾Ð¸Ñка «%c»" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "неожиданный конец файла во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ð¾Ð¸Ñка «]]»" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° в уÑловном выражении: неожиданный маркер «%s»" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° в уÑловном выражении" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "неожиданный маркер «%s», ожидалÑÑ Â«)»" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "ожидаетÑÑ Ñимвол «)»" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "неожиданный аргумент «%s» Ð´Ð»Ñ ÑƒÑловного унарного оператора" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "неожиданный аргумент Ð´Ð»Ñ ÑƒÑловного унарного оператора" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "неожиданный маркер «%s», ожидаетÑÑ ÑƒÑловный бинарный оператор" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "ожидаетÑÑ ÑƒÑловный бинарный оператор" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "неожиданный аргумент «%s» Ð´Ð»Ñ ÑƒÑловного бинарного оператора" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "неожиданный аргумент Ð´Ð»Ñ ÑƒÑловного бинарного оператора" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "неожиданный маркер «%c» в уÑловной команде" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "неожиданный маркер «%s» в уÑловной команде" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "неожиданный маркер %d в уÑловной команде" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° Ñ€Ñдом Ñ Ð½ÐµÐ¾Ð¶Ð¸Ð´Ð°Ð½Ð½Ñ‹Ð¼ маркером «%s»" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° Ñ€Ñдом Ñ Â«%s»" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°: неожиданный конец файла" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "ÑинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Ð”Ð»Ñ Ð²Ñ‹Ñ…Ð¾Ð´Ð° из командного процеÑÑора иÑпользуйте «%s».\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "неожиданный конец файла во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ð¾Ð¸Ñка «)»" @@ -1538,6 +1567,11 @@ msgstr "неожиданный конец файла во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ð¾Ð¸Ñк msgid "completion: function `%s' not found" msgstr "completion: Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Â«%s» не найдена" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1604,44 +1638,48 @@ msgstr "/dev/(tcp|udp)/host/port не поддерживаетÑÑ Ð±ÐµÐ· Ñет msgid "redirection error: cannot duplicate fd" msgstr "ошибка перенаправлениÑ: не удаётÑÑ Ñоздать копию файлового деÑкриптора" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "не удалоÑÑŒ найти /tmp; Ñоздайте Ñтот каталог" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp должен быть допуÑтимым названием каталога" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: недопуÑтимый параметр" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "не удаётÑÑ ÑброÑить режим nodelay Ð´Ð»Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ð³Ð¾ деÑкриптора %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "не удаётÑÑ ÑброÑить режим nodelay Ð´Ð»Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ð³Ð¾ деÑкриптора %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: Ñто каталог" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ðе удаётÑÑ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ð¸Ñ‚ÑŒ название" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, верÑÐ¸Ñ %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1650,54 +1688,54 @@ msgstr "" "ИÑпользование:\t%s [длинные параметры GNU] [параметры] ...\n" "\t\t%s [длинные параметры GNU] [параметры] файл_Ñкрипта ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Длинные параметры GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Параметры командного процеÑÑора:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "" "\t-irsD или -c команда или -O короткие_параметры\t\t(только при запуÑке)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s или -o параметр\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… Ñведений о параметрах командного процеÑÑора " "введите «%s -c \"help set\"».\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… Ñведений о вÑтроенных командах введите «%s -c " "help».\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Ð”Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ñообщений об ошибках иÑпользуйте команду «bashbug».\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: недопуÑÑ‚Ð¸Ð¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ" @@ -1871,84 +1909,94 @@ msgstr "ÐеизвеÑтный номер Ñигнала" msgid "Unknown Signal #%d" msgstr "ÐеизвеÑтный номер Ñигнала %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "Ð½ÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтановка: нет закрывающей «%s» в %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: не удаётÑÑ Ð¿Ñ€Ð¸Ñвоить ÑпиÑок Ñлементу маÑÑива" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "не удаётÑÑ Ñоздать конвейер Ð´Ð»Ñ Ð¿Ð¾Ð´Ñтановки процеÑÑа" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "не удаётÑÑ Ñоздать дочерний процеÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð´Ñтановки" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "не удаётÑÑ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ÑŒ именованный конвейер %s Ð´Ð»Ñ Ñ‡Ñ‚ÐµÐ½Ð¸Ñ" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "не удаётÑÑ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ÑŒ именованный конвейер %s Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "" "не удаётÑÑ Ñкопировать именованный конвейер %s в файловый деÑкриптор %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "Ð½ÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтановка: нет закрывающей «`» в %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "не удаётÑÑ Ñоздать конвейер Ð´Ð»Ñ Ð¿Ð¾Ð´Ñтановки команды" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "не удаётÑÑ Ñоздать дочерний процеÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð´Ñтановки команды" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute: не удаётÑÑ Ñкопировать конвейер в файловый деÑкриптор 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: недопуÑтимое название переменной Ð´Ð»Ñ ÑÑылки на имÑ" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: Ð½ÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтановка" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: недопуÑтимое чиÑло Ñтрок" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "«%s»: недопуÑтимый пÑевдоним" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: параметр не задан или пуÑтой" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: заданное подÑтрокой выражение меньше нулÑ" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: такое приÑвоение невозможно" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1956,12 +2004,12 @@ msgstr "" "в будущих верÑиÑÑ… командный процеÑÑор оценка будет выполнÑтьÑÑ ÐºÐ°Ðº " "математичеÑÐºÐ°Ñ Ð¿Ð¾Ð´Ñтановка" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "Ð½ÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтановка: нет закрывающей «`» в %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "нет Ñовпадений: %s" @@ -1994,7 +2042,7 @@ msgstr "%s: ожидаетÑÑ ÑƒÐ½Ð°Ñ€Ð½Ñ‹Ð¹ оператор" msgid "%s: binary operator expected" msgstr "%s: ожидаетÑÑ Ð±Ð¸Ð½Ð°Ñ€Ð½Ñ‹Ð¹ оператор" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "отÑутÑтвует Ñимвол «]»" @@ -2020,75 +2068,75 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: неверный Ñигнал %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "ошибка импорта Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¸ Ð´Ð»Ñ Â«%s»" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "Ñлишком выÑокий уровень командного процеÑÑора (%d); ÑбраÑываетÑÑ Ð´Ð¾ 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: ÐºÑ€ÑƒÐ³Ð¾Ð²Ð°Ñ ÑÑылка на имÑ" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: в текущей облаÑти отÑутÑтвует контекÑÑ‚ функции" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: переменной не может быть приÑвоено значение" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: недопуÑтимое название переменной Ð´Ð»Ñ ÑÑылки на имÑ" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: в текущей облаÑти отÑутÑтвует контекÑÑ‚ функции" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s имеет пуÑтую exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "недопуÑтимый Ñимвол %d в exportstr Ð´Ð»Ñ %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "отÑутÑтвует «=» в exportstr Ð´Ð»Ñ %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: заголовок shell_variables не ÑвлÑетÑÑ ÐºÐ¾Ð½Ñ‚ÐµÐºÑтом функции" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: отÑутÑтвует контекÑÑ‚ global_variables" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: заголовок shell_variables не ÑвлÑетÑÑ Ð¾Ð±Ð»Ð°Ñтью временного " "окружениÑ" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: не удаётÑÑ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ÑŒ как ФÐЙЛ" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: недопуÑтимое значение Ð´Ð»Ñ Ð´ÐµÑкриптора файла траÑÑировки" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: значение ÑовмеÑтимоÑти за пределами диапазона" @@ -2997,10 +3045,11 @@ msgstr "" " ошибка приÑвоениÑ." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Указание значений переменных и атрибутов.\n" " \n" @@ -3551,7 +3600,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5093,6 +5142,7 @@ msgstr "" " Возвращает ÑоÑтоÑние поÑледней выполненной команды." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5102,7 +5152,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Создание дополнительного процеÑÑа Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¼ именем.\n" " \n" @@ -7735,9 +7785,6 @@ msgstr "" #~ msgid "\t\twhen the argument to `cd' is not found in the current" #~ msgstr "\t\tаргумент команды `cd', еÑли он не найден в текущем" -#~ msgid "\t\tdirectory." -#~ msgstr "\t\tкаталоге." - #~ msgid "" #~ "HISTFILE The name of the file where your command history is stored." #~ msgstr "HISTFILE Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°, где ÑохранÑетÑÑ Ð¸ÑÑ‚Ð¾Ñ€Ð¸Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´." diff --git a/po/sk.gmo b/po/sk.gmo index 9c362a0fbff20eeb36739f95516bd198bf5df645..5b727d5aede70b2d4809a8f76f33c583c31a4bd1 100644 GIT binary patch delta 10710 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 NPw6e|(mX5D{vV}UtgQe5 delta 11509 zcmYk>37pOK{>Sm}v1T1(%kF3F%nUQKGe%?I!?i|^aWITI)}=`iKnqFUc_Q}6KmletcVr4S&wRrm9ZyQ z!ZBFFn6Swv5lO);?}Fz%H+mjGRs1ikiPw=fn){j><6sq3#ci2*p9(;tV@Hol7cwRt_=#LntQKm?9dqX^`hdoda3}98v_VUl7=5j4+h!3I~dJgO0PpJDV#xdU* zht+T-s$dSi=^Kzk1M_0=0Am>cLs42F*dY$EdkI=#^hZ4RNsttTnJK z`FPZIosmn-M09r*s-e5FBA&rgcs)#_9Eo304=CQ!HlQ-9#r3c)w#T}d<&`hTNb=iI z4?2WB3bRO2J-?ruWJA>X*4WKwOcJV|1?}wl@NyERDcFd*@NHyYnnRw)umbtdaBoRk zjQ5d$wJX!W1GnNRjO=dA78(%jVN6rrA2s_J(}(h&{dhLlztG>9PMl91zTKWuTa=~i+iF}2j#(ZCtAs$8<`P-w6`4yiVZA@Vvyx) zt5H7GGlb>IFT{^<4Qi@V)9v+hP}i?S2X~@I_$(H~D;R;_V+ravf0C$x#im-Tp{5`f zbwe9u6ip|LVCJ#7D^G0c)F^pqXSA*c}lUWfap^DdIB)*Nc@O`Y0 z-(fv0vzEP#@u&xlK=m*UtKxjreQU7}9zeZ#E}>pLf1?&*^>uc!HbOlw+=)bU5)&{M zm!TeX6nR&eZ&CZ*dD%9wG1eyE9@Vgss0PhKb>w-}NUTTQmyZo_AF9I3sOOe?#eH7b zbS0s=AByUcAJv2Ds0XdY7Ptx3urIMA{)I8ve!Xo_3aWx9Q59}St&OvugyE{b+OI{o9~JZ$WKGwvSu}Ej!&b8`ZB8F<~3^+^0G8tQ162< zI=BM${JprI`ppdzswi)x?ZHm0NB$ye&WdcZ`AF1tt*{}Ez~VR?HFXP6BeWYU;aSg{ zSebm0*X@W_M=jpQ7}nf%C!rfgq88IsjK-(1KJN1JUwZjcn{ChIFp=|#cpv6sX2t~hw8u$OvK17jKAi1;1)ZCV^Bji6Ju~0>H+VedVCwz)9P>7@?Pjp32G6q z##VR|2Vk+S_N&}b)D+Fa#<&W#SdVUH{MF;L6m-I$a4^Pivlq-qjm$DEgKuCP+=oN( z4ypltw%Z0~U~Td*qP}SC#nSjGHo~t^@0Sug>ijpTsi~riy`ROCJ zffe7g_ccMSse!15j6%JlXJR{?hZ@Q7K@ysiv#6o|3)R!AM{SFnq4sNA)LiyJJurlN zz;m7(QA2zHBk(phz{2m_FR@Kf*T4DT6HseUBMNeWcJdB#lh!5-wBLVA@pN|@$ z*ReSsM-BOZu?jZ+(01fOY)F0rcE&~67EhrXSn4Bd0(PW+Gu2J7EzseD8(0g=9NllN*wx<^Rq-%% za2jg=FGE#$9QDATP(xYiqiG!NHl2-HGpn!(?!`vMWyoNlnTC=U<4#c=R|r+?(H6|^wnC)=P6ckBz~4OEMF z;|w0~0e(-u+aLVqRE**L50#M5@%c<~9vEN9XDVVlen&5Z{fqd_3Mw2`)Mui||Heg| zuzCrf+2v#Y-z(`eGpRUS+Gp}P@mB;l^1$tpJ~Id3#Xm8ryw7aF#0oz5%j8wmzWx)d zVk>Hu1F$?!!e4PFI+#_-=T6xRs5Oy~^|b##A))Q`E0(~rm3{7iW3}zOcK0*HG{zH|)na7FCZ#pBcyn)A^ItI6RJ; z+xYIb;y$Q~{HV2(jur5q=*QP> zRFAKt_U|3k`9i&H4{Bg6`6N^iLl}pzdY;8P@Xp12JY@efpo z+7GbXHGs{?zl80n-<%|&9+rB@UeFEOke}t{ccX^vHa5p51AQg|N1~=+1$Mv>Q1=xZ zWaqpSYLR83hI%nRfV;i(H(lBP^#BP;2B(@BCHN)RY^_`+@pRJPFNxf7EIoj~cQ})ZDE`O~np$@O@NI zuAwTbHOw}sAF81*Eme>8KGpiW<>hQ5~uCh+WK` zA7THihhr#kFoc?$JXHBxs4o~tu^L`MZ7(y%HlRK}NVXMbV-9L)Z=vol?ziues;JM5 zdZ-38N4*aQgh^--WujgU z2YtzQWTQ~`^+s*i@FWr%>V=q#Yf(L|%eN6dAOY2&WYi*@in?(=YG^lMG@eI2r+C0N zv^uKCqp&-sc;(wsi}W^fec03+Z}({%RE2|4Lz9E5Xcg+g2T%<=joMZ};A8kZy8C>B zeGx52y$60r?UMM3_JuS7wXL_KgFj%rKL5+5*cV0;YE|c;R_`{{lw9(>;hp~tdsE(Q zl3neOp|0PG`mp)h%illQ=6j+>DvT|39VX&sbpQTeFV%jLh(&!ownB}>D6E6CQ9XYJ zwN~CmP02CT_2;oG`li_3&>bD}V^AZJiyEOlsNa@9LpA76)c+Bh=rlXz52NOC7V6V( z3#y`{7=dTJ@++tZ{f!RR588%yLv6>2sPbIYui@)Zi}*ZhE!0i74W69N{#VPlQ=oVF zubvM~wTombYD(65p2I%m%Z2Qak3zlK7NHuv3^igqQ1ATHsOSEPdatz2upe?`Q5{&A z5wY9VISlpSC8%An6IH=+)QH{j@=;lK8}>pUHgfM zJn=k{N0cUJ5;}TX%pF`r?Doo49AN#qUog{^^&Jej?TKPewwc_>8XNj04D&+W{7_WrpUq}0UZc;v%;6u>x(d~Y+sq7un z4-h(jB2wKHFBH$>oI67LD0aq|ylY?a&cBIGDEo}4N^~Ri|IhBhThu+?QlU+{fBlU2 z%5PGpm(tzC@0IH}qPvGaSXNR#7(YjC&Fusqn(ncdpYM`>n`lm4QdNyfJW2S7yNC9? zj`@_e#ddCvH9`J)FFhSsd-u#B-I+Astp4v$5hBM zhxB<3^Ys#k)sl-+CKN8Q}bB&UFIj7?Uagy{Tg7=tlRLGG-kxaEBHd_9uM;KD=&Q?zGREd z2&_rGPaLMa3o)4B6UY6GoaSBk3i%C0U-F-NWgmNhuwp3q^1|KhA2u2Ul`rvbAIO8q}hivD4&Fdz4JQtAFYy&Boc_5 zocKkh-qFufpO5z*2ffU3e8@}laq0f8MA>6rnc!Qgd(_0THtBx(Q*waL-5vj5y^|uE zXiZcmQiwR>2p4bh9`+C>5&6WwIj7?@qQ0Bry-4|^q`$$s#01hYsADYg4bhxb6NUVZg@sJ8RiW5&z){*E<=y(Qqdg&Nj9vi#$Naa{_F1eHzYHi=u7B$6+7T;VuK1eCQ_DzC*7R=6ZZX-ed*;-kY47c8{<>t zKOq_s_a3Lo+#)Iv*ERnoxu6nGB%UCiB!*Hp05=iKy$7V=W5j;SbSxxt$R8wblU{|7 zs2peEKX3=}A?b_wH@3mM$6C_v`m0T%5v6r?bU^igM`jW6PYOB`O^GPt0`UX!JE3D7*E~n)$i_0n zDAL>UJ*m)}z(pzv0_Qr-PvFCNoSJou3oGn@imd?%kS2>bB#Vp zp@2U#;P{>7V0tK+9LUIU()?2b2SC|x;`36&f>zP{(bv)?$^cfXXK{}pcWkOoOK8g!c(#ECGOsBb9 zQJkLZPjmdCkUz)C_J@*E{9}27TF<3!l>xWuDQOd&jERBNRNJY+v}Igiygw^7)4Mps ziAw4}U||2GsJzIrjq-w%BO<)c#+ojH@hNG6ys7i5=fBqVWba;qOx0zp%J!#b(H?cm zpP3m-8Otzb+%t0h$7Tdm1DSzX#~Bm|IAdr-I#nm9`a^++v3W}uJNZi%N5z$ikBMvU zG;iImW!sqME%Of_sudL;l9QPo45b`d?@ab)$66C#U`l{yO!CgywmaEQMtZ>>wP;eo9#)2(pcLDuBWvp1(^Bt_Ndf25 ztkrg&F3noG)EDh*n)mMC6-#)X&Wg?d`kS%?hxPNb1hX}A6NBT@f|)rq#jnXJ*hAWD nPQg3L6Ym+n5xOVjPc7IO>kJ4^52dK8duNLZciw2_JKgSo;dRcQ diff --git a/po/sk.po b/po/sk.po index 31cc5d3e..34e5808a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2011-03-16 21:22+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -21,47 +21,53 @@ msgstr "" msgid "bad array subscript" msgstr "chybný index poľa" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: nie je možné previesÅ¥ indexované pole na asociatívne" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: neplatný kÄ¾ÃºÄ asociatívneho poľa" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: nie je možné priradiÅ¥ nenumerickému indexu" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: pri priraÄovaní asociatívnemu poľu je potrebné použiÅ¥ index" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: nie je možné vytvoriÅ¥: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: nie je možné nájsÅ¥ klávesovú mapu pre príkaz" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: prvý znak (okrem bielych znakov) nie je „\"“" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "chýba zatvárajúca „%c“ v %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: chýba oddeľovaÄ dvojbodka" @@ -81,7 +87,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%s“: neplatný názov aliasu" @@ -142,11 +148,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME nebola nastavená" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "príliÅ¡ veľa argumentov" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "na nový vrchol zásobníka." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD nebola nastavená" @@ -165,7 +176,7 @@ msgstr "upozornenie: " msgid "%s: usage: " msgstr "%s: použitie " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: voľba vyžaduje argument" @@ -180,7 +191,7 @@ msgstr "%s: vyžaduje sa numerický argument" msgid "%s: not found" msgstr "%s: nenájdené" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: neplatná voľba" @@ -190,7 +201,7 @@ msgstr "%s: neplatná voľba" msgid "%s: invalid option name" msgstr "%s: neplatný názov voľby" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%s“: nie je platný identifikátor" @@ -299,7 +310,7 @@ msgid "%s: invalid action name" msgstr "%s: neplatný názov akcie" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: chýba Å¡pecifikácia dokonÄovania" @@ -312,7 +323,7 @@ msgstr "upozornenie: voľba -F nemusí fungovaÅ¥ tak ako oÄakávate" msgid "warning: -C option may not work as you expect" msgstr "upozornenie: voľba -C nemusí fungovaÅ¥ tak ako oÄakávate" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "momentálne sa nevykonáva funkcia doplňovania" @@ -320,41 +331,47 @@ msgstr "momentálne sa nevykonáva funkcia doplňovania" msgid "can only be used in a function" msgstr "je možné použiÅ¥ iba vo funkcii" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "nie je možné použiÅ¥ „-f“ pre tvorbu funkcií" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkcia iba na Äítanie" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: nie je možné takto robiÅ¥ deÅ¡trukciu premenných polí" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: nie je možné previesÅ¥ asociatívne pole na indexované" @@ -388,7 +405,7 @@ msgstr "%s: nie je dynamicky naÄítané" msgid "%s: cannot delete: %s" msgstr "%s: nie je možné zmazaÅ¥: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: je adresár" @@ -403,7 +420,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:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: nie je možné vykonaÅ¥ binárny súbor" @@ -445,7 +462,7 @@ msgstr "Å¡pecifikácia histórie" msgid "%s: cannot open temp file: %s" msgstr "%s: nie je možné otvoriÅ¥ odkladací súbor: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "aktuálny" @@ -794,21 +811,21 @@ msgstr "" "návrat („return“) je možné vykonaÅ¥ iba z funkcie alebo skriptu vyvolaného " "pomocou „source“" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "nie je možné zároveň zruÅ¡iÅ¥ funkciu a premennú" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: nie je možné zruÅ¡iÅ¥" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: nie je možné zruÅ¡iÅ¥: len na Äítanie %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: nie je premenná poľa" @@ -827,11 +844,11 @@ msgstr "%s: nie je možné zruÅ¡iÅ¥" msgid "shift count" msgstr "posun o" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "nie je možné zároveň nastaviÅ¥ aj zruÅ¡iÅ¥ voľby shellu" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: neplatný názov voľby shellu" @@ -977,61 +994,66 @@ msgstr "\aÄas vyprÅ¡al pri Äakaní na vstup: automatické odhlásenie\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "nie je možné presmerovaÅ¥ Å¡tandardný vstup z /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: „%c“: neplatný formátovácí znak" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "chyba rúry" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, 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:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: príkaz nenájdený" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: chybný interpreter" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: nie je možné vykonaÅ¥ binárny súbor" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s je vstavaný príkaz (builtin) shellu\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "nie je možné duplikovaÅ¥ fd %d na fd %d" @@ -1106,7 +1128,7 @@ msgstr "%s: chyba výrazu\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: nie je možné pristupovaÅ¥ k rodiÄovským adresárom" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "nie j emožné resetovaÅ¥ nodelay režim fd %d" @@ -1121,148 +1143,148 @@ msgstr "nie je možné alokovaÅ¥ nový popisovaÄ súboru pre vstup bashu z fd % msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: bufer už existuje pre nový fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp rúra" -#: jobs.c:1029 +#: jobs.c:1031 #, 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:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "mažem zastavenú úlohu %d so skupinou procesu %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: proces %5ld (%s) v the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, 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:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: taký pid neexistuje" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signál %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Hotovo" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Zastavené" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Zastavené(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Beží" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Hotovo(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "UkonÄenie %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Neznámy stav" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(bol uložený výpis pamäte) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid detského procesu (%ld to %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Neexistuje záznam o procese %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: úloha %d je zastavená" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: úloha skonÄila" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: úloha %d už je v pozadí" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: zapína sa WNOHANG aby sme sa vyhli neurÄitému blokovaniu" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: riadok %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (bol uložený výpis pamäte)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd teraz: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: funkcia getpgrp zlyhala" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: riadkový systém" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "nie je možné nastaviÅ¥ skupinu procesu terminálu (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "v tomto shelli nie je riadenie úloh" @@ -1416,103 +1438,110 @@ msgstr "" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: inÅ¡trukcia presmerovania „%d“ mimo rozsahu" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "neoÄakávaný koniec súboru poÄas hľadania zodpovedajúceho „%c“" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "neoÄakávaný koniec súboru poÄas hľadania „]]“" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "chyba syntaxe v podmieneÄnom príkaze: neoÄakávaný token „%s“" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "chyba syntaxe v podmieneÄnom príkaze" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "neoÄakávaný token „%s“, oÄakávalo sa `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "oÄakávalo sa `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "neoÄakávaný argument „%s“ podmieneÄného unárneho operátora" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "neoÄakávaný argument podmieneÄného unárneho operátora" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "neoÄakávaný token „%s“, oÄakáva sa podmieneÄný binárny operátor" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "oÄakáva sa podmieneÄný binárny operátor" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "neoÄakávaný argument „%s“ v podmieneÄnom binárnom operátore" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "neoÄakávaný argument v podmieneÄnom binárnom operátore" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "neoÄakávaný token „%c“ v podmieneÄnom príkaze" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "neoÄakávaný token „%s“ v podmieneÄnom príkaze" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "neoÄakávaný token %d v podmieneÄnom príkaze" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "chyba syntaxe neÄaleko neoÄakávaného tokenu „%s“" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "chyba syntaxe neÄaleko „%s“" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "chyba syntaxe: neoÄakávaný koniec súboru" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "chyba syntaxe" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Na opustenie shellu použite „%s“.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "neoÄakávaný koniec súboru poÄas hľadania zodpovedajúceho „)“" @@ -1521,6 +1550,11 @@ msgstr "neoÄakávaný koniec súboru poÄas hľadania zodpovedajúceho „)“" msgid "completion: function `%s' not found" msgstr "dokonÄovanie: funkcia „%s“ nebola nájdená" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1587,44 +1621,48 @@ msgstr "/dev/(tcp|udp)/host/port nie je podporovaný bez podpory sietí" msgid "redirection error: cannot duplicate fd" msgstr "chyba presmerovania: nie je možné duplikovaÅ¥ fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "nenaÅ¡iel sa /tmp, vytvorte ho prosím!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp musí byÅ¥ platný názov adresára" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: neplatná voľba" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "nie j emožné resetovaÅ¥ nodelay režim fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "nie j emožné resetovaÅ¥ nodelay režim fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: je adresár" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Nemám meno!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, verzia %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1633,53 +1671,53 @@ msgstr "" "Použitie:\t%s [GNU dlhá voľba] [voľba] ...\n" "\t%s [GNU dlhá voľba] [voľba] súbor-skriptu ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU dlhé voľby:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Voľby shellu:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD alebo -c príkaz alebo -O krátka_voľba\t\t(iba vyvolanie)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s alebo -o voľba\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Napísaním „%s -c \"help set\"“ získate viac informácií o voľbách shellu.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Napísaním „%s -c help“ získate viac informácií o vstavaných príkazoch " "(builtins) shellu.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Na ohlasovanie chýb použite príkaz „bashbug“.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: neplatná operácia" @@ -1853,82 +1891,92 @@ msgstr "Neznáme Äíslo signálu" msgid "Unknown Signal #%d" msgstr "Neznámy signál #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "chybná substitúcia: chýba „%s“ v %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: nie je možné priradiÅ¥ zoznam položke poľa" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "nie je možné vytvoriÅ¥ rúru pre substitúciu procesov" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "nie je možné vytvoriÅ¥ potomka pre substitúciu procesov" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "nie je možné otvoriÅ¥ pomenovanú rúru %s na Äítanie" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "nie je možné otvoriÅ¥ pomenovanú rúru %s na zápis" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "nie je možné duplikovaÅ¥ pomenovanú rúru %s ako fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "chybná substitúcia: : v reÅ¥azci %s chýba uzatvárajúci „`â€" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "nie je možné vytvoriÅ¥ rúru pre substitúciu príkazov" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "nie je možné vytvoriÅ¥ potomka pre substitúciu príkazov" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: nie je možné duplikovaÅ¥ rúru ako fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: chybná substitúcia" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: neplatný poÄet riadkov" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "„%s“: neplatný názov aliasu" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter je null alebo nenastavený" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: výraz podreÅ¥azca < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: nie je možné vykonaÅ¥ priradenie takýmto spôsobom" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1936,12 +1984,12 @@ msgstr "" "budúce verzie shellu budú vynucovaÅ¥ vyhodnocovanie ako aritmetickú " "substitúciu" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "chybná substitúcia: : v reÅ¥azci %s chýba uzatvárajúci „`â€" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "bez zhody: %s" @@ -1974,7 +2022,7 @@ msgstr "%s: oÄakával sa unárny operátor" msgid "%s: binary operator expected" msgstr "%s: oÄakával sa binárny operátor" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "chýba „]“" @@ -1999,72 +2047,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: chybný signál %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "chyba pri importe definície funkcie „%s“" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "úroveň shellu (%d) je príliÅ¡ vysoká, nastavujem späť na 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" - -#: variables.c:2328 +#: variables.c:2413 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:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: nie je možné priradiÅ¥ popisovaÄ súboru premennej" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" + +#: variables.c:3940 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:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s má null exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "neplatný znak %d v exportstr %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "žiadne „=“ v exportstr %s" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: chýba kontext global_variables" -#: variables.c:4582 +#: variables.c:4772 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" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: nemožno otvoriÅ¥ ako SÚBOR" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: neplatná hodnota popisovaÄa trasovacieho súboru" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s je mimo rozsahu" @@ -2951,10 +2999,11 @@ msgstr "" " Vráti 0 ak nebola zadaná neplatná voľba a nevyskytla sa chyba." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "NastaviÅ¥ hodnoty a atribúty premenných.\n" " \n" @@ -3482,7 +3531,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4925,6 +4974,7 @@ msgstr "" " Vráti návratovú hodnotu posledného vykonaného príkazu." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4934,7 +4984,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "VytvoriÅ¥ koproces s názvom NÃZOV.\n" " \n" @@ -5835,9 +5885,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "odstráni vrchný adresár zo zásobníka a zmení aktuálny adresár" -#~ msgid "top directory." -#~ msgstr "na nový vrchol zásobníka." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "+N Odstráni N-túä položku (poÄítajúc zľava zoznamu," diff --git a/po/sl.gmo b/po/sl.gmo index 33608914f21da5c778e1b1237ac7fa945ce883a8..f7f1755b9451dbcdc94d12ba910c021c3a3dc967 100644 GIT binary patch delta 10705 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 delta 11496 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 diff --git a/po/sl.po b/po/sl.po index b246533e..d9e6c2b8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2012-05-29 16:17+0100\n" "Last-Translator: Klemen KoÅ¡ir \n" "Language-Team: Slovenian \n" @@ -24,47 +24,53 @@ msgstr "" msgid "bad array subscript" msgstr "slab podpis polja" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: ni mogoÄe pretvoriti zabeleženega polja v povezano polje" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: neveljaven kljuÄ povezanega polja" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: ni mogoÄe dodeliti v ne-Å¡tevilÄno kazalo" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: treba je uporabiti podpis pri dodeljevanju povezanega polja" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: ni mogoÄe ustvariti: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: ni mogoÄe najti tipkovne razvrstitve za ukaz" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: prvi znak brez presledka ni `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "brez zakljuÄka `%c' v %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: manjka loÄilnik dvopiÄja" @@ -84,7 +90,7 @@ msgstr "" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': neveljaven vzdevek" @@ -145,11 +151,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME ni nastavljen" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "preveÄ argumentov" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ni druge mape" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD ni nastavljen" @@ -168,7 +179,7 @@ msgstr "opozorilo: " msgid "%s: usage: " msgstr "%s: uporaba: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: možnost zahteva argument" @@ -183,7 +194,7 @@ msgstr "%s: zahtevan je Å¡tevni argument" msgid "%s: not found" msgstr "%s: ni mogoÄe najti" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: neveljavna možnost" @@ -193,7 +204,7 @@ msgstr "%s: neveljavna možnost" msgid "%s: invalid option name" msgstr "%s: neveljavno ime možnosti" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': neveljavno doloÄilo" @@ -302,7 +313,7 @@ msgid "%s: invalid action name" msgstr "%s: neveljavno ime dejanja" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: ni doloÄila dopolnjevanja" @@ -315,7 +326,7 @@ msgstr "Opozorilo: možnost -F morda ne bo delovala po priÄakovanjih" msgid "warning: -C option may not work as you expect" msgstr "Opozorilo: možnost -C morda ne bo delovala po priÄakovanjih" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "trenutno se ne izvaja funkcija dopolnjevanja" @@ -323,41 +334,47 @@ msgstr "trenutno se ne izvaja funkcija dopolnjevanja" msgid "can only be used in a function" msgstr "se lahko uporabi samo v funkciji" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, fuzzy, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" -#: builtins/declare.def:425 +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" +msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" + +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "ni mogoÄe uporabiti `-f' za ustvarjanje funkcij" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: funkcija samo za branje" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: na ta naÄin ni mogoÄe uniÄiti spremenljivk polja" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: ni mogoÄe pretvoriti povezanega polja v zabeleženo polje" @@ -391,7 +408,7 @@ msgstr "%s: ni dinamiÄno naloženo" msgid "%s: cannot delete: %s" msgstr "%s: ni mogoÄe izbrisati: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: je mapa" @@ -406,7 +423,7 @@ msgstr "%s: ni obiÄajna datoteka" msgid "%s: file is too large" msgstr "%s: datoteka je prevelika" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ni mogoÄe izvesti binarne datoteke" @@ -448,7 +465,7 @@ msgstr "doloÄilo zgodovine" msgid "%s: cannot open temp file: %s" msgstr "%s: ni mogoÄe odpreti zaÄasne datoteke: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "trenutno" @@ -796,21 +813,21 @@ msgstr "napaka med branjem: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "`return' lahko vrne samo iz funkcije ali skripte z izvorno kodo" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "ni mogoÄe ponastaviti funkcije in spremenljivke hkrati" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ni mogoÄe ponastaviti" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ni mogoÄe ponastaviti: samo za branje %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: ni spremenljivka polja" @@ -829,11 +846,11 @@ msgstr "%s: ni mogoÄe ponastaviti" msgid "shift count" msgstr "Å¡tetje premika" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "ni mogoÄe nastaviti in ponastaviti možnosti lupine hkrati" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: neveljavno ime možnosti lupine" @@ -979,61 +996,66 @@ msgstr "\apotekla je Äasovna omejitev med Äakanjem na vnos: samodejna odjava\n msgid "cannot redirect standard input from /dev/null: %s" msgstr "ni mogoÄe preusmeriti obiÄajnega vnosa iz /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': neveljaven znak oblike" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "napaka cevi" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: omejeno: ni mogoÄe doloÄiti `/' v imenih ukaza" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: ukaza ni mogoÄe najti" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: slab tolmaÄ" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, fuzzy, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ni mogoÄe izvesti binarne datoteke" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, fuzzy, c-format msgid "`%s': is a special builtin" msgstr "%s je vgrajena lupina\n" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "ni mogoÄe podvajati fd %d v fd %d" @@ -1108,7 +1130,7 @@ msgstr "%s: napaka izraza\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: ni mogoÄe dostopati do nadrejenih map" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "ni mogoÄe ponastaviti naÄina brez zakasnitve za fd %d" @@ -1123,148 +1145,148 @@ msgstr "ni mogoÄe dodeliti opisnika novih map za vnos bash iz fd %d" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: medpomnilnik že obstaja za nov fd %d" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: cev pgrp" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "razvejen id opravila %d se pojavi v izvajajoÄem se poslu %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "brisanje ustavljenega posla %d s skupino opravila %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: opravilo %5ld (%s) v the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: id opravila %5ld (%s) je oznaÄen kot Å¡e živ" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ni takÅ¡nega doloÄila opravila" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "KonÄano" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Zaustavljeno" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Zaustavljeno(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Se izvaja" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "KonÄano(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "KonÄaj %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Neznano stanje" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(izpis jedra) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "podrejeno opravilo setpgid (%ld v %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: opravilo z id %ld ni podrejeno opravilo te lupine" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: ni zapisov o opravilu %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: posel %d je zaustavljen" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: posel je uniÄen" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: posel %d se že izvaja v ozadju" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: vklop WNOHANG za prepreÄitev nedoloÄenosti bloka" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: vrstica %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (izpis jedra)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd zdaj: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp je spodletel" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: vrstiÄna disciplina" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "ni mogoÄe nastaviti skupine opravil terminala (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "brez nadzora posla v tej lupini" @@ -1421,103 +1443,110 @@ msgstr "here-document v vrstici %d razmejen z end-of-file (želeno `%s')" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: navodilo preusmeritve `%d' je izven dosega" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "nepriÄakovan konec datoteke med iskanjem ujemanja z `%c'" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "nepriÄakovan konec datoteke med iskanjem ujemanja z `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "skladenjska napaka v pogojnem izrazu: nepriÄakovan žeton `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "skladenjska napaka v pogojnem izrazu" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "nepriÄakovan žeton `%s', priÄakovan je bil `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "priÄakovan `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "nepriÄakovan argument `%s' do pogojnega enoslovnega operatorja" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "nepriÄakovan argument do pogojnega enoslovnega operatorja" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "nepriÄakovan žeton `%s', priÄakovan je binarni pogojni operator" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "priÄakovan je binarni pogojni operator" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "nepriÄakovan argument `%s' do pogojnega binarnega operatorja" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "nepriÄakovan argument do pogojnega binarnega operatorja" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "nepriÄakovan žeton `%c' v pogojnem ukazu" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "nepriÄakovan žeton `%s' v pogojnem ukazu" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "nepriÄakovan žeton %d v pogojnem ukazu" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "skladenjska napaka blizu nepriÄakovanega žetona `%s'" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "skladenjska napaka blizu `%s'" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "skladenjska napaka: nepriÄakovan konec datoteke" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "skladenjska napaka" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Uporabite \"%s\", Äe želite zapustiti lupino.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "nepriÄakovan konec datoteke med iskanjem ujemanja z `)'" @@ -1526,6 +1555,11 @@ msgstr "nepriÄakovan konec datoteke med iskanjem ujemanja z `)'" msgid "completion: function `%s' not found" msgstr "konÄano: funkcije `%s' ni mogoÄe najti" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1592,44 +1626,48 @@ msgstr "/dev/(tcp|udp)/host/port ni podprt brez omrežja" msgid "redirection error: cannot duplicate fd" msgstr "napaka preusmeritve: ni mogoÄe podvajati fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "ni mogoÄe najti /tmp, ustvarite ga!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp mora biti veljavno ime mape" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: neveljavna možnost" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "ni mogoÄe ponastaviti naÄina brez zakasnitve za fd %d" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "ni mogoÄe ponastaviti naÄina brez zakasnitve za fd %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: je mapa" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ni imena!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, razliÄica %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1638,50 +1676,50 @@ msgstr "" "Uporaba:\t%s [dolga možnost GNU] [možnost] ...\n" "\t%s [dolga možnost GNU] [možnost] skriptni dokument ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Dolge možnosti GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Možnosti lupine:\n" -#: shell.c:1913 +#: shell.c:1938 #, fuzzy msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD ali ukaz -c ali -O shopt_option\t\t(samo sklicevanje)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ali možnost -o\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "VpiÅ¡ite `%s -c \"help set\"' za veÄ podrobnosti o možnostih lupine.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "VpiÅ¡ite `%s -c help' za veÄ podrobnosti o možnostih ukazov lupine.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "Uporabite ukaz `bashbug' za poroÄanje hroÅ¡Äev.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: neveljavno opravilo" @@ -1855,94 +1893,104 @@ msgstr "Neznan signal #" msgid "Unknown Signal #%d" msgstr "Neznan signal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "slaba zamenjava: ni zakljuÄka `%s' v %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: ni mogoÄe dodeliti seznama Älanu polja" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "ni mogoÄe ustvariti pipe za zamenjavo opravila" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "ni mogoÄe ustvariti podrejenega opravila za zamenjavo opravila" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "ni mogoÄe odpreti imenovane cevi %s za branje" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "ni mogoÄe odpreti imenovane cevi %s za pisanje" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "ni mogoÄe podvajati imenovane cevi %s kot fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "slaba zamenjava: ni zakljuÄka \"`\" v %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "ni mogoÄe ustvariti cevi za zamenjavo ukaza" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "ni mogoÄe ustvariti podrejenega opravila za zamenjavo ukaza" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: ni mogoÄe podvajati cevi kot fd 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, fuzzy, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: slaba zamenjava" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: neveljavno Å¡tetje vrstic" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': neveljaven vzdevek" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parameter je prazen ali pa ni doloÄen" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: izraz podniza < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: ni mogoÄe dodeliti na tak naÄin" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" "prihodnje razliÄice lupine bodo prisilile ocenitev kot aritmetiÄno zamenjavo" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "slaba zamenjava: ni zakljuÄka \"`\" v %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "ni ujemanja: %s" @@ -1975,7 +2023,7 @@ msgstr "%s: priÄakuje se enosnoven operator" msgid "%s: binary operator expected" msgstr "%s: priÄakuje se binarni operator" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "manjka `]'" @@ -2000,72 +2048,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: slab signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "napaka med uvozom doloÄila funkcije `%s'" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "raven lupine (%d) je previsoka, ponastavljanje na 1" -#: variables.c:1916 -#, fuzzy, c-format -msgid "%s: circular name reference" -msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: v trenutnem dosegu ni vsebine funkcije" -#: variables.c:2347 +#: variables.c:2432 #, fuzzy, c-format msgid "%s: variable may not be assigned value" msgstr "%s: ni mogoÄe dodeliti fd spremenljivki" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: v trenutnem dosegu ni vsebine funkcije" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s ima prazen exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "neveljaven znak %d v exportstr za %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "ni `=' v exportstr za %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: glava shell_variables ni vsebina funkcije" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: ni vsebine global_variables" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: glava shell_variables ni trenuten obseg okolja" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: ni mogoÄe odpreti kot DATOTEKO" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: neveljavna vrednost za opisnik sledenja datotek" -#: variables.c:5476 +#: variables.c:5669 #, fuzzy, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s izven dosega" @@ -2947,10 +2995,11 @@ msgstr "" " do napake." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Nastavi vrednosti spremenljivk in atributov.\n" " \n" @@ -3473,7 +3522,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4930,6 +4979,7 @@ msgstr "" " Vrne stanje zadnjega izvrÅ¡enega ukaza." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4939,7 +4989,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Ustvari soopravilo, imenovano IME.\n" " \n" diff --git a/po/sr.gmo b/po/sr.gmo index 387b7c938321b3d9b8e1258095f7abd2a796caf7..7b9380f51ce9d05e3e3f39f99e1ff8298beff199 100644 GIT binary patch delta 12269 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 delta 13141 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 E12u)9XaE2J diff --git a/po/sr.po b/po/sr.po index e1f53c84..9127bedc 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-4.4-beta1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2015-12-23 11:31+0200\n" "Last-Translator: МироÑлав Ðиколић \n" "Language-Team: Serbian <(nothing)>\n" @@ -21,46 +21,52 @@ msgstr "" msgid "bad array subscript" msgstr "лош Ð¸Ð½Ð´ÐµÐºÑ Ð½Ð¸Ð·Ð°" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: не могу да претворим попиÑани низ у придружив" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: неиÑправан кључ придруживог низа" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: не могу да доделим у не-бројевни попиÑ" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: мора кориÑтити Ð¸Ð½Ð´ÐµÐºÑ Ð¿Ñ€Ð¸Ð»Ð¸ÐºÐ¾Ð¼ додељивања придруживог низа" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: не могу да направим: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "баш_изврши_јуникÑ_наредбу: не могу да нађем мапу кључа за наредбу" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: први не-празан знак није \"" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "нема затварајућег „%c“ у %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: недоÑтаје раздвојник двотачке" @@ -80,7 +86,7 @@ msgstr "ширење заграде: ниÑам уÑпео да доделим msgid "brace expansion: failed to allocate memory for `%s'" msgstr "ширење заграде: ниÑам уÑпео да доделим меморију за „%s“" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "„%s“: неиÑправан назив алијаÑа" @@ -141,11 +147,16 @@ msgstr "" msgid "HOME not set" msgstr "„HOME“ није подешено" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "превише аргумената" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "нема другог директоријума" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "„OLDPWD“ није подешено" @@ -164,7 +175,7 @@ msgstr "упозорење:" msgid "%s: usage: " msgstr "%s: употреба:" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: опција захтева аргумент" @@ -179,7 +190,7 @@ msgstr "%s: потребан је бројевни аргумент" msgid "%s: not found" msgstr "%s: не поÑтоји" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: неиÑправна опција" @@ -189,7 +200,7 @@ msgstr "%s: неиÑправна опција" msgid "%s: invalid option name" msgstr "%s: неиÑправан назив опције" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "„%s“: није иÑправан одредник" @@ -298,7 +309,7 @@ msgid "%s: invalid action name" msgstr "%s: неиÑправан назив радње" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: нема одредбе довршавања" @@ -311,7 +322,7 @@ msgstr "упозорење: опција „-F“ можда неће радит msgid "warning: -C option may not work as you expect" msgstr "упозорење: опција „-C“ можда неће радити како Ñте очекивали" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "тренутно не обавља функцију довршавања" @@ -319,41 +330,47 @@ msgstr "тренутно не обавља функцију довршавања msgid "can only be used in a function" msgstr "може бити коришћено једино у функцији" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: променљива упуте не може бити низ" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: Ñамоупућивање променљиве упуте назива није дозвољено" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: кружна упута назива" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: неиÑправан назив променљиве за упуту назива" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "не можете кориÑтити „-f“ да направите функције" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: функција Ñамо за читање" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: додела низа цитираног Ñпоја је заÑтарела" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: не могу да уништим променљиве низа на овај начин" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: не могу да претворим придруживи низ у попиÑани" @@ -387,7 +404,7 @@ msgstr "%s: није динамички учитано" msgid "%s: cannot delete: %s" msgstr "%s: не могу да обришем: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: је директоријум" @@ -402,7 +419,7 @@ msgstr "%s: није обична датотека" msgid "%s: file is too large" msgstr "%s: датотека је превелика" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: не могу да извршим бинарну датотеку" @@ -444,7 +461,7 @@ msgstr "одредба иÑторијата" msgid "%s: cannot open temp file: %s" msgstr "%s: не могу да отворим привремену датотеку: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "текуће" @@ -791,21 +808,21 @@ msgstr "грешка читања: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "могу једино да „иÑпишем“ из функције или изворног ÑпиÑа" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "не могу иÑтовремено да раÑподеÑим функцију и променљиву" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: не могу да раÑподеÑим" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: не могу да раÑподеÑим: „%s“ је Ñамо за читање" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: није променљива низа" @@ -824,11 +841,11 @@ msgstr "%s: не могу да извезем" msgid "shift count" msgstr "број помака" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "не могу иÑтовремено да подеÑим и да раÑподеÑим опције шкољке" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: неиÑправан назив опције шкољке" @@ -974,61 +991,66 @@ msgstr "\aиÑтекло је време чекајући на улаз: Ñам msgid "cannot redirect standard input from /dev/null: %s" msgstr "не могу да преуÑмерим Ñтандардни улаз из „/dev/null:“: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "ЗÐПИСВРЕМЕÐÐ: „%c“: неиÑправан знак запиÑа" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "грешка Ñпојке" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "процена: премашен је највећи ниво угнежђивања процене (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: премашен је највећи ниво угнежђивања извора (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: премашен је највећи ниво угнежђивања функције (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: ограничено: не могу да наведем / у називима наредби" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: нема такве наредбе" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: лош тумач" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: не могу да извршим бинарну датотеку: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "„%s“: јеÑте поÑебна уграђеноÑÑ‚" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "не могу да удвоÑтручим „fd %d“ у „fd %d“" @@ -1103,7 +1125,7 @@ msgstr "%s: грешка израза\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: не могу да приÑтупим родитељÑком директоријуму" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "не могу да поништим режим без-кашњења за фд „%d“" @@ -1118,148 +1140,148 @@ msgstr "не могу да доделим нови опиÑник датотек msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: већ поÑтоји међумеморија за нови фд „%d“" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: „pgrp“ Ñпојка" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "иÑцепљени пиб „%d“ Ñе јавља у покренутом поÑлу „%d“" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "бришем зауÑтављени поÑао „%d“ Ñа групом процеÑа %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: Ð¿Ñ€Ð¾Ñ†ÐµÑ %5ld (%s) у Ñпојном_реду" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: пиб %5ld (%s) је означен да је још жив" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: нема таквог пиб-а" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Сигнал %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Урађен" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "ЗауÑтављен" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "ЗауÑтављен(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Покренут" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Урађен(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Изађи из „%d“" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ðепознато Ñтање" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(језгрени избачај)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "Ñетпгиб порода (%ld у %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: пиб %ld није пород ове шкољке" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ðема запиÑа о процеÑу %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: поÑао „%d“ је зауÑтављен" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: поÑао је завршио" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: поÑао „%dд је већ у позадини" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: укључујем „WNOHANG“ да избегнем неодређени блок" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: ред %d:" -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (језгрени избачај)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(„wd“ Ñада: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: није уÑпело „getpgrp“" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: диÑциплина реда" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "не могу да подеÑим групу процеÑа терминала (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "нема управљања поÑлом у овој шкољци" @@ -1412,103 +1434,110 @@ msgstr "овде-документ у %d. реду је ограничен кра msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: упутÑво преуÑмерења „%d“ је ван опÑега" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "премашен је највећи број „овде-документ“" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "неочекивани крај датотеке приликом тражења поклапања „%c“" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "неочекивани крај датотеке приликом тражења „]]“" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "Ñадржајна грешка у уÑловном изразу: неочекивани Ñимбол „%s“" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "Ñадржајна грешка у уÑловном изразу" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "неочекивани Ñимбол „%s“, очекивана је )" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "очекивана је )" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "неочекивани аргумент „%s“ уÑловном једночланом оператору" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "неочекивани аргумент уÑловном једночланом оператору" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "неочекивани Ñимбол „%s“, очекиван је уÑловни двочлани оператор" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "очекиван је уÑловни двочлани оператор" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "неочекивани аргумент „%s“ уÑловном двочланом оператору" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "неочекивани аргумент уÑловном двочланом оператору" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "неочекивани Ñимбол „%c“ у уÑловној наредби" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "неочекивани Ñимбол „%s“ у уÑловној наредби" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "неочекивани Ñимбол „%d“ у уÑловној наредби" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "Ñадржајна грешка близу неочекиваног Ñимбола „%s“" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "Ñадржајна грешка близу „%s“" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "Ñадржајна грешка: неочекивани крај датотеке" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "Ñадржајна грешка" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "КориÑтите „%s“ да напуÑтите шкољку.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "неочекивани крај датотеке приликом тражења поклапајуће )" @@ -1517,6 +1546,11 @@ msgstr "неочекивани крај датотеке приликом тра msgid "completion: function `%s' not found" msgstr "довршавање: ниÑам нашао функцију „%s“" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1583,44 +1617,48 @@ msgstr "„/dev/(tcp|udp)/домаћин/прикључник“ није под msgid "redirection error: cannot duplicate fd" msgstr "грешка преуÑмерења: не могу да удвоÑтручим фд" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "не могу да нађем „/tmp“, направите га!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "„/tmp“ мора бити иÑправан назив директоријума" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: неиÑправна опција" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "не могу да подеÑим јиб на %d: Ñтварни јиб %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "не могу да подеÑим гиб на %d: Ñтварни гиб %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: је директоријум" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Ðемам назив!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "Гну баш, издање %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1629,49 +1667,49 @@ msgstr "" "Употреба:\t%s [Гнуова дуга опција] [опција] ...\n" " \t%s [Гнуова дуга опција] [опција] датотека-ÑпиÑа ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Гнуове дуге опције:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Опције шкољке:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t„-ilrsD“ или наредба „-c“ или -O шопц_опција\t\t(призивање Ñамо)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t„-%s“ или опција „-o“\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Укуцајте „%s -c \"help set\"“ за више података о опцијама шкољке.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Укуцајте „%s -c help“ за више података о уграђеним наредбама шкољке.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "КориÑтите наредбу „bashbug“ да извеÑтите о грешкама.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Матична Ñтраница баша: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "Општа помоћ коришћења Гну Ñофтвера: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: неиÑправна операција" @@ -1845,93 +1883,103 @@ msgstr "Ðепознат Ñигнал #" msgid "Unknown Signal #%d" msgstr "Ðепознат Ñигнал #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "лоша замена: нема затварајуће „%s“ у „%s“" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: не могу да доделим ÑпиÑак члану низа" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "не могу да начиним Ñпојку за замену процеÑа" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "не могу да начиним пород за замену процеÑа" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "не могу да отворим именовану Ñпојку „%s“ за читање" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "не могу да отворим именовану Ñпојку „%s“ за пиÑање" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "не могу да удвоÑтручим именовану Ñпојку „%s“ као фд %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "лоша замена: нема затварајућег „`“ у „%s“" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "не могу да начиним Ñпојку за замену наредбе" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "не могу да начиним пород за замену наредбе" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: не могу да удвоÑтручим Ñпојку као фд 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: неиÑправан назив променљиве за упуту назива" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: лоша замена" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: неиÑправно поÑредно ширење" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: неиÑправан назив променљиве" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: параметар је ништаван или није подешен" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: израз подниÑке < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: не могу дадоделим на овај начин" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "будућа издања шкољке ће приморати процену као аритметичку замену" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "лоша замена: нема затварајућег „`“ у „%s“" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "нема поклапања: %s" @@ -1964,7 +2012,7 @@ msgstr "%s: очекиван је једночлани оператор" msgid "%s: binary operator expected" msgstr "%s: очекиван је двочлани оператор" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "недоÑтаје ]" @@ -1990,72 +2038,72 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: лош Ñигнал %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "грешка увоза одреднице функције за „%s“" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "ниво шкољке (%d) је превиÑок, поново поÑтављам на 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: кружна упута назива" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: нема Ñадржаја функције на текућем доÑегу" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: вредноÑти не може бити додељена вредноÑÑ‚" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: неиÑправан назив променљиве за упуту назива" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variable: нема Ñадржаја функције на текућем доÑегу" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s има ништавну ниÑку извоза" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "неиÑправан знак %d у ниÑци извоза за „%s“" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "нема = у ниÑци извоза за „%s“" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: глава променљивих шкољке није ÑадржајноÑÑ‚ функције" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: нема Ñадржаја општих променљивих" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: глава променљивих шкољке није привремени доÑег окружења" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: не могу да отворим као ДÐТОТЕКУ" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: неиÑправна вредноÑÑ‚ за опиÑник праћења датотеке" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: вреднÑот ÑаглаÑноÑти је ван опÑега" @@ -2941,10 +2989,11 @@ msgstr "" " не дође до грешке доделе променљиве." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Подешава вредноÑти и атрибуте променљиве.\n" " \n" @@ -3480,7 +3529,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4962,6 +5011,7 @@ msgstr "" " ИÑпиÑује Ñтање поÑледње извршене наредбе." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4971,7 +5021,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Ствара ÐºÐ¾Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾Ð´ називом ÐÐЗИВ.\n" " \n" diff --git a/po/sv.gmo b/po/sv.gmo index dc9ba746a8f89b72cce8f5053ec4511991715941..f91c55f9b54b8f6e33bce29a6ac10b83790aa932 100644 GIT binary patch delta 12265 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\n" "Language-Team: Swedish \n" @@ -22,48 +22,54 @@ msgstr "" msgid "bad array subscript" msgstr "felaktigt vektorindex" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, 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:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: ogiltig nyckel till associativ vektor" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: det gÃ¥r inte att tilldela till ickenumeriska index" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, 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" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: det gÃ¥r inte att skapa: %s" -#: bashline.c:4075 +#: bashline.c:4084 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" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: första ickeblanka tecknet är inte '\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "ingen avslutande â€%c†i %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: kolonseparator saknas" @@ -83,7 +89,7 @@ msgstr "klammerexpansion: misslyckades att allokera minne för %d element" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "klammerexpansion: misslyckades att allokera minne för â€%sâ€" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "â€%sâ€: ogiltigt aliasnamn" @@ -144,11 +150,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME är inte satt" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "för mÃ¥nga argument" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "ingen annan katalog" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD är inte satt" @@ -167,7 +178,7 @@ msgstr "varning: " msgid "%s: usage: " msgstr "%s: användning: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: flaggan kräver ett argument" @@ -182,7 +193,7 @@ msgstr "%s: numeriskt argument krävs" msgid "%s: not found" msgstr "%s: finns inte" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: ogiltig flagga" @@ -192,7 +203,7 @@ msgstr "%s: ogiltig flagga" msgid "%s: invalid option name" msgstr "%s: ogiltigt flaggnamn" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "â€%sâ€: inte en giltig identifierare" @@ -301,7 +312,7 @@ msgid "%s: invalid action name" msgstr "%s: ogiltigt Ã¥tgärdsnamn" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: ingen kompletteringsspecifikation" @@ -314,7 +325,7 @@ msgstr "varning: flaggan -F fungerar kanske inte som du väntar dig" msgid "warning: -C option may not work as you expect" msgstr "varning: flaggan -C fungerar kanske inte som du väntar dig" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "kör inte en kompletteringsfunktion" @@ -322,41 +333,47 @@ msgstr "kör inte en kompletteringsfunktion" msgid "can only be used in a function" msgstr "kan endast användas i en funktion" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: en referensvariabel kan inte vara en vektor" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: att en namnreferensvariabel självrefererar är inte tillÃ¥tet" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: cirkulär namnreferens" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: ogiltigt variabelnamn för referens" -#: builtins/declare.def:425 +#: builtins/declare.def:463 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:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: endast läsbar funktion" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: citerad sammansatt tilldelning av vektorer undanbedes" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: det gÃ¥r inte att förstöra vektorvariabler pÃ¥ detta sätt" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: det gÃ¥r inte att konvertera en associativ vektor till indexerad" @@ -390,7 +407,7 @@ msgstr "%s: inte dynamiskt laddad" msgid "%s: cannot delete: %s" msgstr "%s: kan inte ta bort: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: är en katalog" @@ -405,7 +422,7 @@ msgstr "%s: inte en normal fil" msgid "%s: file is too large" msgstr "%s: filen är för stor" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: det gÃ¥r inte att köra binär fil" @@ -447,7 +464,7 @@ msgstr "historiespecifikation" msgid "%s: cannot open temp file: %s" msgstr "%s: det gÃ¥r inte att öppna temporärfil: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "aktuell" @@ -794,21 +811,21 @@ 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" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "det gÃ¥r inte att samtidigt ta bort en funktion och en variabel" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: det gÃ¥r inte att ta bort tilldelning" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: det gÃ¥r inte att ta bort tilldelning: endast läsbar %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: inte en vektorvariabel" @@ -827,11 +844,11 @@ msgstr "%s: det gÃ¥r inte att exportera" msgid "shift count" msgstr "skiftantal" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "det gÃ¥r inte att sätta och ta bort skalflaggor samtidigt" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: ogiltigt skalflaggsnamn" @@ -977,61 +994,66 @@ msgstr "\atiden gick ut i väntan pÃ¥ indata: automatisk utloggning\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "det gÃ¥r inte att omdirigera standard in frÃ¥n /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: â€%câ€: ogiltigt formateringstecken" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "rörfel" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: maximal nästning av eval överskriden (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: maximal nästning av source överskriden (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: maximal nästning av funktioner överskriden (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, 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:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: kommandot finns inte" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: felaktig tolk" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: det gÃ¥r inte att köra binär fil: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "â€%sâ€: är en speciell inbyggd" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "det gÃ¥r inte att duplicera fb %d till fb %d" @@ -1106,7 +1128,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:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, 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" @@ -1122,148 +1144,148 @@ msgstr "" 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp rör" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "avgrenad pid %d finns i körande jobb %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "tar bort stoppat jobb %d med processgrupp %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: process %5ld (%s) i the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, 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:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ingen sÃ¥dan pid" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Signal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Klart" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Stoppad" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Stoppad(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Kör" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Klart(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Avslut %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Okänd status" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(minnesutskrift skapad) " -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (ak: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "barns setpgid (%ld till %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ingen uppgift om process %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: jobb %d är stoppat" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: jobbet har avslutat" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: jobb %d är redan i bakgrunden" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: slÃ¥r pÃ¥ WNOHANG för att undvika oändlig blockering" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: rad %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (minnesutskrift skapad)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(ak nu: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp misslyckades" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: linjedisciplin" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "det gÃ¥r inte att sätta terminalprocessgrupp (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "ingen jobbstyrning i detta skal" @@ -1417,103 +1439,110 @@ msgid "make_redirection: redirection instruction `%d' out of range" msgstr "" "make_redirection: omdirigeringsinstruktion â€%d†utanför giltigt intervall" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "maximalt antal av här-dokument överskridet" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "oväntat filslut vid sökning efter matchande â€%câ€" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "oväntat filslut vid sökning efter â€]]â€" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "syntaxfel i villkorligt uttryck: oväntad symbol â€%sâ€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "syntaxfel i villkorligt uttryck" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "oväntad symbol â€%sâ€, â€)†förväntades" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "â€)†förväntades" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "oväntat argument â€%s†till villkorlig unär operator" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "oväntat argument till villkorlig unär operator" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "oväntad symbol â€%sâ€, villkorlig binär operator förväntades" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "villkorlig binär operator förväntades" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "oväntat argument â€%s†till villkorlig binär operator" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "oväntat argument till villkorlig binär operator" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "oväntad symbol â€%c†i villkorligt kommando" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "oväntad symbol â€%s†i villkorligt kommando" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "oväntad symbol %d i villkorligt kommando" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "syntaxfel nära den oväntade symbolen â€%sâ€" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "syntaxfel nära â€%sâ€" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "syntaxfel: oväntat filslut" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "syntaxfel" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Använd â€%s†för att lämna skalet.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "oväntat filslut när matchande â€)†söktes" @@ -1522,6 +1551,11 @@ msgstr "oväntat filslut när matchande â€)†söktes" msgid "completion: function `%s' not found" msgstr "komplettering: funktion â€%s†finns inte" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1588,44 +1622,48 @@ msgstr "/dev/(tcp|udp)/host/port stöds inte utan nätverksfunktion" msgid "redirection error: cannot duplicate fd" msgstr "omdirigeringsfel: det gÃ¥r inte att duplicera fb" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "hittade inte /tmp, var god skapa!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp mÃ¥ste vara ett giltigt katalognamn" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: ogiltig flagga" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "det gÃ¥r sätta uid till %d: effektiv uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "det gÃ¥r inte att sätta gid till %d: effektiv gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: är en katalog" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Jag har inget namn!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, version %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1634,52 +1672,52 @@ msgstr "" "Användning:\t%s [GNU lÃ¥ng flagga] [flagga] ...\n" "\t\t%s [GNU lÃ¥ng flagga] [flagga] skriptfil ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU lÃ¥nga flaggor:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Skalflaggor:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD eller -c kommando eller -O shopt_flagga\t\t(bara uppstart)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s eller -o flagga\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Skriv â€%s -c 'help set'†för mer information om skalflaggor.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Skriv â€%s -c help†för mer information om inbyggda skalkommandon.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" "Använd kommandot â€bashbug†för att rapportera fel.\n" "Skicka synpunkter pÃ¥ översättningen till .\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "bash hemsida: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Allmän hjälp i att använda GNU-program: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: ogiltig operation" @@ -1853,82 +1891,92 @@ msgstr "Okänd signal nr " msgid "Unknown Signal #%d" msgstr "Okänd signal nr %d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "felaktig substitution: ingen avslutande â€%s†i %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: det gÃ¥r inte att tilldela listor till vektormedlemmar" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "det gÃ¥r inte att skapa rör för processubstitution" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "det gÃ¥r inte att skapa barn för processubstitution" -#: subst.c:5753 +#: subst.c:5757 #, 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:5755 +#: subst.c:5759 #, 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:5778 +#: subst.c:5782 #, 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:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "felaktig ersättning: ingen avslutande â€`†i %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "det gÃ¥r inte att skapa rör för kommandosubstitution" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "det gÃ¥r inte att skapa barn för kommandosubstitution" -#: subst.c:6050 +#: subst.c:6062 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:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: ogiltigt variabelnamn för referens" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: felaktig substitution" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: felaktig indirekt expansion" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: felaktigt variabelnamn" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametern tom eller inte satt" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: delstränguttryck < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: det gÃ¥r inte att tilldela pÃ¥ detta sätt" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1936,12 +1984,12 @@ msgstr "" "framtida versioner av skalet kommer att framtvinga evaluering som en " "aritmetisk substitution" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "felaktig ersättning: ingen avslutande â€`†i %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "ingen matchning: %s" @@ -1974,7 +2022,7 @@ msgstr "%s: unär operator förväntades" msgid "%s: binary operator expected" msgstr "%s: binär operator förväntades" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "â€]†saknas" @@ -2000,74 +2048,74 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: felaktig signal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "fel vid import av funktionsdefinition för â€%sâ€" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "skalnivÃ¥ (%d) för hög, Ã¥terställer till 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: cirkulär namnreferens" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ingen funktionskontext i aktuellt sammanhang" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: variabeln fÃ¥r inte tilldelas ett värde" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: ogiltigt variabelnamn för referens" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ingen funktionskontext i aktuellt sammanhang" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s har tom exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "ogiltigt tecken %d i exportstr för %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "inget â€=†i exportstr för %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: huvudet pÃ¥ shell_variables är inte en funktionskontext" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: ingen kontext global_variables" -#: variables.c:4582 +#: variables.c:4772 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" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: gÃ¥r inte att öppna som FILE" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: ogiltigt värde för spÃ¥rningsfilbeskrivare" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: kompatibilitetsvärde utanför giltigt intervall" @@ -2950,10 +2998,11 @@ msgstr "" " variabeltilldelning inträffar." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Sätt variabelvärden och -attribut.\n" " \n" @@ -3483,7 +3532,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4943,6 +4992,7 @@ msgstr "" " Returnerar statusen frÃ¥n det sist exekverade kommandot." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4952,7 +5002,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Skapa en ko-process med namnet NAMN.\n" " \n" diff --git a/po/tr.gmo b/po/tr.gmo index b0bdb8ad13ecf43857dbbbe03966bd9c04bb5e74..458ee9bbb663662481ec071933e36459c4ae7a9a 100644 GIT binary patch delta 10645 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 M(!Ywz=4n*ve@y*&g8%>k delta 10846 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 diff --git a/po/tr.po b/po/tr.po index e75e15f0..cfd8c6c3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: bash 4.3-rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-10 07:59-0500\n" +"POT-Creation-Date: 2016-07-06 10:32-0400\n" "PO-Revision-Date: 2014-10-24 16:11+0200\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish \n" @@ -23,46 +23,52 @@ msgstr "" msgid "bad array subscript" msgstr "hatalı dizi indisi" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: indisli dizi, iliÅŸkisel diziye dönüştürülemez" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: geçersiz iliÅŸkisel dizi anahtarı" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: sayısal olmayan indise atama yapılamaz" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: iliÅŸkisel bir dizi ataması yapılırken indis kullanılmalıdır" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: oluÅŸturulamıyor: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: komut için kısayol bulunamıyor" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: boÅŸluk olmayan ilk karakter `\"' deÄŸil" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "%2$s içinde kapatan `%1$c' yok" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: ikinokta imi eksik" @@ -82,7 +88,7 @@ msgstr "destek geniÅŸletme: %d öge için bellek ayrılamıyor" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "destek geniÅŸletme: `%s' için bellek ayrılamıyor" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': geçersiz takma isim" @@ -143,11 +149,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME atanmamış" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "çok fazla argüman" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "yığıtın tepesinde kalan dizine geçer." + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD boÅŸ" @@ -166,7 +177,7 @@ msgstr "uyarı: " msgid "%s: usage: " msgstr "%s: kullanım: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: seçenek bir argüman gerektirir" @@ -181,7 +192,7 @@ msgstr "%s: sayısal argüman gerekli" msgid "%s: not found" msgstr "%s:yok" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: seçenek geçersiz" @@ -191,7 +202,7 @@ msgstr "%s: seçenek geçersiz" msgid "%s: invalid option name" msgstr "%s: seçenek ismi geçersiz" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': geçerli bir belirteç deÄŸil" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s: eylem adı geçersiz" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: tamamlama belirtimi yok" @@ -313,7 +324,7 @@ msgstr "uyarı: -F seçeneÄŸi umduÄŸunuz gibi çalışmayabilir" msgid "warning: -C option may not work as you expect" msgstr "uyarı: -C seçeneÄŸi umduÄŸunuz gibi çalışmayabilir" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "ÅŸuan tamamlama iÅŸlevi çalıştırılmıyor" @@ -321,41 +332,47 @@ msgstr "ÅŸuan tamamlama iÅŸlevi çalıştırılmıyor" msgid "can only be used in a function" msgstr "sadece bir iÅŸlevde kullanılabilir" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: referans deÄŸeri bir dizi olamaz" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: nameref deÄŸiÅŸkeninin kendine yaptığı referanslara izin verilmiyor" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: çembersel isim referansı" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: dosya izleme tanımlayıcısı için geçersiz deÄŸer" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "iÅŸlev yapmak için `-f' kullanılamaz" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: salt okunur iÅŸlev" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: dizi deÄŸiÅŸkenleri bu yolla iptal edilemez" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: iliÅŸkisel dizi, indisli diziye dönüştürülemez" @@ -389,7 +406,7 @@ msgstr "%s: özdevimli olarak yüklenmemiÅŸ" msgid "%s: cannot delete: %s" msgstr "%s: silinemiyor: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: bir dizin" @@ -404,7 +421,7 @@ msgstr "%s: bir dosya deÄŸil" msgid "%s: file is too large" msgstr "%s: dosya çok büyük" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ikili dosya çalıştırılamıyor" @@ -446,7 +463,7 @@ msgstr "geçmiÅŸ belirtimi" msgid "%s: cannot open temp file: %s" msgstr "%s: geçici dosya açılamıyor: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "ÅŸimdiki" @@ -791,21 +808,21 @@ msgstr "okuma hatası: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "sadece bir iÅŸlev veya betikten kaynaklı olarak `return' yapılabilir" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "bir iÅŸlev ve bir deÄŸiÅŸken aynı anda unset yapılamaz" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: unset yapılamaz" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s:unset yapılamaz: %s salt okunur" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: bir dizi deÄŸiÅŸkeni deÄŸil" @@ -824,11 +841,11 @@ msgstr "%s: unset yapılamaz" msgid "shift count" msgstr "shift sayısı" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "kabuk seçenekleri aynı anda hem atanıp hem de iptal edilemez" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: kabuk seçenek ismi geçersiz" @@ -974,61 +991,66 @@ msgstr "\agirdi beklerken zamanaşımı: auto-logout\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "/dev/null'dan standart girdiye yönlendirme yapılamaz: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: `%c': biçim karakteri geçersiz" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "iletiÅŸim tüneli hatası" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: azami fonksiyon yuvalama sınırı aşıldı (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: azami fonksiyon yuvalama sınırı aşıldı (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: azami fonksiyon yuvalama sınırı aşıldı (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: kısıtlı: komut adında `/' kullanamazsınız" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: komut yok" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: hatalı yorumlayıcı" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ikili dosya çalıştırılamıyor: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "%s: bir kabuk yerleÅŸiÄŸidir" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "fd %d, fd %d olarak yinelenemiyor" @@ -1103,7 +1125,7 @@ msgstr "%s: ifade hatası\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: üst dizinlere eriÅŸilemiyor" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor" @@ -1119,148 +1141,148 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp iletiÅŸim tüneli" -#: jobs.c:1029 +#: jobs.c:1031 #, 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:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "durdurulan %2$ld süreç gruplu iÅŸ %1$d siliniyor" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: %5ld (%s) süreci iletiÅŸim_tünelinde" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: %5ld (%s) program kimliÄŸi hala canlı olarak iÅŸaretli" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: böyle bir pid yok" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Sinyal %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Bitti" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Durdu" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Durdu(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Çalışıyor" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Bitti(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Çıkış %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Bilinmeyen durum" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(çekirdek döküldü)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "alt setpgid (ÅŸuradan: %ld ÅŸuraya: %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: süreç %ld için kayıt yok" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: iÅŸ %d durdu" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: iÅŸ sonlanmış" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: iÅŸ %d zaten artalanda" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: belirsiz blok önlenmek için WNOHANG açılıyor" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: satır %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (çekirdek döküldü)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd artık: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp baÅŸarısız" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: satır düzeni" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "uçbirim süreç grunu (%d) ayarlanamaz" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "bu kabukta iÅŸ denetimi yok" @@ -1413,103 +1435,110 @@ msgstr "bu belgede %d satırında dosya sonu sonlandırılmış (istenen `%s')" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: yönlendirme yönergesi `%d' aralık dışında" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "`%c' için eÅŸleÅŸme aranırken beklenmedik dosya sonu" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "`]]' aranırken beklenmedik dosya sonu" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "koÅŸullu ifadede sözdizimi hatası: beklenmedik dizgecik `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "koÅŸullu ifadede sözdizimi hatası" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "beklenmedik dizgecik `%s', `)' umuluyordu" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "`)' umuluyordu" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "koÅŸullu tek terimli iÅŸlece beklenmedik argüman `%s'" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "koÅŸullu tek terimli iÅŸlece beklenmedik argüman" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "beklenmedik dizgecik `%s', koÅŸullu iki terimli iÅŸleç umuluyordu" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "koÅŸullu iki terimli iÅŸleç umuluyordu" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "koÅŸullu iki terimli iÅŸlece beklenmedik argüman `%s'" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "koÅŸullu iki terimli iÅŸlece beklenmedik argüman" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "koÅŸullu komutta beklenmeyen dizgecik `%c'" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "koÅŸullu komutta beklenmeyen dizgecik `%s'" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "koÅŸullu komutta beklenmeyen dizgecik %d" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "beklenmeyen dizgecik `%s' yakınında sözdizimi hatası" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "`%s' yakınında sözdizimi hatası" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "sözdizimi hatası: beklenmeyen dosya sonu" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "sözdizimi hatası" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "KabuÄŸu bırakmak için \"%s\" kullanın.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "`)' için eÅŸleÅŸme aranırken beklenmedik dosya sonu" @@ -1518,6 +1547,11 @@ msgstr "`)' için eÅŸleÅŸme aranırken beklenmedik dosya sonu" msgid "completion: function `%s' not found" msgstr "completion: `%s' iÅŸlevi yok" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1584,44 +1618,48 @@ msgstr "/dev/(tcp|udp)/host/port aÄŸ olmaksızın desteklenmiyor" msgid "redirection error: cannot duplicate fd" msgstr "yönlendirme hatası: fd yinelenemiyor" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "/tmp bulunamadı, lütfen oluÅŸturun!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp geçerli bir dizinin adı olmalıdır" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: geçersiz seçenek" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: bir dizin" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Hiç ismim yok!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, sürüm %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1630,54 +1668,54 @@ msgstr "" "Kullanım:\t%s [GNU uzun seçeneÄŸi] [seçenek] ...\n" "\t%s [GNU uzun seçeneÄŸi] [seçenek] betik-dosyası ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU uzun seçenekleri:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Kabuk seçenekleri:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD veya -c KOMUT veya -O shopt_seçeneÄŸi\t\t(sadece çaÄŸrı için)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s ya da -o seçeneÄŸi\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Kabuk seçenekleriyle ilgili daha fazla bilgi için `%s -c \"help set\"' " "yazın.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Kabuk yerleÅŸik komutlarıyla ilgili bilgi almak için `%s -c help' yazın.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" "Yazılım hatalarını raporlamak için `bashbug' komutunu kullanınız.\n" "Çeviri hatalarını ise adresine bildiriniz.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: geçersiz iÅŸlem" @@ -1851,82 +1889,92 @@ msgstr "Bilinmeyen Sinyal #" msgid "Unknown Signal #%d" msgstr "Bilinmeyen Sinyal #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "hatalı ikame: %2$s içinde kapatan `%1$s' yok" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: dizi üyesine liste atanamaz" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "süreç ikamesi için borulama yapılamıyor" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "süreç ikamesi için alt süreç yapılamıyor" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "isimli boru %s okumak için açılamıyor" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "isimli boru %s yazmak için açılamıyor" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "isimli boru %s fd %d olarak yinelenemiyor" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "hatalı ikame: %s içinde kapatan \"`\" yok" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "komut ikamesi için boru yapılamıyor" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "komut ikamesi için alt süreç yapılamıyor" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: boru fd 1 olarak yinelenemiyor" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: dosya izleme tanımlayıcısı için geçersiz deÄŸer" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: hatalı ikame" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: geçersiz satır sayısı" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "`%s': geçersiz takma isim" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: parametre boÅŸ ya da deÄŸer atanmamış" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: altdizge ifadesi < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: bu yolla atama yapılmaz" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1934,12 +1982,12 @@ msgstr "" "kabuk gelecekteki sürümlerinde, bir aritmetik ikame olarak deÄŸerlendirmeye " "zorlayacak" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "hatalı ikame: %s içinde kapatan \"`\" yok" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "eÅŸleÅŸme yok: %s" @@ -1972,7 +2020,7 @@ msgstr "%s: tek terimli iÅŸleci bekleniyordu" msgid "%s: binary operator expected" msgstr "%s: iki terimli iÅŸleci bekleniyordu" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "eksik `]'" @@ -1997,73 +2045,73 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler:hatalı sinyal %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "`%s'nin iÅŸlev tanımının içeri aktarılmasında hata" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "kabuk düzeyi (%d) çok yüksek, 1 yapılıyor" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: çembersel isim referansı" - -#: variables.c:2328 +#: variables.c:2413 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:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: deÄŸiÅŸkene deÄŸer atanmamış olabilir" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: dosya izleme tanımlayıcısı için geçersiz deÄŸer" + +#: variables.c:3940 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:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s boÅŸ exportstr içeriyor" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, 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:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s için exportstr içinde `=' yok" -#: variables.c:4495 +#: variables.c:4684 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:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: genel deÄŸiÅŸkenler baÄŸlamı yok" -#: variables.c:4582 +#: variables.c:4772 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" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: DOSYA olarak açılamaz" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: dosya izleme tanımlayıcısı için geçersiz deÄŸer" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: uyumlulukdeÄŸeri aralık dışı" @@ -2955,10 +3003,11 @@ msgstr "" " baÅŸarılı döner." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "DeÄŸiÅŸken isim ve niteliklerini ayarla.\n" " \n" @@ -3487,7 +3536,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4808,7 +4857,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" #: builtins.c:1667 @@ -5536,9 +5585,6 @@ msgstr "" #~ msgid "removes the top directory from the stack, and cd's to the new" #~ msgstr "yığıtın en üstündeki dizini yığıttan kaldırır ve" -#~ msgid "top directory." -#~ msgstr "yığıtın tepesinde kalan dizine geçer." - #~ msgid "+N removes the Nth entry counting from the left of the list" #~ msgstr "+N `dirs' tarafından gösterilen listenin solundan saymaya" diff --git a/po/uk.gmo b/po/uk.gmo index 39b58d1681bf59568e9dd680327508bc0e621598..ea28e5a3345650b9052cbd80639201798f1c5da1 100644 GIT binary patch delta 12276 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 B5|RJ_ delta 13058 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\n" "Language-Team: Ukrainian \n" @@ -25,49 +25,55 @@ msgstr "" msgid "bad array subscript" msgstr "неправильний Ñ–Ð½Ð´ÐµÐºÑ Ð¼Ð°Ñиву" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: неможливо перетворити індекÑований маÑив на аÑоціативний" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: неправильний ключ аÑоціативного маÑиву" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÑ‡Ð¸Ñлових елементів неможливе" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: при означенні аÑоціативних маÑивів Ñлід вказувати ключ" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: не вдалоÑÑ Ñтворити: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: не вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ відповідне Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ " "команди" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: перший непробільний Ñимвол не Ñ” «\"»" # c-format -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "нема заключної «%c» у %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: пропущено двокрапку-роздільник" @@ -87,7 +93,7 @@ msgstr "Ñ€Ð¾Ð·ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð´ÑƒÐ¶Ð¾Ðº: не вдалоÑÑ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ об msgid "brace expansion: failed to allocate memory for `%s'" msgstr "Ñ€Ð¾Ð·ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð´ÑƒÐ¶Ð¾Ðº: не вдалоÑÑ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ об’єм пам’Ñті Ð´Ð»Ñ Â«%s»" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "«%s»: некоректна назва замінника" @@ -148,11 +154,16 @@ msgstr "" msgid "HOME not set" msgstr "змінну HOME не вÑтановлено" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "забагато аргументів" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "немає іншого каталогу" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "змінну OLDPWD не вÑтановлено" @@ -171,7 +182,7 @@ msgstr "попередженнÑ: " msgid "%s: usage: " msgstr "%s: викориÑтовуйте: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: параметр потребує аргументу" @@ -186,7 +197,7 @@ msgstr "%s: потрібен чиÑловий аргумент" msgid "%s: not found" msgstr "%s: не знайдено" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: неправильний параметр" @@ -196,7 +207,7 @@ msgstr "%s: неправильний параметр" msgid "%s: invalid option name" msgstr "%s: некоректна назва параметра" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "«%s»: неправильний ідентифікатор" @@ -305,7 +316,7 @@ msgid "%s: invalid action name" msgstr "%s: неправильна назва дії" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: не вказано ÑÐ¿ÐµÑ†Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ" @@ -318,7 +329,7 @@ msgstr "попередженнÑ: можливо параметр -F працю msgid "warning: -C option may not work as you expect" msgstr "попередженнÑ: можливо параметр -C працює не так, Ñк ви очікуєте" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "наразі Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñ€Ñдку не виконуєтьÑÑ" @@ -326,42 +337,48 @@ msgstr "наразі Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñ€Ñдку не вик msgid "can only be used in a function" msgstr "може викориÑтовуватиÑÑ Ð»Ð¸ÑˆÐµ уÑередині функції" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: еталонна змінна не може бути маÑивом" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: не можна викориÑтовувати циклічне поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñƒ змінній поÑиланнÑ" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: циклічне поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð° назвою" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: некоректна назва змінної Ð´Ð»Ñ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð° назвою" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "`-f' не викориÑтовуєтьÑÑ Ð´Ð»Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ð¹" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: незмінна функціÑ" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" "%s: вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½ÑŒ Ð´Ð»Ñ Ñкладеного маÑиву у лапках вважаєтьÑÑ Ð·Ð°Ñтарілим" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: неможливо знищити маÑив таким чином" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: неможливо перетворити аÑоціативний маÑив на індекÑований" @@ -397,7 +414,7 @@ msgstr "%s: завантажений не динамічно" msgid "%s: cannot delete: %s" msgstr "%s: не вдалоÑÑ Ð²Ð¸Ð»ÑƒÑ‡Ð¸Ñ‚Ð¸: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: це каталог" @@ -412,7 +429,7 @@ msgstr "%s: не Ñ” звичайним файлом" msgid "%s: file is too large" msgstr "%s: файл завеликий" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: не вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ бінарний файл" @@ -454,7 +471,7 @@ msgstr "параметри Ñ–Ñторії" msgid "%s: cannot open temp file: %s" msgstr "%s: не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ тимчаÑовий файл: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "поточне" @@ -808,21 +825,21 @@ msgid "can only `return' from a function or sourced script" msgstr "" "`return' працює лише у функції чи Ñкрипті, запущеному за допомогою `source'" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "не можна одночаÑно знищити Ñ– функцію Ñ– змінну" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: не вдалоÑÑ Ð·Ð½Ð¸Ñ‰Ð¸Ñ‚Ð¸" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: не вдалоÑÑ Ð·Ð½Ð¸Ñ‰Ð¸Ñ‚Ð¸: %s лише Ð´Ð»Ñ Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: не Ñ” маÑивом" @@ -841,11 +858,11 @@ msgstr "%s: не вдалоÑÑ ÐµÐºÑпортувати" msgid "shift count" msgstr "кількіÑть зÑувів" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "не можна одночаÑно вÑтановлювати й ÑкаÑовувати параметри оболонки" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: неправильна назва параметра оболонки" @@ -993,61 +1010,66 @@ msgstr "\aÑ‡Ð°Ñ Ð¾Ñ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð²Ð¾Ð´Ñƒ вичерпано: автом msgid "cannot redirect standard input from /dev/null: %s" msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÑпрÑмувати /dev/null на Ñтандартний ввід: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "TIMEFORMAT: «%c»: помилковий Ñимвол шаблону" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "помилка каналу" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: перевищено макÑимальний рівень вкладеноÑті eval (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: перевищено макÑимальний рівень вкладеноÑті джерела (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: перевищено макÑимальний рівень вкладеноÑті функцій (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: обмеженнÑ: не можна вказувати `/' у назві команди" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: команду не знайдено" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: неправильний інтерпретатор" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: не вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ бінарний файл: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "%s Ñ” Ñпеціальною вбудованою командою оболонки" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "не вдалоÑÑ Ñтворити копію файлового деÑкриптору %d у %d" @@ -1122,7 +1144,7 @@ msgstr "%s: помилка у виразі\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: не вдалоÑÑ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ доÑтуп до каталогів вищого рівнÑ" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÐ²Ñтановити режим без затримки файлового деÑкриптору %d" @@ -1139,150 +1161,150 @@ msgstr "" msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: Ð´Ð»Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ файлового деÑкриптору %d вже Ñ–Ñнує буфер" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "" "ідентифікатор відгалуженого процеÑу %d знайдено у поточному завданні %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð·ÑƒÐ¿Ð¸Ð½ÐµÐ½Ð¾Ð³Ð¾ Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ %d, що має групу процеÑів %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: Ð¿Ñ€Ð¾Ñ†ÐµÑ %5ld (%s) у the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "" "add_process: ідентифікатор процеÑу %5ld (%s) вказує на його працездатніÑть" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: ідентифікатор процеÑу не Ñ–Ñнує" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Сигнал %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Завершено" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Зупинено" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Зупинено(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Працює" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Зроблено(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Вихід %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Ðевідомий Ñтан" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(збережено знімок оперативної пам’Ñті)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (РД: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "зміна групи дочірнього процеÑу (%ld на %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: Ð¿Ñ€Ð¾Ñ†ÐµÑ %ld не Ñ” відгалуженим від цієї оболонки" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wait_for: Ðема запиÑу Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñ†ÐµÑу %ld" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ %d зупинене" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»Ð¾ÑÑ" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ %d вже працює в фоні" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: увімкнути WNOHANG, щоб уникнути неÑкінченного блокуваннÑ" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: Ñ€Ñдок %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (збережено знімок оперативної пам’Ñті)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(тепер РД: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: помилка getpgrp" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: алгоритм реалізації Ñ€Ñдків" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "не вдалоÑÑ Ð²Ñтановити групу процеÑу Ð´Ð»Ñ Ñ‚ÐµÑ€Ð¼Ñ–Ð½Ð°Ð»Ð° (%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "Ñ†Ñ Ð¾Ð±Ð¾Ð»Ð¾Ð½ÐºÐ° не може керувати завданнÑми" @@ -1439,103 +1461,110 @@ msgstr "here-document з Ñ€Ñдка %d закінчено кінцем файл msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: інÑÑ‚Ñ€ÑƒÐºÑ†Ñ–Ñ Ð¿ÐµÑ€ÐµÑпрÑÐ¼ÑƒÐ²Ð°Ð½Ð½Ñ `%d' поза межами" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "перевищено макÑимальну можливу кількіÑть here-document" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "файл ÑкінчивÑÑ Ñ€Ð°Ð½Ñ–ÑˆÐµ, ніж було знайдено відповідний «%c»" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "файл ÑкінчивÑÑ Ñ€Ð°Ð½Ñ–ÑˆÐµ, ніж було знайдено `]]'" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "ÑинтакÑична помилка в умовному виразі: неочікувана лекÑема «%s»" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "ÑинтакÑична помилка в умовному виразі" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "неочікувана лекÑема «%s», очікувалаÑÑ `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "очікувалаÑÑ `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "неочікуваний аргумент унарного умовного оператора «%s»" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "неочікуваний аргумент унарного умовного оператора" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "неочікувана лекÑема «%s», очікувавÑÑ Ð±Ñ–Ð½Ð°Ñ€Ð½Ð¸Ð¹ умовний оператор" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "очікувавÑÑ Ð±Ñ–Ð½Ð°Ñ€Ð½Ð¸Ð¹ умовний оператор" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "неочікуваний аргумент бінарного умовного оператора «%s»" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "неочікуваний аргумент бінарного умовного оператора" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "неочікувана лекÑема «%c» в умовній команді" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "неочікувана лекÑема «%s» в умовній команді" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "неочікувана лекÑема %d в умовній команді" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "ÑинтакÑична помилка коло неочікуваної лекÑеми «%s»" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "ÑинтакÑична помилка коло «%s»" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "ÑинтакÑична помилка: раптово ÑкінчивÑÑ Ñ„Ð°Ð¹Ð»" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "ÑинтакÑична помилка" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "ВикориÑтовуйте \"%s\", щоб вийти з оболонки.\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "файл ÑкінчивÑÑ, перш ніж було знайдено відповідну `)'" @@ -1544,6 +1573,11 @@ msgstr "файл ÑкінчивÑÑ, перш ніж було знайдено msgid "completion: function `%s' not found" msgstr "завершеннÑ: функцію «%s» не знайдено" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1612,44 +1646,48 @@ msgstr "/dev/(tcp|udp)/host/port не підтримуєтьÑÑ" msgid "redirection error: cannot duplicate fd" msgstr "помилка переÑпрÑмуваннÑ: не вдалоÑÑ Ñтворити копію деÑкриптора файла" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "не вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ /tmp, будь лаÑка Ñтворіть його!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp має бути чинною назвою каталогу" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: помилковий параметр" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "не вдалоÑÑ Ð²Ñтановити uid %d: ефективним Ñ” uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "не вдалоÑÑ Ð²Ñтановити gid %d: ефективним Ñ” gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: це каталог" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "У мене нема назви!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, верÑÑ–Ñ %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1658,56 +1696,56 @@ msgstr "" "ВикориÑтовуйте:\t%s [довгий параметр GNU] [параметр] ...\n" "\t%s [довгий параметр GNU] [параметр] файл_Ñценарію ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Довгі параметри GNU:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Параметри оболонки:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD чи -c команда чи -O параметр_shopt\t\t(тільки на початку)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s чи -o параметр\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "" "Введіть `%s -c \"help set\"', щоб отримати більше інформації про параметри " "оболонки.\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "" "Введіть `%s -c help', щоб отримати більше інформації про вбудовані команди " "оболонки.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" "Щоб повідомити про помилку в програмі, викориÑтовуйте команду `bashbug'.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Ð”Ð¾Ð¼Ð°ÑˆÐ½Ñ Ñторінка bash: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Загальна довідкова Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ñ‰Ð¾Ð´Ð¾ викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ " "GNU: \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: некоректна операціÑ" @@ -1881,84 +1919,94 @@ msgstr "Ðевідомий Ñигнал â„–" msgid "Unknown Signal #%d" msgstr "Ðевідомий Ñигнал â„–%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "неправильна заміна: немає заключної «%s» у %s" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: неможливо означити елемент маÑиву ÑпиÑком" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "не вдалоÑÑ Ñтворити канал Ð´Ð»Ñ Ð¿Ñ–Ð´ÑтавлÑÐ½Ð½Ñ Ð¿Ñ€Ð¾Ñ†ÐµÑу" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "не вдалоÑÑ Ñтворити дочірній Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð´Ð»Ñ Ð¿Ñ–Ð´ÑтавлÑÐ½Ð½Ñ Ð¿Ñ€Ð¾Ñ†ÐµÑу" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ іменований канал %s Ð´Ð»Ñ Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ іменований канал %s Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñу" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "не вдалоÑÑ Ð·Ð´ÑƒÐ±Ð»ÑŽÐ²Ð°Ñ‚Ð¸ іменований канал %s Ñк fd %d" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "неправильна заміна: немає заключної \"`\" у %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "не вдалоÑÑ Ñтворити канал Ð´Ð»Ñ Ð¿Ñ–Ð´ÑтавлÑÐ½Ð½Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¸" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "не вдалоÑÑ Ñтворити дочірній Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð´Ð»Ñ Ð¿Ñ–Ð´ÑтавлÑÐ½Ð½Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¸" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "" "command_substitute: не вдалоÑÑ Ñтворити копію каналу із файловим " "деÑкриптором 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: некоректна назва змінної Ð´Ð»Ñ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð° назвою" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: неправильна заміна" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: некоректне непрÑме розгортаннÑ" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: некоректна назва змінної" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: параметр нульової довжини чи не вказаний" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: підрÑдок коротший за 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: не можна призначити таким чином" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" @@ -1966,12 +2014,12 @@ msgstr "" "у наÑтупних верÑÑ–ÑÑ… оболонки буде виконуватиÑÑ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð·Ð°Ð¼Ñ–Ð½Ð¸ " "арифметичних виразів" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "неправильна заміна: немає заключної \"`\" у %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "нема відповідника: %s" @@ -2004,7 +2052,7 @@ msgstr "%s: очікувавÑÑ ÑƒÐ½Ð°Ñ€Ð½Ð¸Ð¹ оператор" msgid "%s: binary operator expected" msgstr "%s: очікувавÑÑ Ð±Ñ–Ð½Ð°Ñ€Ð½Ð¸Ð¹ оператор" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "відÑÑƒÑ‚Ð½Ñ `]'" @@ -2030,74 +2078,74 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: неправильний Ñигнал %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "помилка Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ— «%s»" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "рівень оболонки (%d) занадто виÑокий, перевÑтановлено у 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: циклічне поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð° назвою" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: немає контекÑту функції у поточній облаÑті" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: змінною не може бути значеннÑ, Ñке приймають інші змінні" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: некоректна назва змінної Ð´Ð»Ñ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð·Ð° назвою" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: немає контекÑту функції у поточній облаÑті" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s має нульове Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ñдка екÑпортуваннÑ" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "Помилковий Ñимвол %d у Ñ€Ñдку екÑпорту Ð´Ð»Ñ %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "немає `=' у Ñ€Ñдку екÑпорту Ð´Ð»Ñ %s" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "" "pop_var_context: перший елемент shell_variables не Ñ” контекÑтом функції" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: немає контекÑту global_variables" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: перший елемент shell_variables не Ñ” тимчаÑовим оточеннÑм виконаннÑ" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ ФÐЙЛ" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: некоректне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´ÐµÑкриптора файла траÑуваннÑ" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÑуміÑноÑті не належить припуÑтимому діапазону значень" @@ -2985,10 +3033,11 @@ msgstr "" " помилки під Ñ‡Ð°Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Ð’Ñтановлює Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ‚Ð° влаÑтивоÑті змінних.\n" " \n" @@ -3540,7 +3589,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -5015,6 +5064,7 @@ msgstr "" # WTF? How can it return exit code of _asynchronous_ process... #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -5024,7 +5074,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Створює ÑÐ¿Ñ–Ð²Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð· назвою ÐÐЗВÐ.\n" " \n" diff --git a/po/vi.gmo b/po/vi.gmo index 34a03b3956f601922236d03d86116a8f7d17342d..9ec334af2aa23c2fe25f5b198bb8e423ee9657db 100644 GIT binary patch delta 12265 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\n" "Language-Team: Vietnamese \n" @@ -25,47 +25,53 @@ msgstr "" msgid "bad array subscript" msgstr "sai chỉ số mảng" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: không thể chuyển đổi mảng kiểu chỉ số sang mảng kết hợp" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: khóa mảng liên kết không hợp lệ" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: không thể gán cho chỉ số không thuá»™c kiểu số" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: phải sá»­ dụng chỉ số phụ khi gán mảng kết hợp" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: không thể tạo: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "" "bash_execute_unix_command: không tìm thấy ánh xạ phím (keymap) cho câu lệnh" -#: bashline.c:4169 +#: bashline.c:4182 #, 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à “\"â€" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "thiếu dấu đóng “%c†trong %s" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: thiếu dấu hai chấm phân cách" @@ -85,7 +91,7 @@ msgstr "khai triển ngoặc ôm: gặp lá»—i khi phân bổ bá»™ nhá»› cho “% msgid "brace expansion: failed to allocate memory for `%s'" msgstr "khai triển ngoặc ôm: gặp lá»—i khi phân bổ bá»™ nhá»› cho “%sâ€" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "“%sâ€: tên bí danh không hợp lệ" @@ -146,11 +152,16 @@ msgstr "" msgid "HOME not set" msgstr "Chưa đặt biến môi trưá»ng HOME" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "quá nhiá»u đối số" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "không có thư mục khác" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "Chưa đặt biến môi trưá»ng OLDPWD" @@ -169,7 +180,7 @@ msgstr "cảnh báo: " msgid "%s: usage: " msgstr "%s: cách dùng: " -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: tùy chá»n cần má»™t đối số" @@ -184,7 +195,7 @@ msgstr "%s: cần đối số thuá»™c kiểu số" msgid "%s: not found" msgstr "%s: không tìm thấy" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: tùy chá»n không hợp lệ" @@ -194,7 +205,7 @@ msgstr "%s: tùy chá»n không hợp lệ" msgid "%s: invalid option name" msgstr "%s: tên tùy chá»n không hợp lệ" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "“%sâ€: không phải là định danh hợp lệ" @@ -303,7 +314,7 @@ msgid "%s: invalid action name" msgstr "%s: tên hành động không hợp lệ" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: không có đặc tả tá»± hoàn thiện" @@ -316,7 +327,7 @@ msgstr "cảnh báo: tùy chá»n “-F†có thể không hoạt động như m msgid "warning: -C option may not work as you expect" msgstr "cảnh báo: tùy chá»n “-C†có thể không hoạt động như bạn mong đợi" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "hiện thá»i không thá»±c thi chức năng tá»± hoàn thiện" @@ -324,41 +335,47 @@ msgstr "hiện thá»i không thá»±c thi chức năng tá»± hoàn thiện" msgid "can only be used in a function" msgstr "chỉ có thể dùng trong má»™t hàm" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: biến tham chiếu không thể là má»™t mảng" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: biến nameref tá»± tham chiếu là không được phép" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: tên tham chiếu quẩn tròn" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: tên biến không hợp lệ cho má»™t tham chiếu tên" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "không thể dùng “-f†để tạo hàm" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: hàm chỉ Ä‘á»c" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: gán mảng phức hợp được trích dẫn đã lạc hậu" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: không thể há»§y biến mảng bằng cách này" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: không thể chuyển đổi mảng kết hợp sang mảng chỉ số" @@ -392,7 +409,7 @@ msgstr "%s không được tải động" msgid "%s: cannot delete: %s" msgstr "%s: không thể xóa: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: là thư mục" @@ -407,7 +424,7 @@ msgstr "%s: không phải là tập tin thưá»ng" msgid "%s: file is too large" msgstr "%s: tập tin quá lá»›n" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: không thể thá»±c hiện tập tin nhị phân" @@ -449,7 +466,7 @@ msgstr "đặc tả lịch sá»­" msgid "%s: cannot open temp file: %s" msgstr "%s: không thể mở tập tin tạm: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "hiện tại" @@ -790,21 +807,21 @@ msgstr "lá»—i Ä‘á»c: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "chỉ có thể “return†từ má»™t hàm hoặc văn lệnh được “sourceâ€" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "không thể há»§y đặt đồng thá»i má»™t hàm VÀ má»™t biến" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: không thể há»§y đặt" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: không thể há»§y đặt: %s chỉ Ä‘á»c" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: không phải biến mảng" @@ -823,11 +840,11 @@ msgstr "%s: không thể xuất" msgid "shift count" msgstr "số lượng dịch" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "không thể đồng thá»i đặt và há»§y đặt các tùy chá»n hệ vá»" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: tên tùy chá»n hệ vá» không hợp lệ" @@ -973,61 +990,66 @@ msgstr "\aquá thá»i hạn đợi dữ liệu nhập: tá»± động đăng xuấ msgid "cannot redirect standard input from /dev/null: %s" msgstr "không thể chuyển hướng đầu vào chuẩn từ /dev/null: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, 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:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "lá»—i ống dẫn" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: vượt quá mức độ eval lồng nhau tối Ä‘a (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: vượt quá mức độ nguồn lồng nhau tối Ä‘a (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: vượt quá mức độ các hàm lồng nhau tối Ä‘a (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: bị hạn chế: không thể dùng “/†trong tên lệnh" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: không tìm thấy lệnh" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: bá»™ thông dịch sai" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: không thể thá»±c hiện tập tin nhị phân: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "“%sâ€: là lệnh tích hợp đặc biệt" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "không thể nhân đôi fd %d thành fd %d" @@ -1102,7 +1124,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:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "không thể đặt lại chế độ “nodelay†cho fd %d" @@ -1118,149 +1140,149 @@ 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:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: pgrp pipe" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "pid được tánh nhánh %d có vẻ Ä‘ang chạy trong công việc %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "Ä‘ang xóa công việc bị dừng chạy %d vá»›i nhóm tiến trình %ld" -#: jobs.c:1252 +#: jobs.c:1254 #, 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:1255 +#: jobs.c:1257 #, 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:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: không có pid như vậy" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "Tín hiệu %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "Xong" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "Bị dừng" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "Bị dừng(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "Äang chạy" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "Xong(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "Thoát %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "Không rõ trạng thái" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(xuất ra core)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (wd: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "setpgid tiến trình con (%ld thành %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, 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 hệ vá» này" -#: jobs.c:2591 +#: jobs.c:2598 #, 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:2909 +#: jobs.c:2920 #, 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:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: công việc bị chấm dứt" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: công việc %d đã Ä‘ang chạy ná»n" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: Ä‘ang bật WNOHANG để tránh bị chặn vô hạn" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: dòng %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (xuất ra core)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(wd ngay: %s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp bị lá»—i" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: ká»· luật dòng" # NghÄ©a chữ : dừng dịch -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, 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:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "không có Ä‘iá»u khiển công việc trong hệ vá» này" @@ -1415,103 +1437,110 @@ msgstr "tài liệu này ở dòng %d định giá»›i bằng kết thúc tập ti msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: chỉ dẫn chuyển hướng “%d†nằm ngoài phạm vi" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "vượt quá số lượng tài-liệu-đây tối Ä‘a" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "gặp kết thúc tập tin bất thưá»ng trong khi tìm “%c†tương ứng" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "gặp kết thúc tập tin bất thưá»ng trong khi tìm “]]â€" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "gặp lá»—i cú pháp trong biểu thức Ä‘iá»u kiện: thẻ bài bất thưá»ng “%sâ€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "gặp lá»—i cú pháp trong biểu thức Ä‘iá»u kiện" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "gặp thẻ bài bất thưá»ng “%sâ€, cần “)â€" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "cần “)â€" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "đối số bất thưá»ng “%s†cho toán tá»­ má»™t ngôi Ä‘iá»u kiện" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "đối số bất thưá»ng cho toán tá»­ má»™t ngôi Ä‘iá»u kiện" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "thẻ bài bất thưá»ng “%sâ€, cần toán tá»­ hai ngôi Ä‘iá»u kiện" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "cần toán tá»­ hai ngôi Ä‘iá»u kiện" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "đối số bất thưá»ng “%s†cho toán tá»­ hai ngôi Ä‘iá»u kiện" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "đối số bất thưá»ng cho toán tá»­ hai ngôi Ä‘iá»u kiện" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "gặp thẻ bài bất thưá»ng “%c†trong câu lệnh Ä‘iá»u kiện" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "gặp thẻ bài bất thưá»ng “%s†trong câu lệnh Ä‘iá»u kiện" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "gặp thẻ bài bất thưá»ng “%d†trong câu lệnh Ä‘iá»u kiện" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "có lá»—i cú pháp ở gần thẻ bài bất thưá»ng “%sâ€" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "lá»—i cú pháp ở gần “%sâ€" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "lá»—i cú pháp: kết thúc tập tin bất thưá»ng" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "lá»—i cú pháp" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "Dùng \"%s\" để rá»i hệ vá».\n" -#: parse.y:6105 +#: parse.y:6247 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 “)†tương ứng" @@ -1520,6 +1549,11 @@ msgstr "gặp kết thúc tập tin bất thưá»ng trong khi tìm “)†tươ msgid "completion: function `%s' not found" msgstr "tá»± hoàn thiện: không tìm thấy hàm “%sâ€" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1587,44 +1621,48 @@ msgstr "/dev/(tcp|udp)/host/port không được há»— trợ nếu không có m msgid "redirection error: cannot duplicate fd" msgstr "lá»—i chuyển hướng: không thể nhân đôi fd" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "không tìm thấy /tmp, hãy tạo má»›i!" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "“/tmp†phải là tên thư mục hợp lệ" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: tùy chá»n không hợp lệ" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "không thể đặt uid thành %d: uid chịu tác động %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "không thể đặt gid thành %d: gid chịu tác động %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: Là má»™t thư mục" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "Không có tên!" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash, phiên bản %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1633,52 +1671,52 @@ msgstr "" "Cách dùng:\t%s [tùy chá»n GNU dài] [tùy chá»n] …\n" "\t\t%s [tùy chá»n GNU dài] [tùy chá»n] tập-tin-văn-lệnh …\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "Tùy chá»n dài:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Tùy chá»n:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-ilrsD hoặc -c lệnh hay -O tùy-chá»n-ngắn\t\t(chỉ gá»i)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s hoặc -o tùy-chá»n\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "Gõ “%s -c \"help set\"†để xem thông tin vá» các tùy chá»n hệ vá».\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "Gõ “%s -c help†để xem thông tin vá» các lệnh hệ vá» tích hợp.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "" "Dùng lệnh “bashbug†để thông báo lá»—i.\n" "Báo cáo các lá»—i dịch cho: .\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "Trang chá»§ bash: \n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" "Trợ giúp chung vá» cách sá»­ dụng phần má»m GNU : \n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: thao tác không hợp lệ" @@ -1852,94 +1890,104 @@ msgstr "Tín hiệu lạ #" msgid "Unknown Signal #%d" msgstr "Tín hiệu lạ #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "sai chỉ số phụ: không có đóng “%s†trong %s" -#: subst.c:3099 +#: subst.c:3103 #, 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:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "không thể tạo ống dẫn để thay thế tiến trình" -#: subst.c:5703 +#: subst.c:5707 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:5753 +#: subst.c:5757 #, 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:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "không thể mở ống dẫn có tên %s để ghi" -#: subst.c:5778 +#: subst.c:5782 #, 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:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "sai thay thế: không có \"“\" đóng trong %s" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "không thể tạo ống dẫn để thay thế lệnh" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "không thể tạo tiến trình con để thay thế lệnh" -#: subst.c:6050 +#: subst.c:6062 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:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: tên biến không hợp lệ cho má»™t tham chiếu tên" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: thay thế sai" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: triển khai gián tiếp không hợp lệ" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "“%sâ€: tên biến không hợp lệ" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: tham số null hoặc chưa được đặt" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: biểu thức chuá»—i con < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: không thể gán bằng cách này" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "" "phiên bản hệ vá» má»›i sẽ ép buá»™c ước lượng dưới dạng má»™t hàm thay thế số há»c" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "sai thay thế: không có \"“\" đóng trong %s" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "không khá»›p: %s" @@ -1972,7 +2020,7 @@ msgstr "%s: cần toán tá»­ má»™t ngôi" msgid "%s: binary operator expected" msgstr "%s: cần toán tá»­ hai ngôi" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "thiếu “]â€" @@ -1998,77 +2046,77 @@ msgstr "" msgid "trap_handler: bad signal %d" msgstr "trap_handler: tín hiệu sai %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "gặp lá»—i khi nhập vào định nghÄ©a hàm cho “%sâ€" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "cấp hệ vá» (%d) quá cao nên đặt lại thành 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: tên tham chiếu quẩn tròn" - -#: variables.c:2328 +#: variables.c:2413 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:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: không thể gán giá trị cho biến" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: tên biến không hợp lệ cho má»™t tham chiếu tên" + +#: variables.c:3940 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:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s có exportstr null" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "sai ký tá»± %d trong exportstr cho %s" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "không có “=†trong exportstr cho %s" -#: variables.c:4495 +#: variables.c:4684 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 hệ vá») không phải là ngữ " "cảnh hàm" -#: variables.c:4508 +#: variables.c:4697 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)" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "" "pop_scope: đầu cá»§a shell_variables (các biến hệ vá») không phải là phạm vi " "môi trưá»ng tạm thá»i" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: không thể mở như là TẬP-TIN" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: sai đặt giá trị cho bá»™ mô tả tập tin vết" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: giá trị so sánh nằm ngoài phạm vi" @@ -2926,10 +2974,11 @@ msgstr "" " Trả lại thành công trừ khi đưa ra tùy chá»n sai hoặc gặp lá»—i khi gán biến." #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "Äặt giá trị và thuá»™c tính cá»§a biến.\n" "\n" @@ -3443,7 +3492,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4879,6 +4928,7 @@ msgstr "" " Trả lại trạng thái cá»§a câu lệnh cuối cùng được chạy." #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4888,7 +4938,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "Tạo tiến trình phụ tên TÊN.\n" "\n" diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo index 338106205d36865e12fff157db20f6e9e82c07e7..f818cd89415dcbb68a081fa9373552d887837eb1 100644 GIT binary patch delta 12079 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 NIWx1ou)wcP{ts!Lpeq0X delta 12717 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\n" "Language-Team: Chinese (simplified) \n" @@ -26,46 +26,52 @@ msgstr "" msgid "bad array subscript" msgstr "æ•°ç»„ä¸‹æ ‡ä¸æ­£ç¡®" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: æ— æ³•å°†ç´¢å¼•æ•°ç»„è½¬åŒ–ä¸ºå…³è”æ•°ç»„" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: æ— æ•ˆçš„å…³è”æ•°ç»„é”®" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: æ— æ³•ä¸ºéžæ•°å­—的索引赋值" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: ä¸ºå…³è”æ•°ç»„赋值时必须使用下标" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: 无法创建: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: 无法为命令找到键映射" -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: 第一个éžç©ºå­—ç¬¦ä¸æ˜¯ `\"'" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "%2$s 中没有闭åˆçš„ `%1$c'" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: 缺少冒å·åˆ†éš”符" @@ -85,7 +91,7 @@ msgstr "大括å·å±•开: 为 %d 个元素分é…内存失败" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "大括å·å±•开: 为 `%s' 分é…内存失败" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "`%s': 无效的别å" @@ -146,11 +152,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME 未设定" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "傿•°å¤ªå¤š" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "无其他目录" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD 未设定" @@ -169,7 +180,7 @@ msgstr "警告:" msgid "%s: usage: " msgstr "%s: 用法:" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s: 选项需è¦ä¸€ä¸ªå‚æ•°" @@ -184,7 +195,7 @@ msgstr "%s: éœ€è¦æ•°å­—傿•°" msgid "%s: not found" msgstr "%s: 未找到" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s: 无效选项" @@ -194,7 +205,7 @@ msgstr "%s: 无效选项" msgid "%s: invalid option name" msgstr "%s: 无效的选项å" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "`%s': 䏿˜¯æœ‰æ•ˆçš„æ ‡è¯†ç¬¦" @@ -303,7 +314,7 @@ msgid "%s: invalid action name" msgstr "%s: 无效的动作å" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s: 没有补全声明" @@ -316,7 +327,7 @@ msgstr "警告: -F 选项å¯èƒ½ä¸åƒæ‚¨é¢„期的那样工作" msgid "warning: -C option may not work as you expect" msgstr "警告: -C 选项å¯èƒ½ä¸åƒæ‚¨é¢„期的那样工作" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "当剿œªæ‰§è¡Œè¡¥å…¨åŠŸèƒ½" @@ -324,41 +335,47 @@ msgstr "当剿œªæ‰§è¡Œè¡¥å…¨åŠŸèƒ½" msgid "can only be used in a function" msgstr "åªèƒ½åœ¨å‡½æ•°ä¸­ä½¿ç”¨" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: 引用å˜é‡ä¸èƒ½ä¸ºæ•°ç»„" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: ä¸å…许å称引用å˜é‡å¼•用自身" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: 循环å˜é‡å引用" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: 无效的引用å˜é‡å" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "无法用 `-f' 生æˆå‡½æ•°" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s: åªè¯»å‡½æ•°" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "%s: 引å·å†…çš„å¤åˆæ•°ç»„赋值已被弃用" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: æ— æ³•ä»¥è¿™ç§æ–¹å¼é”€æ¯æ•°ç»„å˜é‡" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: æ— æ³•å°†å…³è”æ•°ç»„转化为索引数组" @@ -392,7 +409,7 @@ msgstr "%s: æœªä»¥åŠ¨æ€æ–¹å¼åŠ è½½" msgid "%s: cannot delete: %s" msgstr "%s: 无法删除: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: 是一个目录" @@ -407,7 +424,7 @@ msgstr "%s: 䏿˜¯å¸¸è§„文件" msgid "%s: file is too large" msgstr "%s: 文件太大" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: 无法执行二进制文件" @@ -449,7 +466,7 @@ msgstr "历å²å£°æ˜Ž" msgid "%s: cannot open temp file: %s" msgstr "%s: 无法打开临时文件: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "当å‰" @@ -792,21 +809,21 @@ msgstr "读错误: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "åªèƒ½ä»Žå‡½æ•°æˆ–者æºè„šæœ¬è¿”å›ž(`return')" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "æ— æ³•åŒæ—¶å–消设定一个函数和一个å˜é‡" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: æ— æ³•å–æ¶ˆè®¾å®š" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: æ— æ³•å–æ¶ˆè®¾å®š: åªè¯» %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: 䏿˜¯æ•°ç»„å˜é‡" @@ -825,11 +842,11 @@ msgstr "%s: 无法导出" msgid "shift count" msgstr "ä½ç§»è®¡æ•°" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "æ— æ³•åŒæ—¶è®¾å®šå’Œå–消设定 shell 选项" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: 无效的 shell 选项å" @@ -975,61 +992,66 @@ msgstr "\a 等待输入超时:自动注销\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "无法从 /dev/null é‡å®šå‘标准输入: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "æ—¶é—´æ ¼å¼: `%c': 无效的格å¼å­—符" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "管é“错误" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "eval: 超出最大 eval 嵌套层数 (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: 超出最大 source 嵌套层数 (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: 超出最大函数嵌套层数 (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: å—é™çš„: 无法在命令å中使用 `/'" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s: 未找到命令" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: 解释器错误" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: 无法执行二进制文件: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "`%s': 特殊内建" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "无法å¤åˆ¶æ–‡ä»¶æè¿°ç¬¦ %d 到文件æè¿°ç¬¦ %d" @@ -1104,7 +1126,7 @@ msgstr "%s: 表达å¼é”™è¯¯\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: 无法访问父目录" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "无法为文件æè¿°ç¬¦ %d é‡ç½®nodelay模å¼" @@ -1119,148 +1141,148 @@ msgstr "无法从文件æè¿°ç¬¦ %d 为 bash 的输入获å–一个新的文件 msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: å·²ç»å­˜åœ¨æ–°çš„æ–‡ä»¶æè¿°ç¬¦ %d 的缓冲区" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: 进程组管é“" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "å‰åˆ† (fork) å‡ºçš„çš„è¿›ç¨‹å· %d 出现在è¿è¡Œä¸­çš„任务 %d 中" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "删除进程组 %2$ld ä¸­å·²åœæ­¢çš„任务 %1$d" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: 进程 %5ld(%s) 进入 the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: è¿›ç¨‹å· %5ld(%s) æ ‡æ³¨ä¸ºä»æ´»ç€" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: 无此进程å·" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "ä¿¡å· %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "已完æˆ" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "å·²åœæ­¢" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "å·²åœæ­¢(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "è¿è¡Œä¸­" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "已完æˆ(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "退出 %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "未知状æ€" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(核心已转储)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (工作目录: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "å­è¿›ç¨‹ setpgid (%ld 到 %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: è¿›ç¨‹å· %ld 䏿˜¯å½“å‰ shell çš„å­è¿›ç¨‹" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wiat_for: 没有进程 %ld 的记录" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: 任务 %d å·²åœæ­¢" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: 任务已ç»ç»ˆæ­¢" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: 任务 %d 已在åŽå°" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: 打开 WNOHANG 以é¿å…æ— é™é˜»å¡ž" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: 行 %d: " -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (核心已转储)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(当å‰å·¥ä½œç›®å½•:%s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp 失败" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: 行规则" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "无法设定终端进程组(%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "æ­¤ shell 中无任务控制" @@ -1413,103 +1435,110 @@ msgstr "ç«‹å³æ–‡æ¡£åœ¨ç¬¬ %d 行被文件结æŸç¬¦åˆ†éš” (éœ€è¦ `%s')" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirection: é‡å®šå‘指令 `%d' 越界" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "è¶…å‡ºæœ€å¤§ç«‹å³æ–‡æ¡£æ•°é‡" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "寻找匹é…çš„ `%c' 是é‡åˆ°äº†æœªé¢„期的文件结æŸç¬¦" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "寻找 `]]' 是é‡åˆ°äº†æœªé¢„期的文件结æŸç¬¦" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "æ¡ä»¶è¡¨è¾¾å¼ä¸­æœ‰è¯­æ³•错误: æœªé¢„æœŸçš„ç¬¦å· `%s'" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "æ¡ä»¶è¡¨è¾¾å¼ä¸­æœ‰è¯­æ³•错误" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "æœªé¢„æœŸçš„ç¬¦å· `%s' ï¼Œéœ€è¦ `)'" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "éœ€è¦ `)'" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "一元æ¡ä»¶è¿ç®—ç¬¦ä½¿ç”¨äº†æœªé¢„æœŸçš„å‚æ•° `%s'" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "一元æ¡ä»¶è¿ç®—ç¬¦ä½¿ç”¨äº†æœªé¢„æœŸçš„å‚æ•°" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "æœªé¢„æœŸçš„ç¬¦å· `%s',需è¦äºŒå…ƒæ¡ä»¶è¿ç®—符" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "需è¦äºŒå…ƒæ¡ä»¶è¿ç®—符" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "二元æ¡ä»¶è¿ç®—ç¬¦ä½¿ç”¨äº†æœªé¢„æœŸçš„å‚æ•° `%s'" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "二元æ¡ä»¶è¿ç®—ç¬¦ä½¿ç”¨äº†æœªé¢„æœŸçš„å‚æ•°" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "æ¡ä»¶å‘½ä»¤ä¸­æœ‰æœªé¢„æœŸçš„ç¬¦å· `%c'" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "æ¡ä»¶å‘½ä»¤ä¸­æœ‰æœªé¢„æœŸçš„ç¬¦å· `%s'" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "æ¡ä»¶å‘½ä»¤ä¸­æœ‰æœªé¢„æœŸçš„ç¬¦å· %d" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "æœªé¢„æœŸçš„ç¬¦å· `%s' 附近有语法错误" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "`%s' 附近有语法错误" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "语法错误: 未预期的文件结尾" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "语法错误" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "使用 \"%s\" 退出 shell 。\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "寻找匹é…çš„ `)' æ—¶é‡åˆ°äº†æœªé¢„期的文件结æŸç¬¦" @@ -1518,6 +1547,11 @@ msgstr "寻找匹é…çš„ `)' æ—¶é‡åˆ°äº†æœªé¢„期的文件结æŸç¬¦" msgid "completion: function `%s' not found" msgstr "补全: 未找到函数 `%s'" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1584,44 +1618,48 @@ msgstr "æ²¡æœ‰ç½‘ç»œæ—¶ä¸æ”¯æŒ /dev/(tcp|udp)/host/port" msgid "redirection error: cannot duplicate fd" msgstr "é‡å®šå‘错误: 无法å¤åˆ¶æ–‡ä»¶æè¿°ç¬¦" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "无法找到 /tmp ,请创建" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp 必须为有效的目录å" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c: 无效的选项" -#: shell.c:1259 +#: shell.c:1282 #, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "无法将 uid 设为 %d: 有效 uid %d" -#: shell.c:1266 +#: shell.c:1289 #, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "无法将 gid 设为 %d: 有效 gid %d" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, c-format msgid "%s: Is a directory" msgstr "%s: 是一个目录" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "没有åå­—ï¼" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash,版本 %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1630,49 +1668,49 @@ msgstr "" "用法:\t%s [GNU 长选项] [选项] ...\n" "\t%s [GNU 长选项] [选项] 脚本文件 ...\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU 长选项:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Shell 选项:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD 或 -c <命令> 或 -O \t\t(仅适åˆè°ƒç”¨)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s 或 -o <选项>\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "请输入`%s -c \"help set\"' 以获得关于 shell 选项的更多信æ¯\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "请输入 `%s -c help' 以获得关于 shell 内建命令的更多信æ¯.\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "请使用`bashbug' å‘½ä»¤æ¥æŠ¥å‘Šé”™è¯¯.\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "bash 首页:\n" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "使用 GNU 软件的通用帮助:\n" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d: 无效的æ“作" @@ -1847,93 +1885,103 @@ msgstr "æœªçŸ¥ä¿¡å· #" msgid "Unknown Signal #%d" msgstr "æœªçŸ¥ä¿¡å· #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "错误的替æ¢: 在 %2$s 中没有闭åˆçš„ `%1$s'" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: 无法将链表赋值给数组æˆå‘˜" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "无法为进程替æ¢åˆ›å»ºç®¡é“" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "无法为进程替æ¢åˆ›å»ºå­è¿›ç¨‹" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "无法打开命åç®¡é“ %s è¿›readline-" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "无法打开命åç®¡é“ %s 进行写入" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "无法将命åç®¡é“ %s 作为文件æè¿°ç¬¦ %d å¤åˆ¶" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "错误的替æ¢: 在 %s 中没有闭åˆçš„ \"`\"" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "无法为命令替æ¢åˆ›å»ºç®¡é“" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "无法为命令替æ¢åˆ›å»ºå­è¿›ç¨‹" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: 无法将管é“å¤åˆ¶ä¸ºæ–‡ä»¶æè¿°ç¬¦ 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: 无效的引用å˜é‡å" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: 错误的替æ¢" -#: subst.c:6682 +#: subst.c:6708 #, c-format msgid "%s: invalid indirect expansion" msgstr "%s: 无效的间接展开" -#: subst.c:6689 +#: subst.c:6715 #, c-format msgid "%s: invalid variable name" msgstr "%s: 无效的å˜é‡å" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: 傿•°ä¸ºç©ºæˆ–未设置" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: å­ä¸²è¡¨è¾¾å¼ < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: 无法这样赋值" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "未æ¥ç‰ˆæœ¬çš„ shell 会强制估值为算术替æ¢" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "错误的替æ¢: 在 %s 中没有闭åˆçš„ \"`\"" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "无匹é…: %s" @@ -1966,7 +2014,7 @@ msgstr "%s: 需è¦ä¸€å…ƒè¡¨è¾¾å¼" msgid "%s: binary operator expected" msgstr "%s: 需è¦äºŒå…ƒè¡¨è¾¾å¼" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "缺少 `]'" @@ -1990,72 +2038,72 @@ msgstr "run_pending_traps: ä¿¡å·å¤„ç†å™¨æ˜¯ SIG_DFLï¼Œé‡æ–°å‘é€ %d (%s) ç»™ msgid "trap_handler: bad signal %d" msgstr "trap_handler: é”™è¯¯çš„ä¿¡å· %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "`%s' 函数定义导入错误" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shell 层次 (%d) 太高,é‡ç½®ä¸º 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: 循环å˜é‡å引用" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: 当å‰ä½œç”¨åŸŸä¸­æ²¡æœ‰å‡½æ•°ä¸Šä¸‹æ–‡" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: å˜é‡ä¸å¯èµ‹å€¼" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: 无效的引用å˜é‡å" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: 当å‰ä½œç”¨åŸŸä¸­æ²¡æœ‰å‡½æ•°ä¸Šä¸‹æ–‡" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s 有空的 exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "%2$s çš„ exportstr 中有无效的字符 %1$d" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s çš„ exportstr 中没有 `='" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: shell_variables çš„å¤´éƒ¨ä¸æ˜¯å‡½æ•°ä¸Šä¸‹æ–‡" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: 没有 global_variables 上下文" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: shell_variables çš„å¤´éƒ¨ä¸æ˜¯ä¸´æ—¶çŽ¯å¢ƒä½œç”¨åŸŸ" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: 无法作为文件打开" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: 追踪文件æè¿°ç¬¦çš„值无效" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: 兼容版本数值越界" @@ -2895,10 +2943,11 @@ msgstr "" " 返回æˆåŠŸé™¤éžä½¿ç”¨äº†æ— æ•ˆé€‰é¡¹æˆ–者å‘生错误。" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "设置å˜é‡çš„值和属性。\n" " \n" @@ -3411,7 +3460,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4783,6 +4832,7 @@ msgstr "" " 返回最åŽä¸€ä¸ªæ‰§è¡Œçš„命令的状æ€ã€‚" #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4792,7 +4842,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "创建一个以 NAME 为å的副进程。\n" " \n" diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo index 755967ef4fa1ad68a5b11ac50ef94647a60a3e36..ce97c4b55306d8a426af222322b44fd517af70c4 100644 GIT binary patch delta 11148 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\n" "Language-Team: Chinese (traditional) \n" @@ -23,46 +23,52 @@ msgstr "" msgid "bad array subscript" msgstr "é™£åˆ—ä¸‹æ¨™ä¸æ­£ç¢º" -#: arrayfunc.c:360 builtins/declare.def:648 +#: arrayfunc.c:368 builtins/declare.def:574 variables.c:2092 variables.c:2118 +#: variables.c:2730 +#, c-format +msgid "%s: removing nameref attribute" +msgstr "" + +#: arrayfunc.c:393 builtins/declare.def:780 #, c-format msgid "%s: cannot convert indexed to associative array" msgstr "%s: 無法將索引陣列轉化為關è¯é™£åˆ—" -#: arrayfunc.c:548 +#: arrayfunc.c:578 #, c-format msgid "%s: invalid associative array key" msgstr "%s: 無效的關è¯é™£åˆ—éµå€¼" -#: arrayfunc.c:550 +#: arrayfunc.c:580 #, c-format msgid "%s: cannot assign to non-numeric index" msgstr "%s: ç„¡æ³•æŒ‡æ´¾ç‚ºéžæ•¸å­—的索引" -#: arrayfunc.c:595 +#: arrayfunc.c:625 #, c-format msgid "%s: %s: must use subscript when assigning associative array" msgstr "%s: %s: 指派為關è¯é™£åˆ—時必須使用下標" -#: bashhist.c:417 +#: bashhist.c:421 #, c-format msgid "%s: cannot create: %s" msgstr "%s: 無法建立: %s" -#: bashline.c:4075 +#: bashline.c:4084 msgid "bash_execute_unix_command: cannot find keymap for command" msgstr "bash_execute_unix_command: 無法為命令找到éµå°æ˜ " -#: bashline.c:4169 +#: bashline.c:4182 #, c-format msgid "%s: first non-whitespace character is not `\"'" msgstr "%s: 第一個éžç©ºå­—å…ƒä¸æ˜¯ã€Œ\"ã€" -#: bashline.c:4198 +#: bashline.c:4211 #, c-format msgid "no closing `%c' in %s" msgstr "%2$s 中沒有閉åˆçš„「%1$cã€" -#: bashline.c:4232 +#: bashline.c:4245 #, c-format msgid "%s: missing colon separator" msgstr "%s: 缺少冒號分隔符" @@ -82,7 +88,7 @@ msgstr "大括號展開: 為 %d 個元素分é…記憶體失敗" msgid "brace expansion: failed to allocate memory for `%s'" msgstr "大括號展開: 為「%sã€åˆ†é…記憶體失敗" -#: builtins/alias.def:132 +#: builtins/alias.def:133 #, c-format msgid "`%s': invalid alias name" msgstr "「%sã€: 無效的別å" @@ -143,11 +149,16 @@ msgstr "" msgid "HOME not set" msgstr "HOME 沒有設置" -#: builtins/cd.def:329 builtins/common.c:167 test.c:878 +#: builtins/cd.def:329 builtins/common.c:167 test.c:885 msgid "too many arguments" msgstr "太多引數" -#: builtins/cd.def:340 +#: builtins/cd.def:336 +#, fuzzy +msgid "null directory" +msgstr "無其他目錄" + +#: builtins/cd.def:347 msgid "OLDPWD not set" msgstr "OLDPWD 沒有設置" @@ -166,7 +177,7 @@ msgstr "警告:" msgid "%s: usage: " msgstr "%s: 用法:" -#: builtins/common.c:199 shell.c:511 shell.c:802 +#: builtins/common.c:199 shell.c:514 shell.c:825 #, c-format msgid "%s: option requires an argument" msgstr "%s:é¸é …需è¦ä¸€å€‹å¼•數" @@ -181,7 +192,7 @@ msgstr "%sï¼šéœ€è¦æ•¸å­—引數" msgid "%s: not found" msgstr "%s:沒有找到" -#: builtins/common.c:222 shell.c:815 +#: builtins/common.c:222 shell.c:838 #, c-format msgid "%s: invalid option" msgstr "%s:無效é¸é …" @@ -191,7 +202,7 @@ msgstr "%s:無效é¸é …" msgid "%s: invalid option name" msgstr "%s:無效é¸é …å稱" -#: builtins/common.c:236 general.c:242 general.c:247 +#: builtins/common.c:236 general.c:293 general.c:298 #, c-format msgid "`%s': not a valid identifier" msgstr "「%sã€ï¼šä¸æ˜¯ä¸€å€‹æœ‰æ•ˆçš„識別符" @@ -300,7 +311,7 @@ msgid "%s: invalid action name" msgstr "%s:無效的功能å稱" #: builtins/complete.def:452 builtins/complete.def:647 -#: builtins/complete.def:857 +#: builtins/complete.def:858 #, c-format msgid "%s: no completion specification" msgstr "%s:沒有完æˆçš„è¦æ ¼" @@ -313,7 +324,7 @@ msgstr "警告: -F é¸é …å¯èƒ½ç„¡æ³•æŒ‰é æœŸå·¥ä½œ" msgid "warning: -C option may not work as you expect" msgstr "警告: -C é¸é …å¯èƒ½ç„¡æ³•æŒ‰é æœŸå·¥ä½œ" -#: builtins/complete.def:830 +#: builtins/complete.def:831 msgid "not currently executing completion function" msgstr "ç•¶å‰æœªåŸ·è¡Œè£œå®ŒåŠŸèƒ½" @@ -321,41 +332,47 @@ msgstr "ç•¶å‰æœªåŸ·è¡Œè£œå®ŒåŠŸèƒ½" msgid "can only be used in a function" msgstr "åªèƒ½ç”¨åœ¨å‡½æ•¸ä¸­" -#: builtins/declare.def:331 builtins/declare.def:567 +#: builtins/declare.def:332 builtins/declare.def:685 #, c-format msgid "%s: reference variable cannot be an array" msgstr "%s: 引用變數ä¸èƒ½ç‚ºé™£åˆ—" -#: builtins/declare.def:340 +#: builtins/declare.def:343 variables.c:2959 #, c-format msgid "%s: nameref variable self references not allowed" msgstr "%s: ä¸å…許å稱引用變數引用自身" -#: builtins/declare.def:347 builtins/declare.def:576 subst.c:6474 subst.c:8796 +#: builtins/declare.def:348 variables.c:1928 variables.c:2877 variables.c:2889 +#: variables.c:2956 #, c-format -msgid "%s: invalid variable name for name reference" +msgid "%s: circular name reference" +msgstr "%s: 迴圈變數å引用" + +#: builtins/declare.def:353 builtins/declare.def:691 builtins/declare.def:702 +#, fuzzy, c-format +msgid "`%s': invalid variable name for name reference" msgstr "%s: 無效的引用變數å" -#: builtins/declare.def:425 +#: builtins/declare.def:463 msgid "cannot use `-f' to make functions" msgstr "無法用「-fã€ç”Ÿæˆå‡½æ•¸" -#: builtins/declare.def:437 execute_cmd.c:5562 +#: builtins/declare.def:475 execute_cmd.c:5608 #, c-format msgid "%s: readonly function" msgstr "%s:唯讀函數" -#: builtins/declare.def:621 +#: builtins/declare.def:753 #, c-format msgid "%s: quoted compound array assignment deprecated" msgstr "" -#: builtins/declare.def:635 +#: builtins/declare.def:767 #, c-format msgid "%s: cannot destroy array variables in this way" msgstr "%s: 無法以這種方å¼éŠ·æ¯€é™£åˆ—è®Šæ•¸" -#: builtins/declare.def:642 builtins/read.def:751 +#: builtins/declare.def:774 builtins/read.def:751 #, c-format msgid "%s: cannot convert associative to indexed array" msgstr "%s: 無法將關è¯é™£åˆ—轉化為索引陣列" @@ -389,7 +406,7 @@ msgstr "%s: 未以動態方å¼è¼‰å…¥" msgid "%s: cannot delete: %s" msgstr "%s: 無法刪除: %s" -#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5404 +#: builtins/evalfile.c:144 builtins/hash.def:172 execute_cmd.c:5449 #, c-format msgid "%s: is a directory" msgstr "%s: 是一個目錄" @@ -404,7 +421,7 @@ msgstr "%s: 䏿˜¯å¸¸è¦æª”案" msgid "%s: file is too large" msgstr "%s: 檔案太大" -#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1553 +#: builtins/evalfile.c:194 builtins/evalfile.c:212 shell.c:1578 #, c-format msgid "%s: cannot execute binary file" msgstr "%s: ç„¡æ³•åŸ·è¡ŒäºŒé€²ä½æª”案" @@ -446,7 +463,7 @@ msgstr "æ­·å²è¨˜éŒ„è¦æ ¼" msgid "%s: cannot open temp file: %s" msgstr "%s: 無法開啟臨時檔案: %s" -#: builtins/fg_bg.def:153 builtins/jobs.def:283 +#: builtins/fg_bg.def:153 builtins/jobs.def:284 msgid "current" msgstr "ç•¶å‰" @@ -789,21 +806,21 @@ msgstr "讀å–錯誤: %d: %s" msgid "can only `return' from a function or sourced script" msgstr "åªèƒ½å¾žå‡½æ•¸æˆ–者原始指令稿「returnã€" -#: builtins/set.def:831 +#: builtins/set.def:841 msgid "cannot simultaneously unset a function and a variable" msgstr "ç„¡æ³•åŒæ™‚å–æ¶ˆè¨­å®šä¸€å€‹å‡½æ•¸å’Œä¸€å€‹è®Šæ•¸" -#: builtins/set.def:878 +#: builtins/set.def:888 #, c-format msgid "%s: cannot unset" msgstr "%s: ç„¡æ³•å–æ¶ˆè¨­å®š" -#: builtins/set.def:899 +#: builtins/set.def:909 variables.c:3389 #, c-format msgid "%s: cannot unset: readonly %s" msgstr "%s: ç„¡æ³•å–æ¶ˆè¨­å®š: 唯讀 %s" -#: builtins/set.def:912 +#: builtins/set.def:922 #, c-format msgid "%s: not an array variable" msgstr "%s: 䏿˜¯é™£åˆ—變數" @@ -822,11 +839,11 @@ msgstr "%s: ç„¡æ³•å–æ¶ˆè¨­å®š" msgid "shift count" msgstr "ä½ç§»è¨ˆæ•¸" -#: builtins/shopt.def:286 +#: builtins/shopt.def:289 msgid "cannot set and unset shell options simultaneously" msgstr "ç„¡æ³•åŒæ™‚è¨­å®šå’Œå–æ¶ˆè¨­å®š shell é¸é …" -#: builtins/shopt.def:353 +#: builtins/shopt.def:391 #, c-format msgid "%s: invalid shell option name" msgstr "%s: 無效的 shell é¸é …å稱" @@ -972,61 +989,66 @@ msgstr "\a 等待輸入逾時:自動登出\n" msgid "cannot redirect standard input from /dev/null: %s" msgstr "無法從 /dev/null é‡å®šå‘標準輸入: %s" -#: execute_cmd.c:1273 +#: execute_cmd.c:1275 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" msgstr "時間格å¼:「%cã€: 無效的格å¼å­—å…ƒ" -#: execute_cmd.c:2344 +#: execute_cmd.c:2273 +#, c-format +msgid "execute_coproc: coproc [%d:%s] still exists" +msgstr "" + +#: execute_cmd.c:2377 msgid "pipe error" msgstr "管é“錯誤" -#: execute_cmd.c:4430 +#: execute_cmd.c:4475 #, fuzzy, c-format msgid "eval: maximum eval nesting level exceeded (%d)" msgstr "%s: 超出最大函數巢狀層數 (%d)" -#: execute_cmd.c:4442 +#: execute_cmd.c:4487 #, fuzzy, c-format msgid "%s: maximum source nesting level exceeded (%d)" msgstr "%s: 超出最大函數巢狀層數 (%d)" -#: execute_cmd.c:4550 +#: execute_cmd.c:4595 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" msgstr "%s: 超出最大函數巢狀層數 (%d)" -#: execute_cmd.c:5077 +#: execute_cmd.c:5122 #, c-format msgid "%s: restricted: cannot specify `/' in command names" msgstr "%s: å—é™çš„: 無法在命令å稱中使用「/ã€" -#: execute_cmd.c:5165 +#: execute_cmd.c:5210 #, c-format msgid "%s: command not found" msgstr "%s:命令找ä¸åˆ°" -#: execute_cmd.c:5402 +#: execute_cmd.c:5447 #, c-format msgid "%s: %s" msgstr "%s: %s" -#: execute_cmd.c:5439 +#: execute_cmd.c:5484 #, c-format msgid "%s: %s: bad interpreter" msgstr "%s: %s: ä¸ç•¶çš„直譯器" -#: execute_cmd.c:5476 +#: execute_cmd.c:5521 #, c-format msgid "%s: cannot execute binary file: %s" msgstr "%s: ç„¡æ³•åŸ·è¡ŒäºŒé€²ä½æª”案: %s" -#: execute_cmd.c:5553 +#: execute_cmd.c:5599 #, c-format msgid "`%s': is a special builtin" msgstr "「%sã€: 特殊內建" -#: execute_cmd.c:5605 +#: execute_cmd.c:5651 #, c-format msgid "cannot duplicate fd %d to fd %d" msgstr "無法複製檔案æè¿°ç¬¦ %d 到檔案æè¿°ç¬¦ %d" @@ -1101,7 +1123,7 @@ msgstr "%s: 表示å¼éŒ¯èª¤\n" msgid "getcwd: cannot access parent directories" msgstr "getcwd: 無法訪å•上層目錄" -#: input.c:102 subst.c:5763 +#: input.c:102 subst.c:5767 #, c-format msgid "cannot reset nodelay mode for fd %d" msgstr "無法為檔案æè¿°ç¬¦ %d é‡ç½®ç„¡å»¶é²æ¨¡å¼" @@ -1116,148 +1138,148 @@ msgstr "無法從檔案æè¿°ç¬¦ %d 為 bash 的輸入ç²å–一個新的檔案 msgid "save_bash_input: buffer already exists for new fd %d" msgstr "save_bash_input: 已經存在新的檔案æè¿°ç¬¦ %d 的緩è¡å€" -#: jobs.c:521 +#: jobs.c:523 msgid "start_pipeline: pgrp pipe" msgstr "start_pipeline: 行程群組管é“" -#: jobs.c:1029 +#: jobs.c:1031 #, c-format msgid "forked pid %d appears in running job %d" msgstr "生æˆçš„行程識別號 %d 顯示為執行中的工作 %d" -#: jobs.c:1148 +#: jobs.c:1150 #, c-format msgid "deleting stopped job %d with process group %ld" msgstr "刪除行程群組 %2$ld ä¸­å·²åœæ­¢çš„工作 %1$d" -#: jobs.c:1252 +#: jobs.c:1254 #, c-format msgid "add_process: process %5ld (%s) in the_pipeline" msgstr "add_process: 行程 %5ld(%s) 進入 the_pipeline" -#: jobs.c:1255 +#: jobs.c:1257 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" msgstr "add_process: 行程識別號 %5ld(%s) æ¨™è¨»ç‚ºä»æ´»è‘—" -#: jobs.c:1584 +#: jobs.c:1586 #, c-format msgid "describe_pid: %ld: no such pid" msgstr "describe_pid: %ld: 無此行程識別號" -#: jobs.c:1599 +#: jobs.c:1601 #, c-format msgid "Signal %d" msgstr "訊號 %d" -#: jobs.c:1613 jobs.c:1639 +#: jobs.c:1615 jobs.c:1641 msgid "Done" msgstr "已完æˆ" -#: jobs.c:1618 siglist.c:123 +#: jobs.c:1620 siglist.c:123 msgid "Stopped" msgstr "å·²åœæ­¢" -#: jobs.c:1622 +#: jobs.c:1624 #, c-format msgid "Stopped(%s)" msgstr "å·²åœæ­¢(%s)" -#: jobs.c:1626 +#: jobs.c:1628 msgid "Running" msgstr "執行中" -#: jobs.c:1643 +#: jobs.c:1645 #, c-format msgid "Done(%d)" msgstr "已完æˆ(%d)" -#: jobs.c:1645 +#: jobs.c:1647 #, c-format msgid "Exit %d" msgstr "退出 %d" -#: jobs.c:1648 +#: jobs.c:1650 msgid "Unknown status" msgstr "䏿˜Žç‹€æ…‹" -#: jobs.c:1735 +#: jobs.c:1737 #, c-format msgid "(core dumped) " msgstr "(核心已傾å°)" -#: jobs.c:1754 +#: jobs.c:1756 #, c-format msgid " (wd: %s)" msgstr " (工作目錄: %s)" -#: jobs.c:1978 +#: jobs.c:1981 #, c-format msgid "child setpgid (%ld to %ld)" msgstr "å­è¡Œç¨‹ setpgid (%ld 到 %ld)" -#: jobs.c:2336 nojobs.c:648 +#: jobs.c:2343 nojobs.c:653 #, c-format msgid "wait: pid %ld is not a child of this shell" msgstr "wait: 行程識別號 %ld 䏿˜¯ç•¶å‰ shell çš„å­è¡Œç¨‹" -#: jobs.c:2591 +#: jobs.c:2598 #, c-format msgid "wait_for: No record of process %ld" msgstr "wiat_for: 沒有行程 %ld 的記錄" -#: jobs.c:2909 +#: jobs.c:2920 #, c-format msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: 工作 %d å·²åœæ­¢" -#: jobs.c:3201 +#: jobs.c:3212 #, c-format msgid "%s: job has terminated" msgstr "%s: 工作已經終止" -#: jobs.c:3210 +#: jobs.c:3221 #, c-format msgid "%s: job %d already in background" msgstr "%s: 工作 %d 已在背景執行" -#: jobs.c:3435 +#: jobs.c:3446 msgid "waitchld: turning on WNOHANG to avoid indefinite block" msgstr "waitchld: 開啟 WNOHANG 以é¿å…ç„¡é™é˜»å¡ž" -#: jobs.c:3948 +#: jobs.c:3959 #, c-format msgid "%s: line %d: " msgstr "%s: 第 %d 列:" -#: jobs.c:3962 nojobs.c:891 +#: jobs.c:3973 nojobs.c:896 #, c-format msgid " (core dumped)" msgstr " (核心已傾å°)" -#: jobs.c:3974 jobs.c:3987 +#: jobs.c:3985 jobs.c:3998 #, c-format msgid "(wd now: %s)\n" msgstr "(ç•¶å‰å·¥ä½œç›®éŒ„:%s)\n" -#: jobs.c:4019 +#: jobs.c:4030 msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp 失敗" -#: jobs.c:4082 +#: jobs.c:4093 msgid "initialize_job_control: line discipline" msgstr "initialize_job_control: 列è¦å¾‹" -#: jobs.c:4092 +#: jobs.c:4103 msgid "initialize_job_control: setpgid" msgstr "initialize_job_control: setpgid" -#: jobs.c:4113 jobs.c:4122 +#: jobs.c:4124 jobs.c:4133 #, c-format msgid "cannot set terminal process group (%d)" msgstr "無法設定終端行程群組(%d)" -#: jobs.c:4127 +#: jobs.c:4138 msgid "no job control in this shell" msgstr "æ­¤ shell 中無工作控制" @@ -1410,103 +1432,110 @@ msgstr "ç«‹å³æ–‡ä»¶åœ¨ç¬¬ %d åˆ—è¢«æª”æ¡ˆçµæŸç¬¦åˆ†éš” (需è¦ã€Œ%sã€)" msgid "make_redirection: redirection instruction `%d' out of range" msgstr "make_redirectionï¼šé‡æ–°å°Žå‘指示「%dã€è¶…出範åœ" -#: parse.y:2691 +#: parse.y:2324 +#, c-format +msgid "" +"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " +"truncated" +msgstr "" + +#: parse.y:2700 msgid "maximum here-document count exceeded" msgstr "" -#: parse.y:3379 parse.y:3662 +#: parse.y:3390 parse.y:3748 #, c-format msgid "unexpected EOF while looking for matching `%c'" msgstr "尋找匹é…的「%cã€æ™‚é‡åˆ°äº†æœªé æœŸçš„æª”æ¡ˆçµæŸç¬¦" -#: parse.y:4279 +#: parse.y:4410 msgid "unexpected EOF while looking for `]]'" msgstr "尋找「]]ã€æ™‚é‡åˆ°äº†æœªé æœŸçš„æª”æ¡ˆçµæŸç¬¦" -#: parse.y:4284 +#: parse.y:4415 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" msgstr "æ¢ä»¶è¡¨ç¤ºå¼ä¸­æœ‰èªžæ³•錯誤: æœªé æœŸçš„字組「%sã€" -#: parse.y:4288 +#: parse.y:4419 msgid "syntax error in conditional expression" msgstr "語法錯誤,在有æ¢ä»¶çš„表示å¼" -#: parse.y:4366 +#: parse.y:4497 #, c-format msgid "unexpected token `%s', expected `)'" msgstr "æœªé æœŸçš„字組「%sã€ï¼Œéœ€è¦ã€Œ)ã€" -#: parse.y:4370 +#: parse.y:4501 msgid "expected `)'" msgstr "é æœŸã€Œ)ã€" -#: parse.y:4398 +#: parse.y:4529 #, c-format msgid "unexpected argument `%s' to conditional unary operator" msgstr "一元æ¢ä»¶é‹ç®—å­ä½¿ç”¨äº†æœªé æœŸçš„引數「%sã€" -#: parse.y:4402 +#: parse.y:4533 msgid "unexpected argument to conditional unary operator" msgstr "一元æ¢ä»¶é‹ç®—å­ä½¿ç”¨äº†æœªé æœŸçš„引數" -#: parse.y:4448 +#: parse.y:4579 #, c-format msgid "unexpected token `%s', conditional binary operator expected" msgstr "æœªé æœŸçš„字組「%sã€ï¼Œéœ€è¦äºŒå…ƒæ¢ä»¶é‹ç®—å­" -#: parse.y:4452 +#: parse.y:4583 msgid "conditional binary operator expected" msgstr "需è¦äºŒå…ƒæ¢ä»¶é‹ç®—å­" -#: parse.y:4474 +#: parse.y:4605 #, c-format msgid "unexpected argument `%s' to conditional binary operator" msgstr "二元æ¢ä»¶é‹ç®—å­ä½¿ç”¨äº†æœªé æœŸçš„引數「%sã€" -#: parse.y:4478 +#: parse.y:4609 msgid "unexpected argument to conditional binary operator" msgstr "二元æ¢ä»¶é‹ç®—å­ä½¿ç”¨äº†æœªé æœŸçš„引數" -#: parse.y:4489 +#: parse.y:4620 #, c-format msgid "unexpected token `%c' in conditional command" msgstr "æ¢ä»¶å‘½ä»¤ä¸­æœ‰æœªé æœŸçš„字組「%cã€" -#: parse.y:4492 +#: parse.y:4623 #, c-format msgid "unexpected token `%s' in conditional command" msgstr "æ¢ä»¶å‘½ä»¤ä¸­æœ‰æœªé æœŸçš„字組「%sã€" -#: parse.y:4496 +#: parse.y:4627 #, c-format msgid "unexpected token %d in conditional command" msgstr "æ¢ä»¶å‘½ä»¤ä¸­æœ‰æœªé æœŸçš„字組 %d" -#: parse.y:5853 +#: parse.y:5995 #, c-format msgid "syntax error near unexpected token `%s'" msgstr "æœªé æœŸçš„字組「%sã€é™„近有語法錯誤" -#: parse.y:5871 +#: parse.y:6013 #, c-format msgid "syntax error near `%s'" msgstr "「%sã€é™„近有語法錯誤" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error: unexpected end of file" msgstr "語法錯誤: æœªé æœŸçš„æª”案çµå°¾" -#: parse.y:5881 +#: parse.y:6023 msgid "syntax error" msgstr "語法錯誤" -#: parse.y:5943 +#: parse.y:6085 #, c-format msgid "Use \"%s\" to leave the shell.\n" msgstr "使用「%sã€é€€å‡º shell 。\n" -#: parse.y:6105 +#: parse.y:6247 msgid "unexpected EOF while looking for matching `)'" msgstr "尋找匹é…的「)ã€æ™‚é‡åˆ°äº†æœªé æœŸçš„æª”æ¡ˆçµæŸç¬¦" @@ -1515,6 +1544,11 @@ msgstr "尋找匹é…的「)ã€æ™‚é‡åˆ°äº†æœªé æœŸçš„æª”æ¡ˆçµæŸç¬¦" msgid "completion: function `%s' not found" msgstr "補完: 未找到函數「%sã€" +#: pcomplete.c:1646 +#, c-format +msgid "programmable_completion: %s: possible retry loop" +msgstr "" + #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" @@ -1581,44 +1615,48 @@ msgstr "æ²’æœ‰ç¶²è·¯æ™‚ä¸æ”¯æ´ /dev/(tcp|udp)/host/port" msgid "redirection error: cannot duplicate fd" msgstr "é‡å®šå‘錯誤: 無法複製檔案æè¿°ç¬¦" -#: shell.c:344 +#: shell.c:347 msgid "could not find /tmp, please create!" msgstr "無法找到 /tmp ,請建立" -#: shell.c:348 +#: shell.c:351 msgid "/tmp must be a valid directory name" msgstr "/tmp 必須為有效的目錄å稱" -#: shell.c:904 +#: shell.c:927 #, c-format msgid "%c%c: invalid option" msgstr "%c%c:無效é¸é …" -#: shell.c:1259 +#: shell.c:1282 #, fuzzy, c-format msgid "cannot set uid to %d: effective uid %d" msgstr "無法為檔案æè¿°ç¬¦ %d é‡ç½®ç„¡å»¶é²æ¨¡å¼" -#: shell.c:1266 +#: shell.c:1289 #, fuzzy, c-format msgid "cannot set gid to %d: effective gid %d" msgstr "無法為檔案æè¿°ç¬¦ %d é‡ç½®ç„¡å»¶é²æ¨¡å¼" -#: shell.c:1541 +#: shell.c:1458 +msgid "cannot start debugger; debugging mode disabled" +msgstr "" + +#: shell.c:1566 #, fuzzy, c-format msgid "%s: Is a directory" msgstr "%s: 是一個目錄" -#: shell.c:1752 +#: shell.c:1777 msgid "I have no name!" msgstr "我沒有åå­—ï¼" -#: shell.c:1905 +#: shell.c:1930 #, c-format msgid "GNU bash, version %s-(%s)\n" msgstr "GNU bash,版本 %s-(%s)\n" -#: shell.c:1906 +#: shell.c:1931 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" @@ -1627,49 +1665,49 @@ msgstr "" "用法:\t%s [GNU é•·é¸é …] [é¸é …] …\n" "\t%s [GNU é•·é¸é …] [é¸é …] 指令稿檔案 …\n" -#: shell.c:1908 +#: shell.c:1933 msgid "GNU long options:\n" msgstr "GNU é•·é¸é …:\n" -#: shell.c:1912 +#: shell.c:1937 msgid "Shell options:\n" msgstr "Shell é¸é …:\n" -#: shell.c:1913 +#: shell.c:1938 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" msgstr "\t-irsD 或 -c <命令> 或 -O \t\t(僅é©åˆå‘¼å«)\n" -#: shell.c:1928 +#: shell.c:1953 #, c-format msgid "\t-%s or -o option\n" msgstr "\t-%s or -o é¸é …\n" -#: shell.c:1934 +#: shell.c:1959 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" msgstr "輸入「%s -c \"help set\"ã€æ›´å¤šé—œæ–¼ shell é¸é …的訊æ¯ã€‚\n" -#: shell.c:1935 +#: shell.c:1960 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" msgstr "輸入「%s -c helpã€æ›´å¤šé—œæ–¼å…§å»º shell 命令的訊æ¯ã€‚\n" -#: shell.c:1936 +#: shell.c:1961 #, c-format msgid "Use the `bashbug' command to report bugs.\n" msgstr "使用「bashbugã€å‘½ä»¤é€šå ±ç¨‹å¼éŒ¯èª¤ã€‚\n" -#: shell.c:1938 +#: shell.c:1963 #, c-format msgid "bash home page: \n" msgstr "" -#: shell.c:1939 +#: shell.c:1964 #, c-format msgid "General help using GNU software: \n" msgstr "" -#: sig.c:703 +#: sig.c:707 #, c-format msgid "sigprocmask: %d: invalid operation" msgstr "sigprocmask: %d:無效æ“作" @@ -1843,93 +1881,103 @@ msgstr "䏿˜Žè¨Šè™Ÿ #" msgid "Unknown Signal #%d" msgstr "䏿˜Žè¨Šè™Ÿ #%d" -#: subst.c:1415 subst.c:1573 +#: subst.c:1418 subst.c:1576 #, c-format msgid "bad substitution: no closing `%s' in %s" msgstr "錯誤的替æ›: 在 %2$s 中沒有閉åˆçš„「%1$sã€" -#: subst.c:3099 +#: subst.c:3103 #, c-format msgid "%s: cannot assign list to array member" msgstr "%s: 無法將串列指派給陣列æˆå“¡" -#: subst.c:5645 subst.c:5661 +#: subst.c:5649 subst.c:5665 msgid "cannot make pipe for process substitution" msgstr "無法為行程替æ›å»ºç«‹ç®¡é“" -#: subst.c:5703 +#: subst.c:5707 msgid "cannot make child for process substitution" msgstr "無法為行程替æ›å»ºç«‹å­è¡Œç¨‹" -#: subst.c:5753 +#: subst.c:5757 #, c-format msgid "cannot open named pipe %s for reading" msgstr "無法開啟命åç®¡é“ %s 進 readline-" -#: subst.c:5755 +#: subst.c:5759 #, c-format msgid "cannot open named pipe %s for writing" msgstr "無法開啟命åç®¡é“ %s 進行寫入" -#: subst.c:5778 +#: subst.c:5782 #, c-format msgid "cannot duplicate named pipe %s as fd %d" msgstr "無法將命åç®¡é“ %s åšç‚ºæª”案æè¿°ç¬¦ %d 複製" -#: subst.c:5988 +#: subst.c:5868 +#, fuzzy +msgid "command substitution: ignored null byte in input" +msgstr "錯誤的替æ›: 在 %s 中沒有閉åˆçš„「`ã€" + +#: subst.c:5992 msgid "cannot make pipe for command substitution" msgstr "無法為命令替æ›å»ºç«‹ç®¡é“" -#: subst.c:6027 +#: subst.c:6036 msgid "cannot make child for command substitution" msgstr "無法為命令替æ›å»ºç«‹å­è¡Œç¨‹" -#: subst.c:6050 +#: subst.c:6062 msgid "command_substitute: cannot duplicate pipe as fd 1" msgstr "command_substitute: 無法將管é“複製為檔案æè¿°ç¬¦ 1" -#: subst.c:6560 subst.c:8222 subst.c:8242 +#: subst.c:6488 subst.c:8834 +#, c-format +msgid "%s: invalid variable name for name reference" +msgstr "%s: 無效的引用變數å" + +#: subst.c:6574 subst.c:8249 subst.c:8269 #, c-format msgid "%s: bad substitution" msgstr "%s: 錯誤的替æ›" -#: subst.c:6682 +#: subst.c:6708 #, fuzzy, c-format msgid "%s: invalid indirect expansion" msgstr "%s: 無效的列數" -#: subst.c:6689 +#: subst.c:6715 #, fuzzy, c-format msgid "%s: invalid variable name" msgstr "「%sã€: 無效的別å" -#: subst.c:6736 +#: subst.c:6762 #, c-format msgid "%s: parameter null or not set" msgstr "%s: åƒæ•¸ç‚ºç©ºæˆ–未設定" -#: subst.c:6971 subst.c:6986 +#: subst.c:6997 subst.c:7012 #, c-format msgid "%s: substring expression < 0" msgstr "%s: å­ä¸²è¡¨ç¤ºå¼ < 0" -#: subst.c:8320 +#: subst.c:8348 #, c-format msgid "$%s: cannot assign in this way" msgstr "$%s: 無法如此指派" -#: subst.c:8659 +#: subst.c:8697 msgid "" "future versions of the shell will force evaluation as an arithmetic " "substitution" msgstr "未來版本的 shell æœƒå¼·åˆ¶ä»¥ç®—è¡“æ›¿æ›æ±‚值" -#: subst.c:9199 +#: subst.c:9242 #, c-format msgid "bad substitution: no closing \"`\" in %s" msgstr "錯誤的替æ›: 在 %s 中沒有閉åˆçš„「`ã€" -#: subst.c:10139 +#: subst.c:10186 #, c-format msgid "no match: %s" msgstr "無匹é…: %s" @@ -1962,7 +2010,7 @@ msgstr "%s: 需è¦ä¸€å…ƒè¡¨ç¤ºå¼" msgid "%s: binary operator expected" msgstr "%s: 需è¦äºŒå…ƒè¡¨ç¤ºå¼" -#: test.c:862 +#: test.c:869 msgid "missing `]'" msgstr "缺少「]ã€" @@ -1986,72 +2034,72 @@ msgstr "run_pending_traps: ä¿¡è™Ÿè™•ç†æ˜¯ SIG_DFL,resending %d (%s) to myse msgid "trap_handler: bad signal %d" msgstr "trap_handler:ä¸ç•¶çš„信號 %d" -#: variables.c:406 +#: variables.c:409 #, c-format msgid "error importing function definition for `%s'" msgstr "錯誤,輸入的函數定義為「%sã€" -#: variables.c:810 +#: variables.c:814 #, c-format msgid "shell level (%d) too high, resetting to 1" msgstr "shell 層次 (%d) 太高,é‡ç½®ç‚º 1" -#: variables.c:1916 -#, c-format -msgid "%s: circular name reference" -msgstr "%s: 迴圈變數å引用" - -#: variables.c:2328 +#: variables.c:2413 msgid "make_local_variable: no function context at current scope" msgstr "make_local_variable: ç•¶å‰ä½œç”¨åŸŸä¸­æ²’有函數語境" -#: variables.c:2347 +#: variables.c:2432 #, c-format msgid "%s: variable may not be assigned value" msgstr "%s: 變數ä¸å¯æŒ‡æ´¾å€¼" -#: variables.c:3753 +#: variables.c:3043 +#, fuzzy, c-format +msgid "%s: assigning integer to name reference" +msgstr "%s: 無效的引用變數å" + +#: variables.c:3940 msgid "all_local_variables: no function context at current scope" msgstr "all_local_variables: ç•¶å‰ä½œç”¨åŸŸä¸­æ²’有函數語境" -#: variables.c:4030 +#: variables.c:4218 #, c-format msgid "%s has null exportstr" msgstr "%s 有空的 exportstr" -#: variables.c:4035 variables.c:4044 +#: variables.c:4223 variables.c:4232 #, c-format msgid "invalid character %d in exportstr for %s" msgstr "%2$s çš„ exportstr 中有無效的字元 %1$d" -#: variables.c:4050 +#: variables.c:4238 #, c-format msgid "no `=' in exportstr for %s" msgstr "%s çš„ exportstr 中沒有「=ã€" -#: variables.c:4495 +#: variables.c:4684 msgid "pop_var_context: head of shell_variables not a function context" msgstr "pop_var_context: shell_variables çš„å‰ç«¯ä¸æ˜¯å‡½æ•¸èªžå¢ƒ" -#: variables.c:4508 +#: variables.c:4697 msgid "pop_var_context: no global_variables context" msgstr "pop_var_context: 沒有 global_variables 語境" -#: variables.c:4582 +#: variables.c:4772 msgid "pop_scope: head of shell_variables not a temporary environment scope" msgstr "pop_scope: shell_variables çš„å‰ç«¯ä¸æ˜¯è‡¨æ™‚環境作用域" -#: variables.c:5426 +#: variables.c:5619 #, c-format msgid "%s: %s: cannot open as FILE" msgstr "%s: %s: 無法åšç‚ºæª”案開啟" -#: variables.c:5431 +#: variables.c:5624 #, c-format msgid "%s: %s: invalid value for trace file descriptor" msgstr "%s: %s: 追蹤檔案æè¿°ç¬¦çš„值無效" -#: variables.c:5476 +#: variables.c:5669 #, c-format msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: 相容版本數值超出範åœ" @@ -2906,10 +2954,11 @@ msgstr "" " 回傳æˆåŠŸé™¤éžä½¿ç”¨äº†ç„¡æ•ˆé¸é …或者發生錯誤。" #: builtins.c:530 +#, fuzzy msgid "" "Set variable values and attributes.\n" " \n" -" Obsolete. See `help declare'." +" A synonym for `declare'. See `help declare'." msgstr "" "設定變數的值和屬性。\n" " \n" @@ -3427,7 +3476,7 @@ msgid "" " \n" " Options:\n" " -c\tclear the history list by deleting all of the entries\n" -" -d offset\tdelete the history entry at offset OFFSET.\n" +" -d offset\tdelete the history entry at position OFFSET.\n" " \n" " -a\tappend history lines from this session to the history file\n" " -n\tread all history lines not already read from the history file\n" @@ -4804,6 +4853,7 @@ msgstr "" " 回傳最後一個執行命令的狀態。" #: builtins.c:1653 +#, fuzzy msgid "" "Create a coprocess named NAME.\n" " \n" @@ -4813,7 +4863,7 @@ msgid "" " The default NAME is \"COPROC\".\n" " \n" " Exit Status:\n" -" Returns the exit status of COMMAND." +" The coproc command returns an exit status of 0." msgstr "" "建立一個以 NAME 為å的副行程。\n" " \n" diff --git a/tests/extglob4.sub b/tests/extglob4.sub index b76869b7..2ec8f319 100644 --- a/tests/extglob4.sub +++ b/tests/extglob4.sub @@ -1,3 +1,6 @@ +LANG=C +LC_ALL=C + : ${TMPDIR:=/tmp} GTDIR=$TMPDIR/extglob4-$$ diff --git a/tests/nameref.right b/tests/nameref.right index 9ad0aee4..53002595 100644 --- a/tests/nameref.right +++ b/tests/nameref.right @@ -235,7 +235,6 @@ declare -a foo=([0]="7") ./nameref12.sub: line 26: declare: `42': not a valid identifier ./nameref12.sub: line 27: declare: x: not found declare -nr RO="foo" -0 0 / ./nameref12.sub: line 45: declare: `7*6': not a valid identifier ./nameref12.sub: line 45: declare: foo: not found diff --git a/tests/nameref11.sub b/tests/nameref11.sub index b1ac686c..85feedfa 100644 --- a/tests/nameref11.sub +++ b/tests/nameref11.sub @@ -11,7 +11,7 @@ f() { declare -n r; }; r=/ f ; unset r f() { echo $r; }; declare -n r; r=/ f ; unset -n r declare -n r; : ${r:=/} ; unset -n r declare -n r; exec {r}>/dev/null ; unset -n r -declare -n r; coproc r { :; }; echo $r ; unset r +declare -n r; coproc r { :; }; echo $r ; unset r ; wait declare -r RO=x; r=$RO; declare -n r; x=y; declare -n RO; RO=z; declare -p RO; echo "$RO" s=/; declare -n r=s; declare -n s; echo $r ; unset -n r ; unset -n s declare -n r=s; declare -n s; s=/ ; unset -n r; unset -n s diff --git a/tests/nameref12.sub b/tests/nameref12.sub index 531d4e87..24c33702 100644 --- a/tests/nameref12.sub +++ b/tests/nameref12.sub @@ -36,7 +36,7 @@ unset -n r; unset r f() { echo $r; } declare -n r -r=/ /usr/bin/sum < /dev/null +r=/ ${THIS_SH} < /dev/null r=/ f unset -f f