diff --git a/ChangeLog b/ChangeLog index 81de722..705e99a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,297 @@ +2017-07-10 Gavin Smith + + * pretest 6.4.90 + * configure.ac: Update version. Add dist-xz to options. + +2017-07-10 Gavin Smith + + * tp/Texinfo/Convert/XSParagraph: Run gnulib-tool --add-import. + * (top-level): Run gnulib-tool --add-import. + +2017-07-10 Gavin Smith + + * doc/Makefile.am (wwwdoc-build): Remove commands that could + build the "info" manual. + +2017-07-10 Gavin Smith + + * NEWS: Update with various news items. + +2017-07-09 Gavin Smith + + * info/nodes.c (info_find_subfile): When looking for an + already-loaded file, check that the names match either exactly, + or as an initial substring followed by a period. Previously, + any loaded file which had an initial substring that was the name + of the sought file would be accepted, which would be incorrect + for a case like "libc.info-11" matching when it was "libc.info-1" + that was wanted. Vitezslav Crhonek reported that this could + lead to failure when following cross-references. + + * info/t/subfile-initial-match.sh: New test. + +2017-07-09 Gavin Smith + + * info/nodes.c (info_get_node_with_defaults): Only use the + directory from the current node's fullpath if this function was + passed a filename as an argument. + +2017-07-09 Gavin Smith + + * info/nodes.c + (get_filename_and_nodename, info_get_node_with_defaults): + Merge get_filename_and_nodename into caller. + +2017-07-09 Gavin Smith + + * info/nodes.c (build_tags_and_nodes): Call 'skip_node_separator' + in order not to start reading the tag table in the middle of an + "Indirect:" string. + +2017-07-09 Gavin Smith + + * info/nodes.c (info_load_file): If calling + 'build_tags_and_nodes' didn't set the 'tags' array for the file + buffer, fail to load the file. + * info/info.c (add_initial_nodes): Check if info_load_file failed. + + * info/t/malformed-split.sh: New test. + +2017-07-09 Gavin Smith + + * info/t/Init-inter.inc (run_ginfo): Shorten a comment. + +2017-07-09 Gavin Smith + + * info/nodes.c (info_find_file): Do not convert the filename to + lowercase and check for it again if a file was not found. + +2017-07-06 Gavin Smith + + * info/t/inc-sea-bs.sh: New test. + +2017-07-05 Gavin Smith + + * info/search.c (regexp_search): Call free_matches if the regex + could be compiled, but there were no matches. Free a string + buffer used for displaying an error message. + * info/session.c (info_search_in_node_internal): Do not call + free_matches. It could be called on uninitialised data leading + to a crash if the regex had an error in it. Marco Maggi reported + a crash for incremental search when a single \ was entered. + +2017-07-05 Gavin Smith + + * util/texi2dvi (sorted_index_filter): Remove code to list files + created with bibtex, as then xref_files_changed requires them to + exist (since change on 2017-06-21) and they won't if bibtex is + not being used. Report from Daniel Gerbet. + +2017-07-04 Gavin Smith + + * doc/texinfo.tex (\unicodechardefs): + Define U+25C7 as \diamond and remove definitions for U+25A1, + U+2A1D, U+2201, U+2127, U+21BE, U+2290, U+22B4, and U+22B5 which + didn't work. (Benno Schulenberg reported that U+25C7 didn't + work.) + +2017-07-02 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi) <@image>: Save + 'input_perl_encoding' value on @image element. + * tp/Texinfo/Convert/Plaintext.pm (_image_text): Use it instead + of looking at the current value of INPUT_PERL_ENCODING. + +2017-07-01 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi_file): Set the parent key on + a created 'preamble' element. + +2017-07-01 Gavin Smith + + * tp/Texinfo/Convert/XSParagraph/configure.ac (fetch_conf): Put + all sed commands within an environment variable, 'sed_script'. + Assign 'sed_script' from a double-quoted string, using shell + variables to include awkward characters. This avoids there + being multiple level of quoting present which can be extremely + confusing, i.e., autoconf's quadrigraphs, quoting within the + backquoted string where sed is called, as well as sed's own + escaping of special characters. + + * tp/Texinfo/MiscXS/configure.ac (fetch_conf): Make the same + change. + +2017-07-01 Gavin Smith + + * info/t/c-u-m-x-scroll-forward.sh, info/t/inc-sea-insensitive.sh, + info/t/search-split-after-index.sh, info/t/split-footnotes.sh, + info/t/star-note-non-whitespace.sh, info/t/tab-argument.sh, + info/t/xref-across-lines.sh: Quote argument to run_ginfo so that + quoting characters are preseved in the subshell that execs ginfo. + +2017-07-01 Gavin Smith + + * info/t/xref-across-lines-2.sh: New test. + +2017-07-01 Gavin Smith + + * info/info-utils.c (scan_reference_label): Canonicalize the + whitespace in the nodename, otherwise links can't be followed if + the nodename is split across a line. + +2017-06-29 Gavin Smith + + * tp/Texinfo/Convert/Converter.pm (_register_command_arg): + Copy function here from Parser.pm. + (_table_item_content_tree): Call it. + +2017-06-29 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi) : Don't store + a list of menus in 'unassociated_menus' array. + * tp/Texinfo/Transformations.pm (_reassociate_to_node) + (set_menus_to_simple_menu): Remove checks of + 'unassociated_menus' array. + +2017-06-29 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi) : + Add a check for the return value of _text_to_lines being empty. + +2017-06-29 Gavin Smith + + * tp/t/html_tests.t (simple_menu): Add @node and @top commands + so that the menu is inside a node. + +2017-06-29 Gavin Smith + + * tp/Texinfo/Transformations.pm (fill_gaps_in_sectioning): Call + Texinfo::Structuring::section_level to get sectioning level + (used in tp/t/test_fill_gaps_in_sectioning.t). + +2017-06-29 Gavin Smith + + * tp/Texinfo/Parser.pm (_section_level), + * tp/Texinfo/Structuring.pm (section_level): Move function to + Structuring.pm. + +2017-06-29 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi): Do not add 'level' value + on sectioning commands. + * tp/Texinfo/Structuring.pm (sectioning_structure): Add 'level' + value on element. + * tp/Texinfo/Convert/HTML.pm (_convert_heading_command), + * tp/Texinfo/Convert/Text.pm (heading): + Account for the case when 'level' is not set. + * texi2any.pl: Remove a comment. + +2017-06-28 Gavin Smith + + * tp/Texinfo/Parser.pm (_end_line) <@copying>: Removing handling + of INLINE_INSERTCOPYING variable. Also remove from the module + documentation section at the end of the file. + (%default_customization_variables): Remove INLINE_INSERTCOPYING. + * tp/Texinfo/Parser.pm (@variable_string_settables) + (@obsolete_variables): Move 'INLINE_INSERTCOPYING' to + @obsolete_variables. + * tp/t/plaintext_tests.t (inline_copying_inline_and_paragraph): + Remove. + * NEWS: Mention removal. + * doc/texinfo.texi (Other Customization Variables) + : Remove. + +2017-06-27 Gavin Smith + + * tp/Texinfo/Parser.pm (_text_to_lines): Do not return an array + containing a single empty string if the input is an empty + string; instead, return a completely empty array. This means + that parse_texi_line does not get as far into parsing for an + empty input. + +2017-06-27 Gavin Smith + + * tp/Texinfo/Parser.pm : Do not associate a @part + command with a following sectioning command if another @part + command appears first. This means there is no special support + for @part pages following each other immediately. + +2017-06-26 Gavin Smith + + * info/t/Timeout-test.inc, + * info/t/Init-test.inc (timeout-test): Move code to timeout the + test to a shell function. + +2017-06-26 Gavin Smith + + * info/t/Init-inter.inc (run_ginfo): Time out test by running a + subshell in the background that kills the current shell inside + an "sh -c" command, and execing the ginfo program. Do not use a + FIFO to communicate that the process has finished. + + * info/t/Timeout-test.inc: Do not use "read -t" to read from a + FIFO with a timeout. Use the "wait" shell builtin to wait for + the process to finish. + + * info/t/Init-test.inc (cleanup): Eliminate use of SUBSHELL, + TIMED_OUT and FINISHEDFIFO variables. + +2017-06-26 Gavin Smith + + * info/t/Init-inter.inc (run_ginfo): Remove use of pgrep to get + PID of process. Get PID of ginfo process by running a subshell + with "sh -c", printing the value of $$ (the shell PID), and then + exec'ing the ginfo program. + +2017-06-25 Gavin Smith + + * tp/Texinfor/Parser.pm, tp/Texinfo/Common.pm + (complete_indices, _complete_indices): Move function to + Common.pm and rename. + +2017-06-25 Gavin Smith + + * tp/Texinfo/Parser.pm (_end_line) <@verbatiminclude>: Save + value of 'input_perl_encoding' on the element. + * tp/Texinfo/Common.pm (expand_verbatiminclude): Use the + saved value of 'input_perl_encoding' instead of looking at + 'INPUT_PERL_ENCODING' conf value. + +2017-06-25 Gavin Smith + + * info/nodes.c (info_get_node_with_defaults): Remove code that + fell back to a man page. This got in the way of the code in + info_get_info_help_node that fell back to info-stnd.info if + info.info couldn't be loaded. Also, this code is called from + many places where falling back to a man page would definitely + not be what was wanted, so removing the manpage fallback option + makes the program more robust and easy to understand. + * NEWS: Mention info will not try to fall back to a man page if + it failed to follow a cross-reference. + +2017-06-25 Gavin Smith + + * tp/Texinfo/Convert/Plaintext.pm (_convert) : + Change "@tie{ }" to "@tie{}" in document strings passed to gdt. + * tp/Texinfo/Parser.pm (_parse_texi) : + Don't check if we are being called from gdt and the closed + command was @tie. + +2017-06-24 Gavin Smith + + * tp/Texinfo/Parser.pm (_parse_texi): Remove debugging code + to dump parse tree every time a new line is read. + +2017-06-24 Gavin Smith + + * configure.ac: Increase version to 6.4dev. Remove "dist-xz" + option. + +2017-06-23 Gavin Smith + + * README-hacking: Change some instructions and remove some + others. + 2017-06-23 Gavin Smith 6.4 release. diff --git a/Makefile.in b/Makefile.in index 4f10de9..86743b9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -296,8 +296,8 @@ $(top_srcdir)/build-aux/missing \ $(top_srcdir)/build-aux/tap-driver.sh \ $(top_srcdir)/tp/Texinfo/ModulePath.pm.in ABOUT-NLS AUTHORS \ - COPYING ChangeLog INSTALL NEWS README TODO build-aux/ar-lib \ - build-aux/compile build-aux/config.guess \ + COPYING ChangeLog INSTALL NEWS README README-alpha TODO \ + build-aux/ar-lib build-aux/compile build-aux/config.guess \ build-aux/config.rpath build-aux/config.sub build-aux/depcomp \ build-aux/install-sh build-aux/mdate-sh build-aux/missing \ build-aux/texinfo.tex @@ -1044,6 +1044,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/NEWS b/NEWS index 45caa00..aeb3c34 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -$Id: NEWS 7802 2017-05-20 13:44:26Z gavin $ +$Id: NEWS 7916 2017-07-10 17:52:54Z gavin $ This NEWS file records noteworthy changes, very tersely. See the manual for detailed information. @@ -10,7 +10,33 @@ are permitted in any medium without royalty provided the copyright notice and this notice are preserved. -------------------------------------------------------------------------------- +------------------------------------------------------------------------------ + +* info: + . some bugs fixed: + . a bug where a segfault could happen in the regex search, for + example when the user entered a single \ as the search string + . another bug which could make nodes inaccessible in long "split" + info files + . a bug where it was not possible to follow a cross-reference + that was split across more than one line has been fixed + . do not fall back to a man page if following a cross-reference in an + info file failed + . if looking for a file failed, do not convert the name of a file to + lower-case and look for it again + +* texinfo.tex + . some faulty definitions for Unicode characters have been changed or + removed + +* texi2dvi + . a bug that broke the processing of LaTeX files that did not + use BibTeX has been fixed + +* texi2any + . `INLINE_INSERTCOPYING' removed as a customization variable + + 6.4 (23 June 2017) * texi2any: . for HTML output, place section names before the manual in page diff --git a/Pod-Simple-Texinfo/Makefile.in b/Pod-Simple-Texinfo/Makefile.in index 825ddaa..845d277 100644 --- a/Pod-Simple-Texinfo/Makefile.in +++ b/Pod-Simple-Texinfo/Makefile.in @@ -1146,6 +1146,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/README b/README index 38da789..dbd7a75 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -$Id: README 6951 2016-01-20 19:57:18Z gavin $ +$Id: README 7842 2017-06-23 06:47:27Z gavin $ This is the README file for the GNU Texinfo distribution. Texinfo is the preferred documentation format for GNU software. diff --git a/README-alpha b/README-alpha new file mode 100644 index 0000000..02f491e --- /dev/null +++ b/README-alpha @@ -0,0 +1,27 @@ +$Id: README-alpha 6124 2015-02-13 20:22:54Z gavin $ +This is the README-alpha file for GNU Texinfo. + + Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, + 2001, 2002, 2003, 2004, 2005, 2011, 2012, 2014, 2015 + Free Software Foundation, Inc. + + Copying and distribution of this file, with or without modification, + are permitted in any medium without royalty provided the copyright + notice and this notice are preserved. + +This is a test release! + +The latest test release (if any) is available at +ftp://alpha.gnu.org/gnu/texinfo/ + +Please email comments and problem reports to bug-texinfo@gnu.org. You +are welcome to join that mailing list; to do so, please visit +http://lists.gnu.org/mailman/listinfo/bug-texinfo. (There is no +dedicated mailing list for pretests any more.) + +If you see a problem in this release that you've already reported, feel +free to re-report it -- it's good to get a reminder. If you sent a +patch for a previous release, and you haven't received any feedback +about it, please do re-send it, it likely got lost. + +For development environment information, see README-hacking. diff --git a/README-hacking b/README-hacking index 9cdda98..1e157c0 100644 --- a/README-hacking +++ b/README-hacking @@ -1,4 +1,4 @@ -$Id: README-hacking 7788 2017-05-15 18:56:25Z gavin $ +$Id: README-hacking 7843 2017-06-23 17:58:55Z gavin $ This file describes the development environment for Texinfo. Copyright 2002, 2003, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013, @@ -234,21 +234,12 @@ # ... make diffs at official release: prev=5.2 ver=6.0 -cd $misc/archive/$pkg/prod -tar xf $txi/texinfo-$ver.tar.gz +tar xf texinfo-$ver.tar.gz tar xf texinfo-$prev.tar.gz diff -Nrc2 texinfo-$prev texinfo-$ver | xz >texinfo-$prev-$ver.diff.xz ls -l !$ gnupload --to ftp.gnu.org:texinfo !$ -rm -rf texinfo-$ver texinfo-$prev -ro texinfo-*$ver* - -- To save in local archives: -pkg=texinfo -ver=6.0 - -mv -v $pkg-$ver.tar.xz* $misc/archive/$pkg/alpha/ #pretest -mv -v $pkg-$ver.tar.{gz,xz}* *.diff.xz $misc/archive/$pkg/prod/ #official + - When official release is out there ... update home page (texinfo.html) and commit as needed. diff --git a/config.in b/config.in index bd4875e..7a67d40 100644 --- a/config.in +++ b/config.in @@ -1371,6 +1371,9 @@ /* Define if you want regoff_t to be at least as wide POSIX requires. */ #undef _REGEX_LARGE_OFFSETS + +/* For standard stat data types on VMS. */ +#undef _USE_STD_STAT /* Define to rpl_ if the getopt replacement functions and variables should be used. */ diff --git a/configure b/configure index a5a1d22..a7a534a 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for GNU Texinfo 6.4. +# Generated by GNU Autoconf 2.69 for GNU Texinfo 6.4.90. # # Report bugs to . # @@ -580,8 +580,8 @@ # Identity of this package. PACKAGE_NAME='GNU Texinfo' PACKAGE_TARNAME='texinfo' -PACKAGE_VERSION='6.4' -PACKAGE_STRING='GNU Texinfo 6.4' +PACKAGE_VERSION='6.4.90' +PACKAGE_STRING='GNU Texinfo 6.4.90' PACKAGE_BUGREPORT='bug-texinfo@gnu.org' PACKAGE_URL='http://www.gnu.org/software/texinfo/' @@ -779,6 +779,7 @@ HAVE_UNISTD_H NEXT_AS_FIRST_DIRECTIVE_UNISTD_H NEXT_UNISTD_H +WINDOWS_STAT_INODES WINDOWS_64_BIT_OFF_T NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H NEXT_SYS_TYPES_H @@ -2064,7 +2065,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GNU Texinfo 6.4 to adapt to many kinds of systems. +\`configure' configures GNU Texinfo 6.4.90 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2134,7 +2135,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GNU Texinfo 6.4:";; + short | recursive ) echo "Configuration of GNU Texinfo 6.4.90:";; esac cat <<\_ACEOF @@ -2272,7 +2273,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GNU Texinfo configure 6.4 +GNU Texinfo configure 6.4.90 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2981,7 +2982,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GNU Texinfo $as_me 6.4, which was +It was created by GNU Texinfo $as_me 6.4.90, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3883,7 +3884,7 @@ # Define the identity of the package. PACKAGE='texinfo' - VERSION='6.4' + VERSION='6.4.90' cat >>confdefs.h <<_ACEOF @@ -9211,15 +9212,27 @@ #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - result |= 16; + { + /* Try standardized names. */ + iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP"); + /* Try IRIX, OSF/1 names. */ + iconv_t cd2 = iconv_open ("UTF-8", "eucJP"); + /* Try AIX names. */ + iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP"); + /* Try HP-UX names. */ + iconv_t cd4 = iconv_open ("utf8", "eucJP"); + if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1) + && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1)) + result |= 16; + if (cd1 != (iconv_t)(-1)) + iconv_close (cd1); + if (cd2 != (iconv_t)(-1)) + iconv_close (cd2); + if (cd3 != (iconv_t)(-1)) + iconv_close (cd3); + if (cd4 != (iconv_t)(-1)) + iconv_close (cd4); + } return result; ; @@ -12876,6 +12889,10 @@ +$as_echo "#define _USE_STD_STAT 1" >>confdefs.h + + + @@ -12951,6 +12968,11 @@ + + + + + WINDOWS_STAT_INODES=0 @@ -15404,7 +15426,7 @@ aix* | beos* | openbsd* | mirbsd* | irix*) FLOAT_H=float.h ;; - freebsd*) + freebsd* | dragonfly*) case "$host_cpu" in i[34567]86 ) FLOAT_H=float.h @@ -15438,7 +15460,7 @@ ;; esac case "$host_os" in - aix* | freebsd* | linux*) + aix* | freebsd* | dragonfly* | linux*) if test -n "$FLOAT_H"; then REPLACE_FLOAT_LDBL=1 fi @@ -18395,6 +18417,9 @@ if (!strcasestr (haystack, needle)) result |= 1; } + /* Free allocated memory, in case some sanitizer is watching. */ + free (haystack); + free (needle); return result; ; @@ -21614,6 +21639,9 @@ if (!strstr (haystack, needle)) result |= 1; } + /* Free allocated memory, in case some sanitizer is watching. */ + free (haystack); + free (needle); return result; ; @@ -24155,15 +24183,27 @@ #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - result |= 16; + { + /* Try standardized names. */ + iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP"); + /* Try IRIX, OSF/1 names. */ + iconv_t cd2 = iconv_open ("UTF-8", "eucJP"); + /* Try AIX names. */ + iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP"); + /* Try HP-UX names. */ + iconv_t cd4 = iconv_open ("utf8", "eucJP"); + if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1) + && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1)) + result |= 16; + if (cd1 != (iconv_t)(-1)) + iconv_close (cd1); + if (cd2 != (iconv_t)(-1)) + iconv_close (cd2); + if (cd3 != (iconv_t)(-1)) + iconv_close (cd3); + if (cd4 != (iconv_t)(-1)) + iconv_close (cd4); + } return result; ; @@ -26017,7 +26057,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GNU Texinfo $as_me 6.4, which was +This file was extended by GNU Texinfo $as_me 6.4.90, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -26085,7 +26125,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -GNU Texinfo config.status 6.4 +GNU Texinfo config.status 6.4.90 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index b7fd43e..d1e76c9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -# $Id: configure.ac 7832 2017-06-18 13:06:10Z gavin $ +# $Id: configure.ac 7845 2017-06-24 19:17:18Z gavin $ # # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, # 2012, 2013, 2014, 2015, 2016, 2017 Free Software Foundation, Inc. @@ -12,7 +12,7 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -AC_INIT([GNU Texinfo], [6.4], [bug-texinfo@gnu.org]) +AC_INIT([GNU Texinfo], [6.4.90], [bug-texinfo@gnu.org]) dnl Must come before AM_INIT_AUTOMAKE. AC_CONFIG_AUX_DIR([build-aux]) diff --git a/doc/Makefile.am b/doc/Makefile.am index 39db834..7a93b45 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am 7290 2016-07-31 08:40:28Z gavin $ +# $Id: Makefile.am 7918 2017-07-10 17:59:21Z gavin $ # Makefile.am for texinfo/doc. # # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, @@ -89,14 +89,11 @@ # A nice side effect of using --html is to eliminate the fancy css default; # otherwise, we could use gendocs_template_min. # -manual1 = info -manual1_title = "GNU Info manual" +manual1 = info-stnd +manual1_title = "GNU standalone info manual" # -manual2 = info-stnd -manual2_title = "GNU standalone info manual" -# -manual3 = texinfo -manual3_title = "GNU Texinfo manual" +manual2 = texinfo +manual2_title = "GNU Texinfo manual" # # We also make a little HTML document for pod2texi script. pod2texi_pl = $(abs_top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl @@ -111,7 +108,6 @@ && ln -s ../*.texi . \ && $(gendocs_invoke) -o $(manual1) $(manual1) $(manual1_title) \ && $(gendocs_invoke) -o $(manual2) $(manual2) $(manual2_title) \ - && $(gendocs_invoke) -o $(manual3) $(manual3) $(manual3_title) \ && pod2html $(pod2texi_pl) >pod2texi.html \ && echo "Manuals ready for web distribution under: $(doctemp)/" # @@ -119,7 +115,7 @@ # http://www.gnu.org/software/texinfo/manual/ wwwdoc-install: cp -arf $(doctemp)/$(manual1) $(doctemp)/$(manual2) \ - $(doctemp)/$(manual3) $(doctemp)/pod2texi.html \ + $(doctemp)/pod2texi.html \ $(www_target) ls -ltu $(www_target)/*/html_node | tail # cvs rm -f obsolete files # followed by cvs add of new files and cvs commit. diff --git a/doc/Makefile.in b/doc/Makefile.in index ed62438..4c9a4d6 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -14,7 +14,7 @@ @SET_MAKE@ -# $Id: Makefile.am 7290 2016-07-31 08:40:28Z gavin $ +# $Id: Makefile.am 7918 2017-07-10 17:59:21Z gavin $ # Makefile.am for texinfo/doc. # # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, @@ -1070,6 +1070,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ @@ -1184,14 +1185,11 @@ # A nice side effect of using --html is to eliminate the fancy css default; # otherwise, we could use gendocs_template_min. # -manual1 = info -manual1_title = "GNU Info manual" +manual1 = info-stnd +manual1_title = "GNU standalone info manual" # -manual2 = info-stnd -manual2_title = "GNU standalone info manual" -# -manual3 = texinfo -manual3_title = "GNU Texinfo manual" +manual2 = texinfo +manual2_title = "GNU Texinfo manual" # # We also make a little HTML document for pod2texi script. pod2texi_pl = $(abs_top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl @@ -1840,7 +1838,6 @@ && ln -s ../*.texi . \ && $(gendocs_invoke) -o $(manual1) $(manual1) $(manual1_title) \ && $(gendocs_invoke) -o $(manual2) $(manual2) $(manual2_title) \ - && $(gendocs_invoke) -o $(manual3) $(manual3) $(manual3_title) \ && pod2html $(pod2texi_pl) >pod2texi.html \ && echo "Manuals ready for web distribution under: $(doctemp)/" # @@ -1848,7 +1845,7 @@ # http://www.gnu.org/software/texinfo/manual/ wwwdoc-install: cp -arf $(doctemp)/$(manual1) $(doctemp)/$(manual2) \ - $(doctemp)/$(manual3) $(doctemp)/pod2texi.html \ + $(doctemp)/pod2texi.html \ $(www_target) ls -ltu $(www_target)/*/html_node | tail # cvs rm -f obsolete files # followed by cvs add of new files and cvs commit. diff --git a/doc/refcard/txirefcard.tex b/doc/refcard/txirefcard.tex index bcd9837..9b0ce36 100644 --- a/doc/refcard/txirefcard.tex +++ b/doc/refcard/txirefcard.tex @@ -1,5 +1,5 @@ % Texinfo reference card. -% $Id: txirefcard.tex 7358 2016-09-10 20:26:36Z gavin $ +% $Id: txirefcard.tex 7842 2017-06-23 06:47:27Z gavin $ % %**start of header % This file can be printed with 1, 2, or 3 columns per page (see below). diff --git a/doc/stamp-1 b/doc/stamp-1 index 4dc9225..487620b 100644 --- a/doc/stamp-1 +++ b/doc/stamp-1 @@ -1,4 +1,4 @@ @set UPDATED 21 May 2017 @set UPDATED-MONTH May 2017 -@set EDITION 6.4 -@set VERSION 6.4 +@set EDITION 6.4.90 +@set VERSION 6.4.90 diff --git a/doc/stamp-vti b/doc/stamp-vti index fa97e95..11d3612 100644 --- a/doc/stamp-vti +++ b/doc/stamp-vti @@ -1,4 +1,4 @@ -@set UPDATED 24 May 2017 -@set UPDATED-MONTH May 2017 -@set EDITION 6.4 -@set VERSION 6.4 +@set UPDATED 28 June 2017 +@set UPDATED-MONTH June 2017 +@set EDITION 6.4.90 +@set VERSION 6.4.90 diff --git a/doc/texinfo.tex b/doc/texinfo.tex index b40a6e2..3844333 100644 --- a/doc/texinfo.tex +++ b/doc/texinfo.tex @@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2017-06-04.19} +\def\texinfoversion{2017-07-04.16} % % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, @@ -11009,7 +11009,6 @@ \DeclareUnicodeCharacter{2113}{\ensuremath\ell}% \DeclareUnicodeCharacter{2118}{\ensuremath\wp}% \DeclareUnicodeCharacter{211C}{\ensuremath\Re}% - \DeclareUnicodeCharacter{2127}{\ensuremath\mho}% \DeclareUnicodeCharacter{2135}{\ensuremath\aleph}% \DeclareUnicodeCharacter{2190}{\ensuremath\leftarrow}% \DeclareUnicodeCharacter{2191}{\ensuremath\uparrow}% @@ -11025,7 +11024,6 @@ \DeclareUnicodeCharacter{21AA}{\ensuremath\hookrightarrow}% \DeclareUnicodeCharacter{21BC}{\ensuremath\leftharpoonup}% \DeclareUnicodeCharacter{21BD}{\ensuremath\leftharpoondown}% - \DeclareUnicodeCharacter{21BE}{\ensuremath\upharpoonright}% \DeclareUnicodeCharacter{21C0}{\ensuremath\rightharpoonup}% \DeclareUnicodeCharacter{21C1}{\ensuremath\rightharpoondown}% \DeclareUnicodeCharacter{21CC}{\ensuremath\rightleftharpoons}% @@ -11034,8 +11032,6 @@ \DeclareUnicodeCharacter{21D3}{\ensuremath\Downarrow}% \DeclareUnicodeCharacter{21D4}{\ensuremath\Leftrightarrow}% \DeclareUnicodeCharacter{21D5}{\ensuremath\Updownarrow}% - \DeclareUnicodeCharacter{21DD}{\ensuremath\leadsto}% - \DeclareUnicodeCharacter{2201}{\ensuremath\complement}% \DeclareUnicodeCharacter{2202}{\ensuremath\partial}% \DeclareUnicodeCharacter{2205}{\ensuremath\emptyset}% \DeclareUnicodeCharacter{2207}{\ensuremath\nabla}% @@ -11069,8 +11065,6 @@ \DeclareUnicodeCharacter{2283}{\ensuremath\supset}% \DeclareUnicodeCharacter{2286}{\ensuremath\subseteq}% \DeclareUnicodeCharacter{228E}{\ensuremath\uplus}% - \DeclareUnicodeCharacter{228F}{\ensuremath\sqsubset}% - \DeclareUnicodeCharacter{2290}{\ensuremath\sqsupset}% \DeclareUnicodeCharacter{2291}{\ensuremath\sqsubseteq}% \DeclareUnicodeCharacter{2292}{\ensuremath\sqsupseteq}% \DeclareUnicodeCharacter{2293}{\ensuremath\sqcap}% @@ -11085,8 +11079,6 @@ \DeclareUnicodeCharacter{22A4}{\ensuremath\ptextop}% \DeclareUnicodeCharacter{22A5}{\ensuremath\bot}% \DeclareUnicodeCharacter{22A8}{\ensuremath\models}% - \DeclareUnicodeCharacter{22B4}{\ensuremath\unlhd}% - \DeclareUnicodeCharacter{22B5}{\ensuremath\unrhd}% \DeclareUnicodeCharacter{22C0}{\ensuremath\bigwedge}% \DeclareUnicodeCharacter{22C1}{\ensuremath\bigvee}% \DeclareUnicodeCharacter{22C2}{\ensuremath\bigcap}% @@ -11102,12 +11094,11 @@ \DeclareUnicodeCharacter{2322}{\ensuremath\frown}% \DeclareUnicodeCharacter{2323}{\ensuremath\smile}% % - \DeclareUnicodeCharacter{25A1}{\ensuremath\Box}% \DeclareUnicodeCharacter{25B3}{\ensuremath\triangle}% \DeclareUnicodeCharacter{25B7}{\ensuremath\triangleright}% \DeclareUnicodeCharacter{25BD}{\ensuremath\bigtriangledown}% \DeclareUnicodeCharacter{25C1}{\ensuremath\triangleleft}% - \DeclareUnicodeCharacter{25C7}{\ensuremath\Diamond}% + \DeclareUnicodeCharacter{25C7}{\ensuremath\diamond}% \DeclareUnicodeCharacter{2660}{\ensuremath\spadesuit}% \DeclareUnicodeCharacter{2661}{\ensuremath\heartsuit}% \DeclareUnicodeCharacter{2662}{\ensuremath\diamondsuit}% @@ -11129,7 +11120,6 @@ \DeclareUnicodeCharacter{2A02}{\ensuremath\bigotimes}% \DeclareUnicodeCharacter{2A04}{\ensuremath\biguplus}% \DeclareUnicodeCharacter{2A06}{\ensuremath\bigsqcup}% - \DeclareUnicodeCharacter{2A1D}{\ensuremath\Join}% \DeclareUnicodeCharacter{2A3F}{\ensuremath\amalg}% \DeclareUnicodeCharacter{2AAF}{\ensuremath\preceq}% \DeclareUnicodeCharacter{2AB0}{\ensuremath\succeq}% diff --git a/doc/tp_api/Makefile.in b/doc/tp_api/Makefile.in index 4ea5b78..991c54c 100644 --- a/doc/tp_api/Makefile.in +++ b/doc/tp_api/Makefile.in @@ -940,6 +940,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/doc/tp_api/api_includes/Texinfo-Convert-Converter.texi b/doc/tp_api/api_includes/Texinfo-Convert-Converter.texi index 2c3f089..a2d7315 100644 --- a/doc/tp_api/api_includes/Texinfo-Convert-Converter.texi +++ b/doc/tp_api/api_includes/Texinfo-Convert-Converter.texi @@ -256,8 +256,8 @@ Hey! @strong{The above document had some coding errors, which are explained below:} @table @asis -@item Around line 1797: -@anchor{Texinfo::Convert::Converter Around line 1797:} +@item Around line 1810: +@anchor{Texinfo::Convert::Converter Around line 1810:} '=item' outside of any '=over' diff --git a/doc/tp_api/api_includes/Texinfo-Parser.texi b/doc/tp_api/api_includes/Texinfo-Parser.texi index 234b260..be6ad03 100644 --- a/doc/tp_api/api_includes/Texinfo-Parser.texi +++ b/doc/tp_api/api_includes/Texinfo-Parser.texi @@ -110,13 +110,6 @@ An array reference of directories in which @code{@@include} files should be searched for. Default contains the working directory, @file{.}. -@item INLINE_INSERTCOPYING -@anchor{Texinfo::Parser INLINE_INSERTCOPYING} - -If set, @code{@@insertcopying} is replaced by the @code{@@copying} content as if -@code{@@insertcopying} was a user-defined macro. In the default case, it is -considered to be a simple @@-command and kept as-is in the tree. - @item IGNORE_BEFORE_SETFILENAME @anchor{Texinfo::Parser IGNORE_BEFORE_SETFILENAME} @@ -250,11 +243,6 @@ An array of successive @code{@@dircategory} and @code{@@direntry} as they appear in the document. - -@item unassociated_menus -@anchor{Texinfo::Parser unassociated_menus} - -An array of menus that are not associated with a node. @item novalidate @anchor{Texinfo::Parser novalidate} diff --git a/doc/version-stnd.texi b/doc/version-stnd.texi index 4dc9225..487620b 100644 --- a/doc/version-stnd.texi +++ b/doc/version-stnd.texi @@ -1,4 +1,4 @@ @set UPDATED 21 May 2017 @set UPDATED-MONTH May 2017 -@set EDITION 6.4 -@set VERSION 6.4 +@set EDITION 6.4.90 +@set VERSION 6.4.90 diff --git a/doc/version.texi b/doc/version.texi index fa97e95..11d3612 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -1,4 +1,4 @@ -@set UPDATED 24 May 2017 -@set UPDATED-MONTH May 2017 -@set EDITION 6.4 -@set VERSION 6.4 +@set UPDATED 28 June 2017 +@set UPDATED-MONTH June 2017 +@set EDITION 6.4.90 +@set VERSION 6.4.90 diff --git a/gnulib/lib/Makefile.am b/gnulib/lib/Makefile.am index c22218c..70bfc73 100644 --- a/gnulib/lib/Makefile.am +++ b/gnulib/lib/Makefile.am @@ -1387,6 +1387,7 @@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ + -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ diff --git a/gnulib/lib/Makefile.in b/gnulib/lib/Makefile.in index 90ce7de..2b09479 100644 --- a/gnulib/lib/Makefile.in +++ b/gnulib/lib/Makefile.in @@ -1080,6 +1080,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ @@ -2375,6 +2376,7 @@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ + -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ diff --git a/gnulib/lib/error.c b/gnulib/lib/error.c index 418d1ab..ba05eaa 100644 --- a/gnulib/lib/error.c +++ b/gnulib/lib/error.c @@ -272,7 +272,6 @@ else #endif vfprintf (stderr, message, args); - va_end (args); ++error_message_count; if (errnum) @@ -322,6 +321,7 @@ va_start (args, message); error_tail (status, errnum, message, args); + va_end (args); #ifdef _LIBC _IO_funlockfile (stderr); @@ -392,6 +392,7 @@ va_start (args, message); error_tail (status, errnum, message, args); + va_end (args); #ifdef _LIBC _IO_funlockfile (stderr); diff --git a/gnulib/lib/float.in.h b/gnulib/lib/float.in.h index 3e01200..b51aafe 100644 --- a/gnulib/lib/float.in.h +++ b/gnulib/lib/float.in.h @@ -63,7 +63,7 @@ /* On FreeBSD/x86 6.4, the 'long double' type really has only 53 bits of precision in the compiler but 64 bits of precision at runtime. See . */ -#if defined __i386__ && defined __FreeBSD__ +#if defined __i386__ && (defined __FreeBSD__ || defined __DragonFly__) /* Number of mantissa units, in base FLT_RADIX. */ # undef LDBL_MANT_DIG # define LDBL_MANT_DIG 64 diff --git a/gnulib/lib/getopt-pfx-core.h b/gnulib/lib/getopt-pfx-core.h index 4dc427d..db5f15c 100644 --- a/gnulib/lib/getopt-pfx-core.h +++ b/gnulib/lib/getopt-pfx-core.h @@ -47,6 +47,11 @@ # define opterr __GETOPT_ID (opterr) # define optind __GETOPT_ID (optind) # define optopt __GETOPT_ID (optopt) + +/* The system's getopt.h may have already included getopt-core.h to + declare the unprefixed identifiers. Undef _GETOPT_CORE_H so that + getopt-core.h declares them with prefixes. */ +# undef _GETOPT_CORE_H #endif #include diff --git a/gnulib/lib/getopt-pfx-ext.h b/gnulib/lib/getopt-pfx-ext.h index 0839759..91f4df1 100644 --- a/gnulib/lib/getopt-pfx-ext.h +++ b/gnulib/lib/getopt-pfx-ext.h @@ -45,6 +45,11 @@ # define getopt_long_only __GETOPT_ID (getopt_long_only) # define option __GETOPT_ID (option) # define _getopt_internal __GETOPT_ID (getopt_internal) + +/* The system's getopt.h may have already included getopt-ext.h to + declare the unprefixed identifiers. Undef _GETOPT_EXT_H so that + getopt-ext.h declares them with prefixes. */ +# undef _GETOPT_EXT_H #endif /* Standalone applications get correct prototypes for getopt_long and diff --git a/gnulib/lib/gettext.h b/gnulib/lib/gettext.h index e7520af..742ce37 100644 --- a/gnulib/lib/gettext.h +++ b/gnulib/lib/gettext.h @@ -185,7 +185,8 @@ #include #if (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ - /* || __STDC_VERSION__ >= 199901L */ ) + /* || __STDC_VERSION__ == 199901L + || (__STDC_VERSION__ >= 201112L && !defined __STDC_NO_VLA__) */ ) # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1 #else # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0 diff --git a/gnulib/lib/intprops.h b/gnulib/lib/intprops.h index 8f5ad54..28f4361 100644 --- a/gnulib/lib/intprops.h +++ b/gnulib/lib/intprops.h @@ -219,7 +219,11 @@ : (max) >> (b) < (a)) /* True if __builtin_add_overflow (A, B, P) works when P is non-null. */ -#define _GL_HAS_BUILTIN_OVERFLOW (5 <= __GNUC__) +#if 5 <= __GNUC__ && !defined __ICC +# define _GL_HAS_BUILTIN_OVERFLOW 1 +#else +# define _GL_HAS_BUILTIN_OVERFLOW 0 +#endif /* True if __builtin_add_overflow_p (A, B, C) works. */ #define _GL_HAS_BUILTIN_OVERFLOW_P (7 <= __GNUC__) diff --git a/gnulib/lib/localcharset.c b/gnulib/lib/localcharset.c index 19eb436..9b7e6cb 100644 --- a/gnulib/lib/localcharset.c +++ b/gnulib/lib/localcharset.c @@ -75,6 +75,7 @@ # include "relocatable.h" #else # define relocate(pathname) (pathname) +# define relocate2(pathname,allocatedp) (*(allocatedp) = NULL, (pathname)) #endif /* Get LIBDIR. */ @@ -129,6 +130,7 @@ if (cp == NULL) { #if !(defined DARWIN7 || defined VMS || defined WINDOWS_NATIVE || defined __CYGWIN__ || defined OS2) + char *malloc_dir = NULL; const char *dir; const char *base = "charset.alias"; char *file_name; @@ -137,7 +139,7 @@ necessary for running the testsuite before "make install". */ dir = getenv ("CHARSETALIASDIR"); if (dir == NULL || dir[0] == '\0') - dir = relocate (LIBDIR); + dir = relocate2 (LIBDIR, &malloc_dir); /* Concatenate dir and base into freshly allocated file_name. */ { @@ -153,6 +155,8 @@ memcpy (file_name + dir_len + add_slash, base, base_len + 1); } } + + free (malloc_dir); if (file_name == NULL) /* Out of memory. Treat the file as empty. */ diff --git a/gnulib/lib/mbrtowc.c b/gnulib/lib/mbrtowc.c index d4809f6..7415fff 100644 --- a/gnulib/lib/mbrtowc.c +++ b/gnulib/lib/mbrtowc.c @@ -35,6 +35,13 @@ # include "streq.h" # include "verify.h" +#ifndef FALLTHROUGH +# if __GNUC__ < 7 +# define FALLTHROUGH ((void) 0) +# else +# define FALLTHROUGH __attribute__ ((__fallthrough__)) +# endif +#endif verify (sizeof (mbstate_t) >= 4); @@ -74,10 +81,10 @@ break; case 3: buf[2] = pstate[3]; - /*FALLTHROUGH*/ + FALLTHROUGH; case 2: buf[1] = pstate[2]; - /*FALLTHROUGH*/ + FALLTHROUGH; case 1: buf[0] = pstate[1]; p = buf; diff --git a/gnulib/lib/sys_types.in.h b/gnulib/lib/sys_types.in.h index 30ebfbd..3cea448 100644 --- a/gnulib/lib/sys_types.in.h +++ b/gnulib/lib/sys_types.in.h @@ -42,6 +42,48 @@ # define _GL_WINDOWS_64_BIT_OFF_T 1 #endif +/* Override dev_t and ino_t if distinguishable inodes support is requested + on native Windows. */ +#if @WINDOWS_STAT_INODES@ + +# if @WINDOWS_STAT_INODES@ == 2 +/* Experimental, not useful in Windows 10. */ + +/* Define dev_t to a 64-bit type. */ +# if !defined GNULIB_defined_dev_t +typedef unsigned long long int rpl_dev_t; +# undef dev_t +# define dev_t rpl_dev_t +# define GNULIB_defined_dev_t 1 +# endif + +/* Define ino_t to a 128-bit type. */ +# if !defined GNULIB_defined_ino_t +/* MSVC does not have a 128-bit integer type. + GCC has a 128-bit integer type __int128, but only on 64-bit targets. */ +typedef struct { unsigned long long int _gl_ino[2]; } rpl_ino_t; +# undef ino_t +# define ino_t rpl_ino_t +# define GNULIB_defined_ino_t 1 +# endif + +# else /* @WINDOWS_STAT_INODES@ == 1 */ + +/* Define ino_t to a 64-bit type. */ +# if !defined GNULIB_defined_ino_t +typedef unsigned long long int rpl_ino_t; +# undef ino_t +# define ino_t rpl_ino_t +# define GNULIB_defined_ino_t 1 +# endif + +# endif + +/* Indicator, for gnulib internal purposes. */ +# define _GL_WINDOWS_STAT_INODES @WINDOWS_STAT_INODES@ + +#endif + /* MSVC 9 defines size_t in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \ diff --git a/gnulib/lib/vasnprintf.c b/gnulib/lib/vasnprintf.c index 8c9b2ec..0c40fe7 100644 --- a/gnulib/lib/vasnprintf.c +++ b/gnulib/lib/vasnprintf.c @@ -116,6 +116,14 @@ # include "isnanl-nolibm.h" # include "printf-frexpl.h" # include "fpucw.h" +#endif + +#ifndef FALLTHROUGH +# if __GNUC__ < 7 +# define FALLTHROUGH ((void) 0) +# else +# define FALLTHROUGH __attribute__ ((__fallthrough__)) +# endif #endif /* Default parameters. */ @@ -4837,7 +4845,7 @@ *fbp++ = 'l'; # endif #endif - /*FALLTHROUGH*/ + FALLTHROUGH; case TYPE_LONGINT: case TYPE_ULONGINT: #if HAVE_WINT_T @@ -4861,7 +4869,10 @@ #endif *fbp = dp->conversion; #if USE_SNPRINTF -# if !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) +# if ! (((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) \ + && !defined __UCLIBC__) \ + || (defined __APPLE__ && defined __MACH__) \ + || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) fbp[1] = '%'; fbp[2] = 'n'; fbp[3] = '\0'; @@ -4875,6 +4886,13 @@ in format strings in writable memory may crash the program (if compiled with _FORTIFY_SOURCE=2), so we should avoid it in this situation. */ + /* On Mac OS X 10.3 or newer, we know that snprintf's return + value conforms to ISO C 99: the tests gl_SNPRINTF_RETVAL_C99 + and gl_SNPRINTF_TRUNCATION_C99 pass. + Therefore we can avoid using %n in this situation. + On Mac OS X 10.13 or newer, the use of %n in format strings + in writable memory by default crashes the program, so we + should avoid it in this situation. */ /* On native Windows systems (such as mingw), we can avoid using %n because: - Although the gl_SNPRINTF_TRUNCATION_C99 test fails, diff --git a/gnulib/lib/xalloc-oversized.h b/gnulib/lib/xalloc-oversized.h index ff0efc6..2e09bab 100644 --- a/gnulib/lib/xalloc-oversized.h +++ b/gnulib/lib/xalloc-oversized.h @@ -44,7 +44,7 @@ #if 7 <= __GNUC__ # define xalloc_oversized(n, s) \ __builtin_mul_overflow_p (n, s, (__xalloc_count_type) 1) -#elif 5 <= __GNUC__ && !__STRICT_ANSI__ +#elif 5 <= __GNUC__ && !defined __ICC && !__STRICT_ANSI__ # define xalloc_oversized(n, s) \ (__builtin_constant_p (n) && __builtin_constant_p (s) \ ? __xalloc_oversized (n, s) \ diff --git a/gnulib/m4/argz.m4 b/gnulib/m4/argz.m4 index 67f4cbe..c34d685 100644 --- a/gnulib/m4/argz.m4 +++ b/gnulib/m4/argz.m4 @@ -7,12 +7,13 @@ # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 11 argz.m4 +# serial 12 argz.m4 AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ AC_REQUIRE([AC_C_RESTRICT]) +AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT]) diff --git a/gnulib/m4/float_h.m4 b/gnulib/m4/float_h.m4 index e8522ab..40dc102 100644 --- a/gnulib/m4/float_h.m4 +++ b/gnulib/m4/float_h.m4 @@ -1,4 +1,4 @@ -# float_h.m4 serial 9 +# float_h.m4 serial 10 dnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -14,7 +14,7 @@ aix* | beos* | openbsd* | mirbsd* | irix*) FLOAT_H=float.h ;; - freebsd*) + freebsd* | dragonfly*) case "$host_cpu" in changequote(,)dnl i[34567]86 ) @@ -42,7 +42,7 @@ ;; esac case "$host_os" in - aix* | freebsd* | linux*) + aix* | freebsd* | dragonfly* | linux*) if test -n "$FLOAT_H"; then REPLACE_FLOAT_LDBL=1 fi diff --git a/gnulib/m4/iconv.m4 b/gnulib/m4/iconv.m4 index bdafc54..b33ecd0 100644 --- a/gnulib/m4/iconv.m4 +++ b/gnulib/m4/iconv.m4 @@ -1,5 +1,5 @@ -# iconv.m4 serial 20 -dnl Copyright (C) 2000-2002, 2007-2014, 2016 Free Software Foundation, Inc. +# iconv.m4 serial 21 +dnl Copyright (C) 2000-2002, 2007-2014, 2016-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -167,15 +167,27 @@ #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - result |= 16; + { + /* Try standardized names. */ + iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP"); + /* Try IRIX, OSF/1 names. */ + iconv_t cd2 = iconv_open ("UTF-8", "eucJP"); + /* Try AIX names. */ + iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP"); + /* Try HP-UX names. */ + iconv_t cd4 = iconv_open ("utf8", "eucJP"); + if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1) + && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1)) + result |= 16; + if (cd1 != (iconv_t)(-1)) + iconv_close (cd1); + if (cd2 != (iconv_t)(-1)) + iconv_close (cd2); + if (cd3 != (iconv_t)(-1)) + iconv_close (cd3); + if (cd4 != (iconv_t)(-1)) + iconv_close (cd4); + } return result; ]])], [am_cv_func_iconv_works=yes], , diff --git a/gnulib/m4/printf.m4 b/gnulib/m4/printf.m4 index 113cc2e..37c9a3c 100644 --- a/gnulib/m4/printf.m4 +++ b/gnulib/m4/printf.m4 @@ -1,4 +1,4 @@ -# printf.m4 serial 53 +# printf.m4 serial 54 dnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -588,8 +588,8 @@ darwin[1-6].*) gl_cv_func_printf_directive_f="guessing no";; darwin*) gl_cv_func_printf_directive_f="guessing yes";; # Guess yes on Solaris >= 2.10. - solaris2.[1-9][0-9]*) gl_cv_func_printf_sizes_c99="guessing yes";; - solaris*) gl_cv_func_printf_sizes_c99="guessing no";; + solaris2.[1-9][0-9]*) gl_cv_func_printf_directive_f="guessing yes";; + solaris*) gl_cv_func_printf_directive_f="guessing no";; # If we don't know, assume the worst. *) gl_cv_func_printf_directive_f="guessing no";; esac diff --git a/gnulib/m4/strcasestr.m4 b/gnulib/m4/strcasestr.m4 index 7d15c65..3af9582 100644 --- a/gnulib/m4/strcasestr.m4 +++ b/gnulib/m4/strcasestr.m4 @@ -1,4 +1,4 @@ -# strcasestr.m4 serial 21 +# strcasestr.m4 serial 22 dnl Copyright (C) 2005, 2007-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -102,6 +102,9 @@ if (!strcasestr (haystack, needle)) result |= 1; } + /* Free allocated memory, in case some sanitizer is watching. */ + free (haystack); + free (needle); return result; ]])], [gl_cv_func_strcasestr_linear=yes], [gl_cv_func_strcasestr_linear=no], diff --git a/gnulib/m4/strstr.m4 b/gnulib/m4/strstr.m4 index 9f7da64..4b472ee 100644 --- a/gnulib/m4/strstr.m4 +++ b/gnulib/m4/strstr.m4 @@ -1,4 +1,4 @@ -# strstr.m4 serial 17 +# strstr.m4 serial 18 dnl Copyright (C) 2008-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -99,6 +99,9 @@ if (!strstr (haystack, needle)) result |= 1; } + /* Free allocated memory, in case some sanitizer is watching. */ + free (haystack); + free (needle); return result; ]])], [gl_cv_func_strstr_linear=yes], [gl_cv_func_strstr_linear=no], diff --git a/gnulib/m4/sys_types_h.m4 b/gnulib/m4/sys_types_h.m4 index 2eb4e9e..ec0860b 100644 --- a/gnulib/m4/sys_types_h.m4 +++ b/gnulib/m4/sys_types_h.m4 @@ -1,4 +1,4 @@ -# sys_types_h.m4 serial 6 +# sys_types_h.m4 serial 8 dnl Copyright (C) 2011-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -6,6 +6,9 @@ AC_DEFUN_ONCE([gl_SYS_TYPES_H], [ + dnl Use sane struct stat types in OpenVMS 8.2 and later. + AC_DEFINE([_USE_STD_STAT], 1, [For standard stat data types on VMS.]) + AC_REQUIRE([gl_SYS_TYPES_H_DEFAULTS]) gl_NEXT_HEADERS([sys/types.h]) @@ -17,6 +20,14 @@ dnl Whether to override the 'off_t' type. AC_REQUIRE([gl_TYPE_OFF_T]) + + dnl Whether to override the 'dev_t' and 'ino_t' types. + m4_ifdef([gl_WINDOWS_STAT_INODES], [ + AC_REQUIRE([gl_WINDOWS_STAT_INODES]) + ], [ + WINDOWS_STAT_INODES=0 + ]) + AC_SUBST([WINDOWS_STAT_INODES]) ]) AC_DEFUN([gl_SYS_TYPES_H_DEFAULTS], diff --git a/info/Makefile.am b/info/Makefile.am index b19519c..621fb36 100644 --- a/info/Makefile.am +++ b/info/Makefile.am @@ -1,8 +1,8 @@ -# $Id: Makefile.am 7804 2017-05-20 15:51:33Z gavin $ +# $Id: Makefile.am 7911 2017-07-09 15:12:16Z gavin $ # Makefile.am for texinfo/info. # # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, -# 2013, 2014, 2015, 2016 Free Software Foundation, Inc. +# 2013, 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -93,6 +93,7 @@ t/no-file.sh \ t/node-no-file.sh \ t/split.sh \ + t/malformed-split.sh \ t/relative-path.sh \ t/file-relative-path.sh \ t/dir.sh \ @@ -120,6 +121,7 @@ t/tab-no-xref.sh \ t/tab-skip-node.sh \ t/xref-across-lines.sh \ + t/xref-across-lines-2.sh \ t/body-start.sh \ t/end-of-line.sh \ t/goal-column.sh \ @@ -153,6 +155,7 @@ t/inc-sea-forward-nonregex.sh \ t/inc-sea-insensitive.sh \ t/inc-sea-history.sh \ + t/inc-sea-bs.sh \ t/gc-split.sh \ t/anchor-positions.sh \ t/quoted-label-as-target.sh \ @@ -166,7 +169,7 @@ EXTRA_DIST += $(TESTS) $(XFAIL_TESTS) \ t/README t/infodir \ - t/Init-inter.inc t/Init-test.inc t/Timeout-test.inc \ + t/Init-inter.inc t/Init-test.inc \ t/Infokey-config t/node-target dist-hook: rm -rf `find $(distdir)/t/infodir -name '*~'` diff --git a/info/Makefile.in b/info/Makefile.in index 196266b..58ca7b1 100644 --- a/info/Makefile.in +++ b/info/Makefile.in @@ -14,11 +14,11 @@ @SET_MAKE@ -# $Id: Makefile.am 7804 2017-05-20 15:51:33Z gavin $ +# $Id: Makefile.am 7911 2017-07-09 15:12:16Z gavin $ # Makefile.am for texinfo/info. # # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, -# 2013, 2014, 2015, 2016 Free Software Foundation, Inc. +# 2013, 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -1214,6 +1214,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ @@ -1288,8 +1289,8 @@ LDADD = $(top_builddir)/gnulib/lib/libgnu.a $(TERMLIBS) $(LIBINTL) $(LIBICONV) EXTRA_DIST = pcterm.c $(TESTS) $(XFAIL_TESTS) t/README t/infodir \ - t/Init-inter.inc t/Init-test.inc t/Timeout-test.inc \ - t/Infokey-config t/node-target + t/Init-inter.inc t/Init-test.inc t/Infokey-config \ + t/node-target ginfo_SOURCES = dir.c display.c display.h doc.h dribble.c dribble.h \ echo-area.c echo-area.h \ filesys.c filesys.h footnotes.c footnotes.h indices.c indices.h \ @@ -1333,6 +1334,7 @@ t/no-file.sh \ t/node-no-file.sh \ t/split.sh \ + t/malformed-split.sh \ t/relative-path.sh \ t/file-relative-path.sh \ t/dir.sh \ @@ -1360,6 +1362,7 @@ t/tab-no-xref.sh \ t/tab-skip-node.sh \ t/xref-across-lines.sh \ + t/xref-across-lines-2.sh \ t/body-start.sh \ t/end-of-line.sh \ t/goal-column.sh \ @@ -1393,6 +1396,7 @@ t/inc-sea-forward-nonregex.sh \ t/inc-sea-insensitive.sh \ t/inc-sea-history.sh \ + t/inc-sea-bs.sh \ t/gc-split.sh \ t/anchor-positions.sh \ t/quoted-label-as-target.sh \ @@ -1811,6 +1815,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +t/malformed-split.sh.log: t/malformed-split.sh + @p='t/malformed-split.sh'; \ + b='t/malformed-split.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) t/relative-path.sh.log: t/relative-path.sh @p='t/relative-path.sh'; \ b='t/relative-path.sh'; \ @@ -2000,6 +2011,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +t/xref-across-lines-2.sh.log: t/xref-across-lines-2.sh + @p='t/xref-across-lines-2.sh'; \ + b='t/xref-across-lines-2.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) t/body-start.sh.log: t/body-start.sh @p='t/body-start.sh'; \ b='t/body-start.sh'; \ @@ -2227,6 +2245,13 @@ t/inc-sea-history.sh.log: t/inc-sea-history.sh @p='t/inc-sea-history.sh'; \ b='t/inc-sea-history.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +t/inc-sea-bs.sh.log: t/inc-sea-bs.sh + @p='t/inc-sea-bs.sh'; \ + b='t/inc-sea-bs.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ diff --git a/info/info-utils.c b/info/info-utils.c index e1b1424..2a206d5 100644 --- a/info/info-utils.c +++ b/info/info-utils.c @@ -1,5 +1,5 @@ /* info-utils.c -- miscellanous. - $Id: info-utils.c 7818 2017-06-03 20:52:27Z gavin $ + $Id: info-utils.c 7888 2017-07-01 13:51:33Z gavin $ Copyright 1993, 1998, 2003, 2004, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Free Software Foundation, Inc. @@ -1278,6 +1278,7 @@ { len = read_quoted_string (inptr + label_len, ":", max_lines, &entry->nodename); + canonicalize_whitespace (entry->nodename); if (!len) return 0; /* Input invalid. */ label_len += len; diff --git a/info/info.c b/info/info.c index 3a6aab4..e5b6399 100644 --- a/info/info.c +++ b/info/info.c @@ -1,5 +1,5 @@ /* info.c -- Display nodes of Info files in multiple windows. - $Id: info.c 7817 2017-05-27 17:01:01Z gavin $ + $Id: info.c 7911 2017-07-09 15:12:16Z gavin $ Copyright 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, @@ -375,6 +375,8 @@ node_nodename = 0; file_buffer = info_find_file (node_filename); + if (!file_buffer) + continue; /* First look for an exact match. */ for (j = 0; (tag = file_buffer->tags[j]); j++) diff --git a/info/nodes.c b/info/nodes.c index ffe9dd4..da3f877 100644 --- a/info/nodes.c +++ b/info/nodes.c @@ -1,5 +1,5 @@ /* nodes.c -- how to get an Info file and node. - $Id: nodes.c 7831 2017-06-18 12:50:18Z gavin $ + $Id: nodes.c 7915 2017-07-09 18:51:00Z gavin $ Copyright 1993, 1998, 1999, 2000, 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Free Software @@ -129,6 +129,7 @@ return; /* Skip "Indirect:" line. */ + position += skip_node_separator (file_buffer->contents + position); position += strlen (INDIRECT_TABLE_LABEL); position += strspn (file_buffer->contents + position, "\r\n"); @@ -631,35 +632,6 @@ else fullpath = xstrdup (filename); - /* FIXME: Put the following in info_find_fullpath, or remove - it altogether. */ - /* If the file referenced by the name returned from info_find_fullpath () - doesn't exist, then try again with the last part of the filename - appearing in lowercase. */ - /* This is probably not needed at all on those systems which define - FILENAME_CMP to be mbscasecmp. But let's do it anyway, lest some - network redirector supports case sensitivity. */ - if (!fullpath) - { - char *lowered_name; - char *tmp_basename; - - lowered_name = xstrdup (filename); - tmp_basename = filename_non_directory (lowered_name); - - while (*tmp_basename) - { - if (isupper (*tmp_basename)) - *tmp_basename = tolower (*tmp_basename); - - tmp_basename++; - } - - fullpath = info_find_fullpath (lowered_name, 0); - - free (lowered_name); - } - /* If the file wasn't found, give up, returning a NULL pointer. */ if (!fullpath) return NULL; @@ -678,6 +650,7 @@ char *with_extension = 0; int i; FILE_BUFFER *file_buffer = 0; + int fullpath_len = strlen (fullpath); /* First try to find the file in our list of already loaded files. */ if (info_loaded_files) @@ -685,7 +658,9 @@ for (i = 0; (file_buffer = info_loaded_files[i]); i++) /* Check if fullpath starts the name of the recorded file (extra extensions like ".info.gz" could be added.) */ - if (!strncmp (file_buffer->fullpath, fullpath, strlen (fullpath))) + if (!strncmp (file_buffer->fullpath, fullpath, fullpath_len) + && (file_buffer->fullpath[fullpath_len] == '\0' + || file_buffer->fullpath[fullpath_len] == '.')) { struct stat new_info, *old_info; @@ -754,7 +729,16 @@ get_file_character_encoding (file_buffer); if (!is_subfile) - build_tags_and_nodes (file_buffer); + { + build_tags_and_nodes (file_buffer); + if (!file_buffer->tags) + { + free (file_buffer->fullpath); + free (file_buffer->filename); + free (file_buffer); + return 0; + } + } else file_buffer->flags |= N_Subfile; @@ -861,9 +845,6 @@ /* Functions for node creation and retrieval. */ static long get_node_length (SEARCH_BINDING *binding); -static void get_filename_and_nodename (NODE *node, - char **filename, char **nodename, - char *filename_in, char *nodename_in); static void node_set_body_start (NODE *node); static int adjust_nodestart (FILE_BUFFER *file_buffer, TAG *tag); @@ -943,8 +924,50 @@ info_recent_file_error = NULL; - get_filename_and_nodename (defaults, &filename, &nodename, - filename_in, nodename_in); + filename = filename_in; + if (filename_in) + { + filename = xstrdup (filename_in); + if (follow_strategy == FOLLOW_REMAIN + && defaults && defaults->fullpath + && filename_in) + { + /* Find the directory in the filename for defaults, and look in + that directory first. */ + char *file_in_same_dir; + char saved_char, *p; + + p = defaults->fullpath + strlen (defaults->fullpath); + while (p > defaults->fullpath && !IS_SLASH (*p)) + p--; + + if (p > defaults->fullpath) + { + saved_char = *p; + *p = 0; + + file_in_same_dir = info_add_extension (defaults->fullpath, + filename, 0); + if (file_in_same_dir) + file_buffer = info_find_file (file_in_same_dir); + free (file_in_same_dir); + *p = saved_char; + } + } + } + else + { + if (defaults) + filename = xstrdup (defaults->fullpath); + else + filename = xstrdup ("dir"); + } + + if (nodename_in && *nodename_in) + nodename = xstrdup (nodename_in); + else + /* If NODENAME is not specified, it defaults to "Top". */ + nodename = xstrdup ("Top"); /* If the file to be looked up is "dir", build the contents from all of the "dir"s and "localdir"s found in INFOPATH. */ @@ -960,33 +983,6 @@ goto cleanup_and_exit; } - - if (follow_strategy == FOLLOW_REMAIN - && defaults && defaults->fullpath) - { - /* Find the directory in the filename for defaults, and look in - that directory first. */ - char *file_in_same_dir; - char saved_char, *p; - - p = defaults->fullpath + strlen (defaults->fullpath); - while (p > defaults->fullpath && !IS_SLASH (*p)) - p--; - - if (p > defaults->fullpath) - { - saved_char = *p; - *p = 0; - - file_in_same_dir = info_add_extension (defaults->fullpath, - filename, 0); - if (file_in_same_dir) - file_buffer = info_find_file (file_in_same_dir); - free (file_in_same_dir); - *p = saved_char; - } - } - if (!file_buffer) file_buffer = info_find_file (filename); @@ -994,18 +990,6 @@ { /* Look for the node. */ node = info_get_node_of_file_buffer (file_buffer, nodename); - } - - if (!file_buffer) - { - /* Try to find a man page with this name as a fall back. */ - node = get_manpage_node (filename); - if (!node) - { - if (filesys_error_number) - info_recent_file_error = - filesys_error_string (filename, filesys_error_number); - } } /* If the node not found was "Top", try again with different case. */ @@ -1029,33 +1013,6 @@ info_get_node (char *filename_in, char *nodename_in) { return info_get_node_with_defaults (filename_in, nodename_in, 0); -} - -/* Get filename and nodename of node to load using defaults from NODE. - Output values should be freed by caller. */ -static void -get_filename_and_nodename (NODE *node, - char **filename, char **nodename, - char *filename_in, char *nodename_in) -{ - *filename = filename_in; - - /* If FILENAME is not specified, it defaults to "dir". */ - if (filename_in) - *filename = xstrdup (filename_in); - else - { - if (node) - *filename = xstrdup (node->fullpath); - else - *filename = xstrdup ("dir"); - } - - if (nodename_in && *nodename_in) - *nodename = xstrdup (nodename_in); - else - /* If NODENAME is not specified, it defaults to "Top". */ - *nodename = xstrdup ("Top"); } static void diff --git a/info/search.c b/info/search.c index e16d59e..1114749 100644 --- a/info/search.c +++ b/info/search.c @@ -1,5 +1,5 @@ /* search.c -- searching large bodies of text. - $Id: search.c 7714 2017-04-11 06:40:52Z gavin $ + $Id: search.c 7907 2017-07-05 19:16:44Z gavin $ Copyright 1993, 1997, 1998, 2002, 2004, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016, 2017 Free Software Foundation, Inc. @@ -174,8 +174,8 @@ state->match_count = match_count; } -/* Search BUFFER for REGEXP. Pass back the list of matches - in MATCH_STATE. */ +/* Search BUFFER for REGEXP. If matches are found, pass back the list of + matches in MATCH_STATE. */ enum search_result regexp_search (char *regexp, int is_literal, int is_insensitive, char *buffer, size_t buflen, @@ -201,6 +201,7 @@ char *buf = xmalloc (size); regerror (result, &preg, buf, size); info_error (_("regexp error: %s"), buf); + free (buf); return search_invalid; } @@ -215,7 +216,10 @@ extend_matches (match_state); if (match_state->match_count == 0) - return search_not_found; + { + free_matches (match_state); + return search_not_found; + } else return search_success; } diff --git a/info/session.c b/info/session.c index 440132a..67da8a9 100644 --- a/info/session.c +++ b/info/session.c @@ -1,5 +1,5 @@ /* session.c -- user windowing interface to Info. - $Id: session.c 7812 2017-05-24 06:58:11Z gavin $ + $Id: session.c 7907 2017-07-05 19:16:44Z gavin $ Copyright 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016, 2017 @@ -3953,10 +3953,7 @@ } if (result != search_success) - { - free_matches (&matches); - return result; - } + return result; if (node->flags & N_Simple) { diff --git a/info/t/Init-inter.inc b/info/t/Init-inter.inc index f9dc1f6..fc647b2 100644 --- a/info/t/Init-inter.inc +++ b/info/t/Init-inter.inc @@ -51,8 +51,6 @@ # Avoid ginfo complaining that terminal is too dumb TERM=vt100; export TERM -FINISHEDFIFO=t/`basename $0.finished` - # See cleanup in Init-test.inc. findprog stty && { STTY=stty ; reset_required=yes ; } test $reset_required=yes && { $STTY | grep [-]echo ; } && reset_required=no @@ -94,62 +92,11 @@ run_ginfo () { - rm -f $FINISHEDFIFO - mkfifo $FINISHEDFIFO - { # Close fd opened to control FIFO in subshell so pseudotty can exit - # for an EOF. This prevents lingering processes if a test is - # interrupted. - exec 7>&- ; - exec 8>$FINISHEDFIFO ; - $GINFO $GINFO_OPTIONS "$@" ; - test $? -eq 0 || echo failure >$FINISHEDFIFO ; - echo finished >$FINISHEDFIFO ; } 0<>$PTS_DEVICE 1<&0 & - SUBSHELL=$! - exec 8<$FINISHEDFIFO + sh -c " + exec 7>&- ; # Close fd from parent shell - # Although we don't write to the FIFO in this process, we still need - # to open it for writing, because if the above subshell exits before - # we read from it, we won't be able to open it - even though - # "finished" is buffered. - exec 9>$FINISHEDFIFO + (sleep 3 ; kill \$\$) & + exec $GINFO $GINFO_OPTIONS $* 0<>$PTS_DEVICE 1<&0 ;" & - # Check for pgrep - if findprog pgrep; then - # Get the PID of the running ginfo process. Look for a process called - # "ginfo" whose parent process is the subshell executed by the previous - # command. - echo 'Fetching PID of ginfo process under test...' >&2 - GINFO_PID= - - # Try 3 times and then give up. The process may never have started, - # have started under a different name, or have already exited. - for i in 1 2 3; do - GINFO_PID=`pgrep -P $SUBSHELL $GINFO_NAME ; \ - test $? -eq 0 || test $? -eq 1 || exit 99` - - # This use of pgrep is likely not portable (works on procps). - # Check if it is likely to have worked. - - # Exit status was anything other than 0 or 1 - test $? -eq 99 && { GINFO_PID=unknown; break; } - - # More than one line in output - echo $GINFO_PID | wc -l | grep '^0$\|^1$' >/dev/null \ - || { GINFO_PID=unknown; break; } - - # Non-numeral characters present - echo $GINFO_PID | grep -v '^[0-9]*$' >/dev/null - test $? -eq 0 && { GINFO_PID=unknown; break; } - - GINFO_PID=`echo $GINFO_PID | tr -d '\n'` - - test "$GINFO_PID" = "" || break - sleep 1 # Give subshell time to spawn ginfo process - done - test "$GINFO_PID" = "" && GINFO_PID=unknown - echo ...$GINFO_PID >&2 - else - echo 'pgrep program not found - cannot get PID of ginfo process' >&2 - GINFO_PID=unknown - fi + GINFO_PID=$! } diff --git a/info/t/Init-test.inc b/info/t/Init-test.inc index 1d13b97..945bdb5 100644 --- a/info/t/Init-test.inc +++ b/info/t/Init-test.inc @@ -1,4 +1,4 @@ -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -50,7 +50,6 @@ # Not an interactive test PTY_PID=0 -SUBSHELL=0 # Get error messages in English LC_ALL=C; export LC_ALL @@ -71,21 +70,15 @@ { # Delete created files and kill spawned processes if any. test $PTY_PID -ne 0 && kill $PTY_PID - test $SUBSHELL -ne 0 && kill $SUBSHELL rm -f $GINFO_OUTPUT rm -f $PIPEIN $PTY_TYPE - rm -f $FINISHEDFIFO # We do this because some versions of ksh93 (including that in # Solaris 11) have a bug where a timed-out "read -t" can mess up # the terminal settings, leading to characters not being echoed. # This is only done if we don't start with "-echo" at the beginning. test $reset_required = yes && { $STTY | grep '[-]echo' ; } && $STTY sane - - if test -n "$TIMED_OUT"; then - exit 1 - fi #killall `basename $0` # see below exit $RETVAL @@ -96,3 +89,17 @@ #cleanup +timeout_test () +{ + wait $GINFO_PID + status=$? + + RETVAL=0 + if test $status != 0; then + RETVAL=1 + fi + + # Program is gone, so avoid trying to kill it in cleanup + GINFO_PID=0 +} + diff --git a/info/t/Timeout-test.inc b/info/t/Timeout-test.inc deleted file mode 100644 index 2ff4a34..0000000 --- a/info/t/Timeout-test.inc +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Shell script snippet. Wait for program to finish. - -# Not timed out yet -TIMED_OUT= - -# Attempt to test if "read -t" works. Under Solaris 10, read -t below -# should exit the subshell with an error exit status. Under some other -# shells the subshell will not exit but the "read -t" will have an exit -# status of 2, representing a syntax error. -status=0 -(read -t 0 ; test $? != 2 ; exit $?) -if test $? != 0; then - # skip test below - status=2 -fi - -# If that succeeded, now check that "read -t 0" has no output, which could -# be an error message. -if test $status != 2; then - (read -t 0 2>&1 ) | grep . - test $? = 0 && status=2 -fi -# This last test was needed under OpenBSD 5.5, where -# "read -t 0" has an exit status of 1, not 2 - -if test $status != 2; then - read -t 3 FINISHED <$FINISHEDFIFO - status=$? -fi - -RETVAL=0 -if test $status = 1; then - echo 'read -t failed - probably end-of-file' >&2 - RETVAL=1 - -elif test $status != 0 -a $status -le 128 ; then - # Exit status of 'read' should be 0 on a successful read, or - # greater than 128 if it timed out. - rm -f $FINISHEDFIFO - echo 'read -t not supported - test skipped' >&2 - RETVAL=77 - cleanup -elif test "$FINISHED" = failure; then - echo 'Program exited unsuccessfully' >&2 - RETVAL=1 - -elif test "$FINISHED" != finished; then - # Kill ginfo if we have its PID. Failing this, it will probably exit - # with an I/O error when pseudotty is killed in Cleanup.inc. - test "$GINFO_PID" != unknown && kill $GINFO_PID - - echo 'Program timed out after 3 seconds' >&2 - TIMED_OUT=1 -fi - -# Subshell is gone, so avoid trying to kill it in cleanup -SUBSHELL=0 - -rm -f $FINISHEDFIFO - diff --git a/info/t/adjust-anchors.sh b/info/t/adjust-anchors.sh index d6e2ba5..519f68f 100755 --- a/info/t/adjust-anchors.sh +++ b/info/t/adjust-anchors.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ printf 'ganchor-2\r\002\002\002\002\002\002' >$PTY_TYPE printf '\002\002\002\002\002\002\002\002\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/all-only.sh b/info/t/all-only.sh index 1fd154a..933e668 100755 --- a/info/t/all-only.sh +++ b/info/t/all-only.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,7 +26,7 @@ # on there being no "intera" entry in "dir". run_ginfo --all intera printf 'Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test grep '^File: intera.info, Node: Top' $GINFO_OUTPUT RETVAL=$? diff --git a/info/t/anchor-positions.sh b/info/t/anchor-positions.sh index fd17678..4ae3c70 100755 --- a/info/t/anchor-positions.sh +++ b/info/t/anchor-positions.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,6 +24,6 @@ run_ginfo -f anchor-positions printf q >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/body-start.sh b/info/t/body-start.sh index 796144b..2af1ad3 100755 --- a/info/t/body-start.sh +++ b/info/t/body-start.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Check that node headers aren't included in searches printf 'sPotential match\r\rDq' >$PTY_TYPE & -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/c-u-m-x-scroll-forward.sh b/info/t/c-u-m-x-scroll-forward.sh index f02d7ff..1ce35ed 100755 --- a/info/t/c-u-m-x-scroll-forward.sh +++ b/info/t/c-u-m-x-scroll-forward.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -28,13 +28,13 @@ LINES=7; export LINES COLUMNS=80; export COLUMNS -run_ginfo -f intera -n 'Scroll four lines' +run_ginfo "-f intera -n 'Scroll four lines'" # C-u M-x scroll-forward should scroll four lines, not four screens printf '\025\033xscroll-forward\r' >$PTY_TYPE printf '\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/close-window-after-search.sh b/info/t/close-window-after-search.sh index 301a88d..97a031f 100755 --- a/info/t/close-window-after-search.sh +++ b/info/t/close-window-after-search.sh @@ -24,6 +24,6 @@ # place in. printf '\0302sblah\r\0300q' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/dir-3-menus.sh b/info/t/dir-3-menus.sh index 6da196d..75258c4 100755 --- a/info/t/dir-3-menus.sh +++ b/info/t/dir-3-menus.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-dangling-entry.sh b/info/t/dir-dangling-entry.sh index 43c55a0..04c5276 100755 --- a/info/t/dir-dangling-entry.sh +++ b/info/t/dir-dangling-entry.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-entry-to-subdir.sh b/info/t/dir-entry-to-subdir.sh index e0bc65b..045201a 100755 --- a/info/t/dir-entry-to-subdir.sh +++ b/info/t/dir-entry-to-subdir.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ # Follow a dir entry to a file in a subdirectory of infodir run_ginfo subdir printf 'Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cat $GINFO_OUTPUT grep '^File: file-in-subdir.info' $GINFO_OUTPUT diff --git a/info/t/dir-file-index.sh b/info/t/dir-file-index.sh index eb34b33..ecf30d2 100755 --- a/info/t/dir-file-index.sh +++ b/info/t/dir-file-index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-file-menu.sh b/info/t/dir-file-menu.sh index e4e53b0..32c5eca 100755 --- a/info/t/dir-file-menu.sh +++ b/info/t/dir-file-menu.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-file-no-menu.sh b/info/t/dir-file-no-menu.sh index 7fa723c..6ddb2e9 100755 --- a/info/t/dir-file-no-menu.sh +++ b/info/t/dir-file-no-menu.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-file-node.sh b/info/t/dir-file-node.sh index a27a81d..7aab3f7 100755 --- a/info/t/dir-file-node.sh +++ b/info/t/dir-file-node.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-file-sloppily.sh b/info/t/dir-file-sloppily.sh index d94572e..f26fd47 100755 --- a/info/t/dir-file-sloppily.sh +++ b/info/t/dir-file-sloppily.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-file.sh b/info/t/dir-file.sh index f02c68b..d1c533b 100755 --- a/info/t/dir-file.sh +++ b/info/t/dir-file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-menus-sloppily.sh b/info/t/dir-menus-sloppily.sh index 5d81015..d32a4a5 100755 --- a/info/t/dir-menus-sloppily.sh +++ b/info/t/dir-menus-sloppily.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-merge.sh b/info/t/dir-merge.sh index 12290bd..c3e37c6 100755 --- a/info/t/dir-merge.sh +++ b/info/t/dir-merge.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,6 +24,6 @@ run_ginfo -v hide-note-references=On file-in-subdir printf q >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/dir-no-file.sh b/info/t/dir-no-file.sh index 42eb76a..1049283 100755 --- a/info/t/dir-no-file.sh +++ b/info/t/dir-no-file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir-nondir.sh b/info/t/dir-nondir.sh index c1b617c..ebee30e 100755 --- a/info/t/dir-nondir.sh +++ b/info/t/dir-nondir.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/dir.sh b/info/t/dir.sh index 903dc31..46811f7 100755 --- a/info/t/dir.sh +++ b/info/t/dir.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/empty-infopath.sh b/info/t/empty-infopath.sh index 82631a8..a41aeab 100755 --- a/info/t/empty-infopath.sh +++ b/info/t/empty-infopath.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,7 +25,7 @@ export INFOPATH run_ginfo printf q >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/empty.sh b/info/t/empty.sh index b205344..0d3002e 100755 --- a/info/t/empty.sh +++ b/info/t/empty.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/end-of-line.sh b/info/t/end-of-line.sh index 3200244..6620d44 100755 --- a/info/t/end-of-line.sh +++ b/info/t/end-of-line.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Check that typing C-e on an empty line doesn't go to previous line printf '\x0e\x0e\x0e\x0e\x0e\x05\x0e\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/file-file-with-dot.sh b/info/t/file-file-with-dot.sh index b7a140e..206bab0 100755 --- a/info/t/file-file-with-dot.sh +++ b/info/t/file-file-with-dot.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file-index.sh b/info/t/file-index.sh index a3ca865..cd68a17 100755 --- a/info/t/file-index.sh +++ b/info/t/file-index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file-node-with-dot.sh b/info/t/file-node-with-dot.sh index c1c97d4..a2a1c58 100755 --- a/info/t/file-node-with-dot.sh +++ b/info/t/file-node-with-dot.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file-node.sh b/info/t/file-node.sh index 831631d..2d51579 100755 --- a/info/t/file-node.sh +++ b/info/t/file-node.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file-nodes.sh b/info/t/file-nodes.sh index ad9d183..8a54c05 100755 --- a/info/t/file-nodes.sh +++ b/info/t/file-nodes.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file-relative-path.sh b/info/t/file-relative-path.sh index 322dbc7..cdc6b50 100755 --- a/info/t/file-relative-path.sh +++ b/info/t/file-relative-path.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/file.sh b/info/t/file.sh index 73ed7ab..72b8144 100755 --- a/info/t/file.sh +++ b/info/t/file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/gc-split.sh b/info/t/gc-split.sh index e8d6f50..524b887 100755 --- a/info/t/gc-split.sh +++ b/info/t/gc-split.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,7 @@ # incremental search. Refresh the screen afterwards to increase the # chances of trying to access freed file contents. printf '\023aa\033[B\014q' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/goal-column.sh b/info/t/goal-column.sh index dcca661..af768eb 100755 --- a/info/t/goal-column.sh +++ b/info/t/goal-column.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,7 @@ printf '/^Goal column test\r\016' >$PTY_TYPE printf '\005\016\016\006\006' >$PTY_TYPE printf '\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test diff $GINFO_OUTPUT $t/node-target RETVAL=$? diff --git a/info/t/goto-quoted.sh b/info/t/goto-quoted.sh index 8b8efa1..2809aef 100755 --- a/info/t/goto-quoted.sh +++ b/info/t/goto-quoted.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Go to a node with colons and commas in its name with "g" printf 'g\tColo\t\r\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/inc-sea-bs.sh b/info/t/inc-sea-bs.sh new file mode 100755 index 0000000..d074784 --- /dev/null +++ b/info/t/inc-sea-bs.sh @@ -0,0 +1,32 @@ +#!/bin/sh +# Copyright (C) 2017 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +srcdir=${srcdir:-.} +. $srcdir/t/Init-test.inc +. $t/Init-inter.inc + +run_ginfo -f intera -n Top + +# Do a incremental search and enter a single backslash. This is to +# test that it doesn't crash when the input is not valid. +printf '\023' >$PTY_TYPE +printf '\\\n' >$PTY_TYPE +printf q >$PTY_TYPE + +timeout_test + +cleanup + diff --git a/info/t/inc-sea-forward-nonregex.sh b/info/t/inc-sea-forward-nonregex.sh index 2995936..48b2977 100755 --- a/info/t/inc-sea-forward-nonregex.sh +++ b/info/t/inc-sea-forward-nonregex.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ printf 'R\023matchxy\010\010' >$PTY_TYPE printf '\023\023\023\r\006\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/inc-sea-forward.sh b/info/t/inc-sea-forward.sh index 283a99e..dbb668e 100755 --- a/info/t/inc-sea-forward.sh +++ b/info/t/inc-sea-forward.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ printf '\023matchxy\010\010' >$PTY_TYPE printf '\023\023\023\r\006\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/inc-sea-history.sh b/info/t/inc-sea-history.sh index 02aa3a2..e58d0e8 100755 --- a/info/t/inc-sea-history.sh +++ b/info/t/inc-sea-history.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ RETVAL=$? printf 'lDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test $RETVAL = 0; then grep 'Node: Top' $GINFO_OUTPUT diff --git a/info/t/inc-sea-insensitive.sh b/info/t/inc-sea-insensitive.sh index 3908c8b..0a0d163 100755 --- a/info/t/inc-sea-insensitive.sh +++ b/info/t/inc-sea-insensitive.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ . $srcdir/t/Init-test.inc . $t/Init-inter.inc -run_ginfo -f intera -n 'Incremental search case-insensitive' +run_ginfo "-f intera -n 'Incremental search case-insensitive'" # Search for "match" with incremental search, adding an upper-case character # to make the search case-sensitive. Delete it and check the search goes back @@ -26,7 +26,7 @@ printf '\023matchX\010' >$PTY_TYPE printf '\023\023\r\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/index-apropos.sh b/info/t/index-apropos.sh index 2961654..a10f888 100755 --- a/info/t/index-apropos.sh +++ b/info/t/index-apropos.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ # We exited the "i" prompt with "xxx\r" instead of "\007" because # C-g leads typeahead to be discarded so it would not be reliable. -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/index-completing.sh b/info/t/index-completing.sh index e65f6f4..06e2908 100755 --- a/info/t/index-completing.sh +++ b/info/t/index-completing.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f index-search # Check that pressing tab to complete works for index search printf 'i\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test grep '^Node: Node 2' $GINFO_OUTPUT RETVAL=$? diff --git a/info/t/index-long-nodeline.sh b/info/t/index-long-nodeline.sh index 696a8f7..ce342bd 100755 --- a/info/t/index-long-nodeline.sh +++ b/info/t/index-long-nodeline.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Follow an menu item from the index node to a node where physical lines # don't match logical lines. printf 'gIndex\r\t\t\r\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/index-search.sh b/info/t/index-search.sh index c0febfb..4cb60a4 100755 --- a/info/t/index-search.sh +++ b/info/t/index-search.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,7 @@ # entry and select it. printf 'Ibc\r\016\016\016\016\016\016\016\016\016\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/index.sh b/info/t/index.sh index 78cfb84..cadcd3e 100755 --- a/info/t/index.sh +++ b/info/t/index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Follow an index entry printf 'iabc\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/infodir/intera.info b/info/t/infodir/intera.info index 927c127..776e8b7 100644 Binary files a/info/t/infodir/intera.info and b/info/t/infodir/intera.info differ diff --git a/info/t/infodir/malformed-split.info b/info/t/infodir/malformed-split.info new file mode 100644 index 0000000..4e0fa7d --- /dev/null +++ b/info/t/infodir/malformed-split.info @@ -0,0 +1,4 @@ + +Indirect: +split-1: 1000 +split-10: 2000 diff --git a/info/t/infodir/subfile-initial-match-1 b/info/t/infodir/subfile-initial-match-1 new file mode 100644 index 0000000..0a5c839 --- /dev/null +++ b/info/t/infodir/subfile-initial-match-1 @@ -0,0 +1,4 @@ + +Node: One + +This is node one. diff --git a/info/t/infodir/subfile-initial-match-10 b/info/t/infodir/subfile-initial-match-10 new file mode 100644 index 0000000..3e284c0 --- /dev/null +++ b/info/t/infodir/subfile-initial-match-10 @@ -0,0 +1,4 @@ + +Node: Two + +This is node two. diff --git a/info/t/infodir/subfile-initial-match.info b/info/t/infodir/subfile-initial-match.info new file mode 100644 index 0000000..fdac336 --- /dev/null +++ b/info/t/infodir/subfile-initial-match.info @@ -0,0 +1,11 @@ + +Indirect: +subfile-initial-match-1: 1000 +subfile-initial-match-10: 2000 + +Tag Table: +(Indirect) +Node: One1000 +Node: Two2000 + +End Tag Table diff --git a/info/t/last-no-history.sh b/info/t/last-no-history.sh index 99a88ad..2c5ec68 100755 --- a/info/t/last-no-history.sh +++ b/info/t/last-no-history.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Try to go back in history when there is no earlier node printf lq >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/last-node-not-top-level.sh b/info/t/last-node-not-top-level.sh index ab8b3e7..7a28487 100755 --- a/info/t/last-node-not-top-level.sh +++ b/info/t/last-node-not-top-level.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Wrap round to top node when last node does not have Top as Up printf ']]]Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test grep 'Node: Top' $GINFO_OUTPUT RETVAL=$? diff --git a/info/t/malformed-split.sh b/info/t/malformed-split.sh new file mode 100755 index 0000000..8a34c64 --- /dev/null +++ b/info/t/malformed-split.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# Copyright (C) 2017 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +srcdir=${srcdir:-.} +. $srcdir/t/Init-test.inc +. $t/Init-inter.inc + +# Load a split file with a malformed or missing tag table. + +run_ginfo --file malformed-split --node Two +printf q >$PTY_TYPE + +timeout_test + +cleanup diff --git a/info/t/menu-sequence.sh b/info/t/menu-sequence.sh index 9fac449..2ba1bec 100755 --- a/info/t/menu-sequence.sh +++ b/info/t/menu-sequence.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f intera # M-x menu-sequence printf '\033xmenu-sequence\rfile-menu,first,no,nod\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/next-quoted.sh b/info/t/next-quoted.sh index 5fc6e67..4554039 100755 --- a/info/t/next-quoted.sh +++ b/info/t/next-quoted.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f quoting # Go to a node with colons and commas in its name with "n" printf 'n\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/no-file.sh b/info/t/no-file.sh index d0f0a0a..edd225a 100755 --- a/info/t/no-file.sh +++ b/info/t/no-file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/no-index.sh b/info/t/no-index.sh index bf640ba..472cc4b 100755 --- a/info/t/no-index.sh +++ b/info/t/no-index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f sample # Try to search in the indices when there aren't any printf 'ia\rq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/node-no-file.sh b/info/t/node-no-file.sh index 0c4ff28..781ad45 100755 --- a/info/t/node-no-file.sh +++ b/info/t/node-no-file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2016 Free Software Foundation, Inc. +# Copyright (C) 2014, 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/quoted-label-and-target.sh b/info/t/quoted-label-and-target.sh index 2ed6891..875bbc2 100755 --- a/info/t/quoted-label-and-target.sh +++ b/info/t/quoted-label-and-target.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Follow a cross-reference with both the label and destination quoted. printf '\t\t\t\r\t\rDq' >$PTY_TYPE & -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/quoted-label-as-target.sh b/info/t/quoted-label-as-target.sh index 0e7ba31..529e051 100755 --- a/info/t/quoted-label-as-target.sh +++ b/info/t/quoted-label-as-target.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f quoting # Follow a cross-reference to a node with colons and commas in its name printf '\t\r\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/quoted-manual-in-label.sh b/info/t/quoted-manual-in-label.sh index 89c77d9..e0286c9 100755 --- a/info/t/quoted-manual-in-label.sh +++ b/info/t/quoted-manual-in-label.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f quoting # Follow a cross-reference with a manual and quoted nodename in the label. printf '\t\t\t\t\t\r\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/quoted-manual-in-target.sh b/info/t/quoted-manual-in-target.sh index ddadf67..436b286 100755 --- a/info/t/quoted-manual-in-target.sh +++ b/info/t/quoted-manual-in-target.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Follow a cross-reference with a manual and quoted nodename in the target, # after the colon. printf '\t\t\t\t\r\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/quoted-target.sh b/info/t/quoted-target.sh index 6b3fb79..64eb6d0 100755 --- a/info/t/quoted-target.sh +++ b/info/t/quoted-target.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f quoting # Follow a cross-reference to a node with colons and commas in its name printf '\t\t\r\t\r\Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/relative-path.sh b/info/t/relative-path.sh index 4567723..ada84fe 100755 --- a/info/t/relative-path.sh +++ b/info/t/relative-path.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/relative-reference.sh b/info/t/relative-reference.sh index cb45a18..2f1f9f2 100755 --- a/info/t/relative-reference.sh +++ b/info/t/relative-reference.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,6 +25,6 @@ printf '\0302\t\t\t\r' >$PTY_TYPE printf '\030o\0301\t\t\t\rq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/replace-viewed.sh b/info/t/replace-viewed.sh index 822d85e..cd98836 100755 --- a/info/t/replace-viewed.sh +++ b/info/t/replace-viewed.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -45,6 +45,6 @@ printf q >$PTY_TYPE rm -f t/replace-viewed.info -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/resize-in-completions.sh b/info/t/resize-in-completions.sh index d8b6254..43de949 100755 --- a/info/t/resize-in-completions.sh +++ b/info/t/resize-in-completions.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -34,6 +34,6 @@ printf '\007q' >$PTY_TYPE fi -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/search-after-tag.sh b/info/t/search-after-tag.sh index 483e826..267b03e 100755 --- a/info/t/search-after-tag.sh +++ b/info/t/search-after-tag.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ # Search for text in a node that appears after an Info tag printf '/match\r\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/search-empty.sh b/info/t/search-empty.sh index 188ad3a..73ef064 100755 --- a/info/t/search-empty.sh +++ b/info/t/search-empty.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,6 +22,6 @@ # Search without specifying a search string, and check we don't crash. printf 's\rq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/search-skip-screen.sh b/info/t/search-skip-screen.sh index 719ef54..f5bf9a0 100755 --- a/info/t/search-skip-screen.sh +++ b/info/t/search-skip-screen.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,7 @@ # Go back to previous match when search-skip-screen=On printf 'smatch\r}{Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Check we went back to the right node. grep '^File: search\.info, Node: Top' $GINFO_OUTPUT diff --git a/info/t/search-split-after-index.sh b/info/t/search-split-after-index.sh index daeda44..bd29c3d 100755 --- a/info/t/search-split-after-index.sh +++ b/info/t/search-split-after-index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2016 Free Software Foundation, Inc. +# Copyright (C) 2016, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -20,10 +20,10 @@ # Search for text in a split file after loading an index entry from the # command-line. -run_ginfo -f split 'Link to node' +run_ginfo "-f split 'Link to node'" printf '/node\r}}}}}q' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/spec-file-node.sh b/info/t/spec-file-node.sh index 0fd911c..22fab3d 100755 --- a/info/t/spec-file-node.sh +++ b/info/t/spec-file-node.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/spec-menu.sh b/info/t/spec-menu.sh index f45e50f..38e669d 100755 --- a/info/t/spec-menu.sh +++ b/info/t/spec-menu.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/spec-no-node.sh b/info/t/spec-no-node.sh index 5fb2c20..e1cd22e 100755 --- a/info/t/spec-no-node.sh +++ b/info/t/spec-no-node.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/split-file-menu.sh b/info/t/split-file-menu.sh index 11cd906..da2cf6b 100755 --- a/info/t/split-file-menu.sh +++ b/info/t/split-file-menu.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ # the one containing "Top". Check that we arrived properly and remembered # that we are in a split file by going back to "Top" with "t". printf tDq >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/split-footnotes.sh b/info/t/split-footnotes.sh index 5736a2b..a52eb29 100755 --- a/info/t/split-footnotes.sh +++ b/info/t/split-footnotes.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,10 +18,10 @@ . $srcdir/t/Init-test.inc . $t/Init-inter.inc -run_ginfo -f intera -n 'Node with footnotes' -v automatic-footnotes=On +run_ginfo "-f intera -n 'Node with footnotes' -v automatic-footnotes=On" # Move to automatic footnotes window and split it. Check we don't crash. printf '\030o\0302qqqq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/split-index.sh b/info/t/split-index.sh index 4f282a8..abf221e 100755 --- a/info/t/split-index.sh +++ b/info/t/split-index.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ run_ginfo -f split printf 'ientry text\r\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/split.sh b/info/t/split.sh index 1cf324d..b1fb2aa 100755 --- a/info/t/split.sh +++ b/info/t/split.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/star-note-non-whitespace.sh b/info/t/star-note-non-whitespace.sh index 9e2b409..fa155cc 100755 --- a/info/t/star-note-non-whitespace.sh +++ b/info/t/star-note-non-whitespace.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,13 +18,13 @@ . $srcdir/t/Init-test.inc . $t/Init-inter.inc -run_ginfo -f intera -n 'Star note non-whitespace' +run_ginfo "-f intera -n 'Star note non-whitespace'" # Check that "*note" is not interpreted as a cross-reference marker if # it is followed by a non-whitespace character. printf '\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test # Return non-zero (test failure) if files differ diff $GINFO_OUTPUT $t/node-target diff --git a/info/t/tab-argument.sh b/info/t/tab-argument.sh index 8a800a6..1e57e5c 100755 --- a/info/t/tab-argument.sh +++ b/info/t/tab-argument.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,10 +18,10 @@ . $srcdir/t/Init-test.inc . $t/Init-inter.inc -run_ginfo -f intera -n 'Argument to tab' +run_ginfo "-f intera -n 'Argument to tab'" # C-u 2 TAB to go to second link printf '\0252\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test diff $GINFO_OUTPUT $t/node-target RETVAL=$? diff --git a/info/t/tab-no-xref.sh b/info/t/tab-no-xref.sh index 03b153b..439ad54 100755 --- a/info/t/tab-no-xref.sh +++ b/info/t/tab-no-xref.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,6 +22,6 @@ # Check that pressing tab in a file with no cross-references or menus # doesn't cause an infinite loop printf '\tq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test cleanup diff --git a/info/t/tab-skip-node.sh b/info/t/tab-skip-node.sh index 79aad2e..4d1b9bc 100755 --- a/info/t/tab-skip-node.sh +++ b/info/t/tab-skip-node.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ # back to the last node that was actually displayed, and not to the # skipped node. printf '\t\t\tlDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test grep 'Node: Top' $GINFO_OUTPUT RETVAL=$? diff --git a/info/t/tab.sh b/info/t/tab.sh index 173ba7f..c8bb0e3 100755 --- a/info/t/tab.sh +++ b/info/t/tab.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014, 2015 Free Software Foundation, Inc. +# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ run_ginfo -f intera # Tab to first link and follow it printf '\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/info/t/where-dir-file.sh b/info/t/where-dir-file.sh index d7be354..e47a33f 100755 --- a/info/t/where-dir-file.sh +++ b/info/t/where-dir-file.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/info/t/window-split-dir.sh b/info/t/window-split-dir.sh index e5ca720..b216044 100755 --- a/info/t/window-split-dir.sh +++ b/info/t/window-split-dir.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014 Free Software Foundation, Inc. +# Copyright (C) 2014, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ run_ginfo # Split it in two, go to the new window, and make it the only window. printf '\0302\030o\0301Dq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test grep '^File: dir' $GINFO_OUTPUT RETVAL=$? diff --git a/info/t/xref-across-lines-2.sh b/info/t/xref-across-lines-2.sh new file mode 100755 index 0000000..b8f4682 --- /dev/null +++ b/info/t/xref-across-lines-2.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# Copyright (C) 2017 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +srcdir=${srcdir:-.} +. $srcdir/t/Init-test.inc +. $t/Init-inter.inc + +run_ginfo '-f intera -n "Xref target crosses lines 2"' +printf '\t\rDq' >$PTY_TYPE +timeout_test + +grep 'Node: target node two' $GINFO_OUTPUT +RETVAL=$? + +cleanup diff --git a/info/t/xref-across-lines.sh b/info/t/xref-across-lines.sh index 040bab8..5514e8a 100755 --- a/info/t/xref-across-lines.sh +++ b/info/t/xref-across-lines.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,9 +18,9 @@ . $srcdir/t/Init-test.inc . $t/Init-inter.inc -run_ginfo -f intera -n 'Xref target crosses lines' +run_ginfo "-f intera -n 'Xref target crosses lines'" printf '\t\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test diff $GINFO_OUTPUT $t/node-target RETVAL=$? diff --git a/info/t/xref-to-anchor.sh b/info/t/xref-to-anchor.sh index 085d5ab..823cedd 100755 --- a/info/t/xref-to-anchor.sh +++ b/info/t/xref-to-anchor.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015, 2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,7 +25,7 @@ # Follow the cross-reference on the line after the anchor printf '\6\6\rDq' >$PTY_TYPE -. $t/Timeout-test.inc +timeout_test if test ! -f $GINFO_OUTPUT; then RETVAL=1 diff --git a/install-info/Makefile.in b/install-info/Makefile.in index b01f7b1..f1b4f9f 100644 --- a/install-info/Makefile.in +++ b/install-info/Makefile.in @@ -1058,6 +1058,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/install-info/tests/Makefile.in b/install-info/tests/Makefile.in index dc22c22..9627dba 100644 --- a/install-info/tests/Makefile.in +++ b/install-info/tests/Makefile.in @@ -1143,6 +1143,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/man/Makefile.in b/man/Makefile.in index 846809b..803b896 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -973,6 +973,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/man/info.1 b/man/info.1 index 1d56651..4d0da76 100644 --- a/man/info.1 +++ b/man/info.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. -.TH INFO "1" "June 2017" "info 6.4" "User Commands" +.TH INFO "1" "July 2017" "info 6.4.90" "User Commands" .SH NAME info \- read Info documents .SH SYNOPSIS diff --git a/man/install-info.1 b/man/install-info.1 index 74014b6..a57214f 100644 --- a/man/install-info.1 +++ b/man/install-info.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. -.TH INSTALL-INFO "1" "June 2017" "install-info 6.4" "User Commands" +.TH INSTALL-INFO "1" "July 2017" "install-info 6.4.90" "User Commands" .SH NAME install-info \- update info/dir entries .SH SYNOPSIS diff --git a/man/makeinfo.1 b/man/makeinfo.1 index 643f1c0..8327150 100644 --- a/man/makeinfo.1 +++ b/man/makeinfo.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. -.TH TEXI2ANY "1" "June 2017" "texi2any 6.4" "User Commands" +.TH TEXI2ANY "1" "July 2017" "texi2any 6.4.90" "User Commands" .SH NAME texi2any \- translate Texinfo documents .SH SYNOPSIS diff --git a/man/texi2dvi.1 b/man/texi2dvi.1 index ddbe718..4c360a9 100644 --- a/man/texi2dvi.1 +++ b/man/texi2dvi.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. -.TH TEXI2DVI "1" "June 2017" "texi2dvi 7840" "User Commands" +.TH TEXI2DVI "1" "July 2017" "texi2dvi 7906" "User Commands" .SH NAME texi2dvi \- convert Texinfo documents to DVI or PDF .SH SYNOPSIS diff --git a/man/texindex.1 b/man/texindex.1 index cad9be4..807e656 100644 --- a/man/texindex.1 +++ b/man/texindex.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. -.TH TEXINDEX "1" "June 2017" "texindex 6.4" "User Commands" +.TH TEXINDEX "1" "July 2017" "texindex 6.4.90" "User Commands" .SH NAME texindex \- sort Texinfo index files .SH SYNOPSIS diff --git a/po/ca.gmo b/po/ca.gmo index 6a90c1e..dfec2af 100644 Binary files a/po/ca.gmo and b/po/ca.gmo differ diff --git a/po/ca.po b/po/ca.po index a087126..3cd3b03 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 6.1.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2016-12-30 07:10+0100\n" "Last-Translator: Walter Garcia-Fontes \n" "Language-Team: Catalan \n" @@ -389,42 +389,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "No hi ha un element de menú `%s' al node `%s'." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "No es pot trobar el node `%s'." -#: info/info.c:437 +#: info/info.c:439 #, fuzzy, c-format msgid "No program name given" msgstr "No s'ha donat un nom de programa." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "número no vàlid: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "Assignació mal format de variable: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: la variable no existeix" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "el valor %s no és vàlid per a la variable %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Proveu --help per a més informació.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -440,12 +440,12 @@ "lo.\n" "No hi ha CAP GARANTIA, en la mesura que ho permet la llei.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "no s'han trobat entrades d'índex per a `%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -456,7 +456,7 @@ "\n" "Llegiu la informació en format Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -474,7 +474,7 @@ "FITXER\n" " -f, --file=MANUAL especifiqueu al manual INFO a visitar." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -489,17 +489,17 @@ "visitat.\n" " -o, --output=FITXER bolca els nodes escollits a FITXER." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly sigues amigable amb els sintetitzadors de veu." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -519,7 +519,7 @@ " -x, --debug=NUMBER estableix el nivell de depuració (-1 per a " "tot).\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -537,7 +537,7 @@ "Tots els arguments restants són considerats el noms dels elements\n" "de menú relatius al node inicial que s'ha visitat." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -545,7 +545,7 @@ "\n" "Per a un resum de les assignacions de tecles, entreu H dins d'Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -581,7 +581,7 @@ "sencer a sortida.txt\n" " info -f ./bla.info mostra el fitxer ./bla.info, sense buscar a dir" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -591,75 +591,75 @@ "preguntes generals i discussió a help-texinfo@gnu.org.\n" "Pàgina d'inici de texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "No es pot trobar el node '(%s)%s'." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "No es pot trobar una finestra!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "El punt no apareix dins del node d'aquesta finestra!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "No es pot eliminar l'última finestra." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "No hi ha un menú a aquest node." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "No hi ha notes a peu de pàgina a aquest node." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "No hi ha referències creuades a aquest node." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "No hi ha un punter '%s' per a aquest node." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Ordre `%c' d'Info desconeguda; proveu `?' per a ajuda." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "La terminal tipus `%s' no és prou intel·ligent per executar Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Ja esteu a l'última pàgina d'aquest node." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Ja esteu a la primera pàgina d'aquest node." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Sols una finestra." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "La finestra resultant seria massa petita." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1470,193 +1470,193 @@ msgid "Using literal strings for searches" msgstr "S'estan usant cadenes literals de caràcters per a les cerques." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Es continuarà la cerca des del final del document." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Es continuarà la cerca des del principi del document." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "S'està buscant el subfitxer %s..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "La cerca ha fallat." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Cerca d'expressió regular" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Cerca" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "respectant majúscules i minúscules" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " cap endarrere" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "La cadena de caràcters de cerca és massa curta" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Es retornarà a l'última concordança des de %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "No hi ha més concordances" -#: info/session.c:4577 +#: info/session.c:4574 #, fuzzy msgid "Search this node and subnodes for a string" msgstr "Cerca aquest node i subnodes per una cadena de caràcters." #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "S'està buscant el subfitxer %s..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Ves a la concordança següent del subarbre Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "No hi ha cap cerca activa" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Ves a la concordança anterior al subarbre Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" "Llegeix una cadena de caràcters i busca-la respectant majúscules i minúscules" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Llegeix una cadena de caràcters i busca-la" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Llegeix una cadena de caràcters i busca cap endarrere per ella" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Repeteix l'última cerca en la mateixa direcció" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "No hi ha una cadena de caràcters de cerca prèvia" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Repeteix l'última cerca en la direcció inversa" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Neteja les concordances mostrades de cerca" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "" "Cerca interactivament per una cadena de caràcters a mesura que l'escriviu" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "I-cerca l'expressió regular cap endarrere: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-cerca cap endarrere: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "I-cerca l'expressió regular: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-cerca: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Està fallant " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Cancel·la l'operació actual" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Surt" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Mostra la informació de versió de l'Info que s'està executant" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info versió %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Torna a dibuixar la pantalla" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Surt d'Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Executa l'ordre lligada a la variant minúscula d'aquesta tecla" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Ordre desconeguda (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" no és vàlid" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' no és vàlid" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Afegeix aquest dígit a l'argument numèric actual" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Inicia (o multiplica per 4) l'argument numèric actual" @@ -2087,32 +2087,32 @@ msgstr "no s'han trobat entrades per a `%s'; no s'ha esborrat res" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "no s'ha pogut obrir %s per escriure: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "sempre es permet la recursivitat" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "els arguments estan entre cometes de forma predeterminada" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "moveu la vostre ordre @contents si voleu els continguts després de la pàgina " "de títol" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2120,50 +2120,50 @@ "moveu les vostres ordres @shortcontents i @contents si voleu els continguts " "després de la pàgina de títol" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s no és un codi vàlid" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s no es un codi vàlid de regió" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s no és una possibilitat vàlida de divisió" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "no s'ha pogut llegir %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "error en tancar fitxer @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: no s'ha pogut trobar %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "no hi ha un node a reanomenar" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "hi ha nodes sense un nom nou al final del fitxer" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "no s'ha pogut obrir %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "no s'ha pogut protegir el caràcter coixinet a @%s" @@ -2179,11 +2179,11 @@ msgstr "%s: la sortida és incompatible amb la divisió" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "error en tancar %s: %s" @@ -2203,7 +2203,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "no s'ha trobar el fitxer @image `%s', s'usarà `%s'" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "no s'ha especificat un argument per a @U" @@ -2212,112 +2212,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "no s'ha trobat el fitxer @image `%s' (for HTML), s'usarà `%s'" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "el format en cru %s no es convertirà" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" "no s'ha pogut obrir el fitxer de configuració de referències html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "tipus que falta" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "tipus no reconegut: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "error en tancar el fitxer de configuració de referències html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "la cadena de caràcters no està tancada al fitxer css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include ha finalitzat en un comentari" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import no ha acabat a un fitxer css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "No s'ha trobat el fitxer CSS %s" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "no s'ha pogut obrir --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "error en tancar el fitxer CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "no s'ha trobat una entrada htmlxref.cnf per a `%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "error en tancar el fitxer marc %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "error en tancar el fitxer marc taula de continguts %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "ha fallat el gestor %s de l'etapa %s amb prioritat %s" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "heu d'especificar un títol amb una ordre de títol o @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "error en tancar el fitxer de node de redirecció %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "el nom antic per a `%s' és un node del document" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "el fitxer està buit per al node reanomenat `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "el node destí (nou nom per a `%s') no està al document: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "error en tancar el fitxer reanomenat de node de redirecció %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "nom buit de node" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "sintaxi per a un node extern usat per a `%s'" @@ -2355,7 +2355,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "L'entrada d'índex a @%s amb : productio Info invàlid: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "l'entrada per a l'índex `%s' està fora de qualsevol node" @@ -2421,289 +2421,284 @@ msgid "menu entry name should not contain `:'" msgstr "el nom d'entrada de menú no hauria de contenir `:'" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "nom de node buit després d'expansió `%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s `%s' definit prèviament" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "aquí està la definició prèvia de @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "argument buit a @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "@%s múltiple" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "argument formal @%s incorrecte o buit: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "sintaxi incorrecta per a argument @%s: %s " -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s requereix un nom" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "nom incorrecte per a @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s vist abans @%s claudàtor de tancada" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s vist abans @%s claudàtor de tancada" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s claudàtor de tancada que falta" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s seqüència de delimitació de tancada que falta: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx no hauria de començar @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx ha de seguir @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s té text però no @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' esperava `%s', però ha vist `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "s'ha vist @%s abans de @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "no hi ha `%cend %s' concordant" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "%c fora de lloc" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "`%c%s' no concordat" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "el macro `%s' s'ha cridat amb massa arguments" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s claudàtor de tancada que falta" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "el macro `%s' s'ha declarat sense un argument cridat amb un argument" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "\\ a expansió @%s seguida de `%s' en comptes del nom de paràmetre o \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "nom que falta per a @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "categoria que falta per a @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "argument inesperat sobre @%s a la línia: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "multitaula buida" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "argument superflu a @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "argument incorrecte a @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s requereix un argument: el formatejador per a %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "l'ordre @%s que no està acceptant un argument en claudàtor no hauria de " "estar a la línia @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "l'ordre d'accent `@%s' no està permesa com argument @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s argument que falta" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "@end desconegut %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "argument superflu a @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "argument incorrecte a @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: no s'ha pogut obrir %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "la codificació `%s' no és una codificació de texinfo canònica" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nom `%s' de codificació no reconegut" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s després del primer element" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s sols té sentit a una línia @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s no hauria d'estar associat amb @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node precedeix @%s, però les parts no haurien d'estar associades amb nodes" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "nom buit d'entrada de menú a `%s'" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "nom buit de node a entrada de menú" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s no hauria d'aparèixer a @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s hauria d'aparèixer únicament a un principi de línia" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "el macro `%s' ha estat definit prèviament" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "aquí està la definició prèvia de `%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "s'està redefinint l'ordre de llenguatge Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s sense un caràcter associat" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "@%s definit amb zero o més d'un argument hauria de ser invocat amb {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2712,430 +2707,430 @@ "la crida de macro està niuada massa profundament (establiu MAX_NESTED_MACROS " "per anul·lar-ho: el valor actual és %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "no està permès la crida recursiva del macro %s; useu @rmacro si es necessita" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "l'ordre d'accent `@%s' no ha de ser seguida per espai en blanc" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "useu claudàtors per donar una ordre com argument per a @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s espera `i' o `j' com argument, no `%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "l'ordre d'accent `@%s' no ha de ser seguida per una línia nova" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s esperava claudàtors" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "etiqueta no definida: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "sintaxi incorrecta per a @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s és obsolet." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s és obsolet; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s hauria d'aparèixer únicament a un començament de línia" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s no està permès dins d'un bloc `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s hauria d'aparèixer únicament a la capçalera o al peu" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s no té sentit dins d'un bloc `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s a una multitaula buida" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab abans de @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "massa columnes a element multitaula (max %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "s'ignorarà @tab fora d'una multitaula" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s fora d'una taula o una llista" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "ha d'estar a darrera de `@%s' per usar `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s no té sentit fora d'entorns `@titlepage' i `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory després del primer node" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "no es permet una regió %s dins d'una regió %s" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry després del primer node" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "s'ha vist @%s abans del primer @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "potser el vostre node @top hauria d'estar envoltat dins de @ifnottex and " "comptes de @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s no hauria d'aparèixer a un context de matemàtiques" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "ordre `%s' desconeguda" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "@ no esperat" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s no té sentit fora d'un entorn `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s hauria de estar just a sota de `@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "s'ignoraran @%s múltiples" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "l'ordre @%s no accepta arguments" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "a l'ordre @%s li falta un node o un argument manual extern" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "a @%s nom buit de referència creuada després de l'expansió `%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "a @%s títol buit de referència creuada després de l'expansió `%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "argument de nom de fitxer que falta a @image" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "primer argument que falta a @%s" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "digits que no són hex a l'argument de @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "menys de quatre dígits hex a l'argument per a @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "l'argument per a @U excedeix al máxim d'Unicode 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "arguments superflus per a node" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "s'esperava @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s hauria d'acceptar únicament una ordre amb @ com argument, no `%s'" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "argument restant a la línia @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "ordre d'entorn %s com argument per a @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "@%s buit" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "la fracció de columna no és un número: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "argument @sp ha de ser numèric, no `%s'" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "nom d'índex reservat %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "índex desconegut de font a @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "índex desconegut de destinació a @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s porta a una fusió de %s en sí mateix, s'ignorarà" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "índex desconegut `%s' a @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, fuzzy, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "s'està imprimint un índex `%s' fusionat en un altre `%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex abans del principi del document: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "l'argument de @%s ha de ser `top' o `bottom', no `%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Sols se suporta @%s 10 o 11, no `%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "l'argument de @%s ha de ser `separate' o `end', no `%s'" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "l'argument @%s ha de ser `on', `off' o `odd', no `%s'" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "l'argument @paragraphindent ha de ser numèric/`none'/`asis', no `%s'" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "l'argument @firstparagraphindent ha de ser `none' o `insert', no `%s'" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "l'argument @exampleindent ha de ser numèric/`asis', no `%s'" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "s'esperava @%s activat o desactivat, no `%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "l'argument de @kbdinputstyle ha de ser `code'/`example'/`distinct', no `%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "l'argument de @allowcodebreaks ha de ser `true' o `false', no `%s'" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "l'argument de @urefbreakstyle ha de ser `after'/`before'/`none', no `%s'" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "s'elevarà el nivell de la secció de @%s que és massa baix" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "no hi ha una ordre de nivell de capítol abans de @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "es baixarà el nivell de secció de @%s que apareix després d'un element " "inferior" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "no hi ha una ordre de secció associada amb @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s no buit" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "referència @%s a node no existent `%s'" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s el nom de node d'entrada `%s' és diferent de %s amb nom `%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "node sense referenciar `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" "el node `%s' és %s per a `%s' a la determinació de seccions però no al menú" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" "el node %s `%s' al menú `%s' i en el procediment de seccions `%s' difereixen" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "el node `%s' és %s per a `%s' al menú però no a les seccions" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s punter `%s' (per al node `%s') diferent de %s nom `%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s referència per a `%s' inexistent" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "al node `%s' li falta l'element de menú per a `%s' malgrat que és el seu " "destí Amunt" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "per a `%s', amunt al menú `%s' i amunt `%s' no concorden" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s a `%s', diferent de %s nom `%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "clau buida d'índex a @%s" @@ -3710,17 +3705,17 @@ "la transformació insert_nodes_for_sectioning_commands no ha retornat cap " "resultat. No hi ha cap secció?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: error en tancar %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: error en tancar els fitxers d'enllaços interns %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: no s'ha pogut obrir %s per a escriptura: %s\n" @@ -3763,6 +3758,9 @@ #~ msgid "@%s should only appear at beginning or end of document" #~ msgstr "" #~ "@%s hauria d'aparèixer únicament al principi o al final del document" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s no hauria d'estar associat amb @top" #~ msgid "No file given for node '%s'." #~ msgstr "No s'ha donat un fitxer per al node `%s'." diff --git a/po/cs.gmo b/po/cs.gmo index cbce717..9acd2e0 100644 Binary files a/po/cs.gmo and b/po/cs.gmo differ diff --git a/po/cs.po b/po/cs.po index a8fd853..02bdba2 100644 --- a/po/cs.po +++ b/po/cs.po @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-24 18:04+02:00\n" "Last-Translator: Petr Pisar \n" "Language-Team: Czech \n" @@ -401,42 +401,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "V uzlu „%2$s“ žádná položka nabídky „%1$s“ není." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Uzel „%s“ nelze nalézt." -#: info/info.c:437 +#: info/info.c:439 #, fuzzy, c-format msgid "No program name given" msgstr "Nezadán žádný název programu." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "neplatné Äíslo: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "Å¡patnÄ› zapsané pÅ™iÅ™azení do promÄ›nné: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: taková promÄ›nná neexistuje" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "hodnota %s není platná pro promÄ›nnou %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Více informací můžete získat pomocí pÅ™epínaÄe --help.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -451,12 +451,12 @@ "Toto je svobodné programové vybavení: máte možnost jej mÄ›nit a šířit.\n" "Není zde ŽÃDNà ZÃRUKA, jak jen zákon dovoluje.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "odpovídající položky rejstříku nebyly pro „%s“ nalezeny\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -467,7 +467,7 @@ "\n" "ÄŒte dokumentaci ve formátu info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -485,7 +485,7 @@ "do SOUBORU.\n" " -f, --file=MANUÃL otevÅ™e tento info manuál." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -499,16 +499,16 @@ " -n, --node=NÃZEV_UZLU urÄuje uzly v prvním otevÅ™eném info souboru.\n" " -o, --output=SOUBOR vybrané uzly vypíše do SOUBORU." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly režim pro hlasové syntetizátory." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -526,7 +526,7 @@ " -w, --where, --location vypíše fyzické umístÄ›ní info souboru.\n" " -x, --debug=ÄŒÃSLO nastaví úroveň ladÄ›ní (-1 pro vÅ¡e).\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -543,7 +543,7 @@ "Jakékoliv zbývající argumenty se považují za názvy položek v nabídce\n" "relativnÄ› k prvnÄ› navÅ¡tívenému uzlu." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -551,7 +551,7 @@ "\n" "PÅ™ehled klávesových zkratek je dostupný klávesou H." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -583,7 +583,7 @@ " info -f ./foo.info zobrazí soubor ./foo.info, adresář se " "neprohledává" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -595,75 +595,75 @@ "(Äesky).\n" "Domovská stránka texinfa je ." -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Uzel „(%s)%s“ nelze nalézt." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Nelze nalézt okno!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Bod se v oknÄ› tohoto uzlu nevyskytuje!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Poslední okno nelze smazat." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "V tomto uzlu není menu." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "V tomto nejsou poznámky pod Äarou." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "V tomto uzlu není křížový odkaz." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Pro tento uzel není „%s“ ukazatel." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Neznámý Info příkaz „%c“; zkuste „?“ pro nápovÄ›du." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Typ terminálu „%s“ není dostateÄnÄ› inteligentní pro provoz Infa." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Již jste na poslední stránce tohoto uzlu." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Již jste na první stránce tohoto uzlu." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Pouze jedno okno." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Výsledné okno by bylo příliÅ¡ malé." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Není volné místo pro okno nápovÄ›dy, prosím smažte nÄ›které okno." @@ -1460,191 +1460,191 @@ msgid "Using literal strings for searches" msgstr "Vyhledávání doslovným Å™etÄ›zcem." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Hledání pokraÄovalo od konce dokumentu." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Hledání pokraÄovalo od zaÄátku dokumentu." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Probíhá hledání podsouboru %s…" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Nebylo nalezeno." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Hledání regulárním výrazem" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Hledání" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " velikost rozhoduje" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " zpÄ›tné" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Hledaný Å™etÄ›zec je příliÅ¡ krátký" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Návrat zpÄ›t na poslední shodu %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Žádné další shody." -#: info/session.c:4577 +#: info/session.c:4574 #, fuzzy msgid "Search this node and subnodes for a string" msgstr "Prohledání tohoto uzlu a poduzlů na Å™etÄ›zec." #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Probíhá hledání podsouboru %s…" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "PÅ™esun na další shodu v podstromÄ› Infa" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Hledání není aktivní" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "PÅ™esun na pÅ™edchozí shodu v podstromÄ› Infa" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "PÅ™eÄtení Å™etÄ›zce a jeho vyhledání (záleží na velikosti písmen)" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "PÅ™eÄtení Å™etÄ›zce a jeho vyhledání" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "PÅ™eÄtení Å™etÄ›zce a jeho vyhledání (zpÄ›tné)" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Opakování posledního hledání tím samým smÄ›rem" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Není pÅ™edchozí hledaný Å™etÄ›zec" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Opakování posledního hledání opaÄným smÄ›rem" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Odstraní zobrazené výsledky hledání" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Vyhledávání zadávaného Å™etÄ›zce hned pÅ™i zadávání" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "ZpÄ›tné interaktivní hledání regulárním výrazem: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "ZpÄ›tné interaktivní hledání: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Interaktivní hledání regulárním výrazem: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Interaktivní hledání: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Bezvýsledné " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "ZruÅ¡ení aktuální operace" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "UkonÄení operace" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Zobrazí verzi spuÅ¡tÄ›ného Infa" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info verze %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "PÅ™ekreslení obrazovky" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "UkonÄení Infa" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "SpuÅ¡tÄ›ní příkazu navázaného na malý znak této klávesy" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Neznámý příkaz (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "„%s“ je neplatné" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "„%s“ je neplatné" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "PÅ™idání této Äíslice do aktuálního Äíselného argumentu" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "ZaÄátek (nebo dÄ›lení ÄtyÅ™mi) aktuálního Äíselného argumentu" @@ -2062,30 +2062,30 @@ msgstr "pro „%s“ nebyly nalezeny žádné položky" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "%s nebylo možno otevřít pro zápis: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rekurze je vždy dovolena" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumenty se standardnÄ› uzavírají do uvozovek" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "pÅ™esune příkaz @contents, chcete-li obsah za stránkou s nadpisem" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2093,50 +2093,50 @@ "pÅ™esune příkazy @shortcontents a @contents, chcete-li obsah za stránkou " "s nadpisem" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s není platný kód jazyka" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s není platný kód oblasti" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s není platná možnost dÄ›lení" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "%s nebylo možné pÅ™eÄíst: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "chyba pÅ™i zavírání @verbatiminclude souboru %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: nebylo možné nalézt %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "žádný uzel nemá být pÅ™ejmenován" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "uzly bez nového názvu na konci souboru" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "%s nebylo možné otevřít: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "v @%s nebylo možno ochránit znak křížku" @@ -2152,11 +2152,11 @@ msgstr "%s: výstup není kompatibilní s dÄ›lením" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "chyba pÅ™i zavírání %s: %s" @@ -2176,7 +2176,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image soubor „%s“ nenalezen, použije se „%s“" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "pro @U nebyl zadán žádný argument" @@ -2185,111 +2185,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image soubor „%s“ (pro HTML) nenalezen, použije se „%s“" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "syrový formát %s není pÅ™eveden" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "nebylo možné otevřít konfiguraÄní soubor s HTML odkazy %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "chybí typ" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "nerozpoznaný typ: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "chyba pÅ™i zavírání konfiguraÄního souboru s HTML odkazy %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "Å™etÄ›zec nebí uzavÅ™en v souboru CSS" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include konÄil v komentáři" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import nebyl dokonÄen v souboru CSS" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS soubor %s nenalezen" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "nebylo možné otevřít --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "chyba pÅ™i zavírání CSS souboru %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "pro „%s“ nenalezena žádná položka htmlxref.cnf" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "chyba pÅ™i zavírání rámcového souboru %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "chyba pÅ™i zavírání rámcového souboru s obsahem %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "deskriptor %s úrovnÄ› %s priority %s selhal" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "je tÅ™eba urÄit název pomocí příkazu title nebo @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "chyba pÅ™i zavírání souboru s uzly pÅ™esmÄ›rování %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "starý název pro „%s“ je uzel dokumentu" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "soubor pro pÅ™ejmenovaný uzel „%s“ je prázdný" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "cílový uzel (nový název pro „%s“ není v dokumentu: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "chyba pÅ™i zavírání souboru %s s pÅ™ejmenovanými uzly pÅ™esmÄ›rování: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "prázdný název uzlu" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "syntaxe pro vnÄ›jší uzel použitý pro „%s“" @@ -2327,7 +2327,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Položka rejstříku v @%s s : vytváří neplatné Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "položka pro rejstřík „%s“ je mimo vÅ¡echny uzly" @@ -2391,286 +2391,281 @@ msgid "menu entry name should not contain `:'" msgstr "název položky nabídky by nemÄ›l obsahovat „:“" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "prázdný název uzly po expanzi „%s“" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s „%s“ již bylo definováno" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "zde je pÅ™edchozí definice jako @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "Å¡patný argument v @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "násobný @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "chybný nebo prázdný formální argument @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "chybná syntaxe v argumentu @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s požaduje jméno" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "chybný název pro @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s se vyskytuje pÅ™es uzavírací závorkou @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s se vyskytuje pÅ™ed uzavírací závorkou @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s chybÄ›jící uzavírací závorka" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s chybÄ›jící uzavírací oddÄ›lovací posloupnost: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx by nemÄ›lo zaÄínat příkazem @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx musí následovat příkaz @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s má text ale nemá @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "„@end“ vyžadoval „%s“, ale vidÄ›l „%s“" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s vidÄ›n pÅ™ed @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "chybí odpovídající „%cend %s“" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "Å¡patnÄ› umístÄ›ný znak %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "nepárový „%c%s“" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makro „%s“ volané s příliÅ¡ mnoha argumenty" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s chybÄ›jící uzavírací závorka" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makro „%s“ deklarované bez argumentu volané s argumentem" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ pÅ™i expanzi @%s následováno „%s“ místo názvu parametru nebo \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "chybí název pro @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "chybí kategorie pro @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "neoÄekávaný argument na řádku @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "prázdná multitabulka" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "pÅ™ebývající argument u @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "Å¡patný argument u @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s vyžaduje argument : formátovaÄ pro %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "příkaz @%s nepÅ™ijímající argument v závorce by nemÄ›l být na řádku @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "zdůrazňovací příkaz „@%s“ není dovolen jako argument @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s postrádá argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "neznámý @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "pÅ™ebývající argument u @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "Å¡patný argument u @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: nebylo možné otevřít %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "kódování „%s“ není kanonické kódování texinfa" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nerozpoznaný název kódování „%s“" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s po prvním elementu" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s má smysl jen na řádku @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s by nemÄ›l být spojen s @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node pÅ™edchází @%s, ale Äásti nesmí být spojeny s uzly" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "prázdný název položky nabídky v „%s“" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "prázdný název uzlu v položce nabídky" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s by se nemÄ›l objevit v @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s by se mÄ›l objevit pouze na zaÄátku řádku" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro „%s“ již bylo definováno" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "zde je pÅ™edchozí definice „%s“" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "pÅ™edefinovává se příkaz jazyka Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s bez spojeného znaku" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" "@%s definováno s nula nebo více jak jedním argumentem by se mÄ›lo volat s {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2679,425 +2674,425 @@ "volání makra je příliÅ¡ zanoÅ™ené (lze pÅ™ebít nastavením MAX_NESTED_MACROS, " "souÄasná hodnota %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "rekurzivní volání makra %s není dovoleno; je-li tÅ™eba, použijte @rmacro" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "zdůrazňovací příkaz „@%s“ nesmí být následován bílým místem" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "použijte závorky k zadání příkazu jako argumentu @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s vyžaduje „i“ nebo „j“ jako argument, ne „%s“" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "zdůrazňovací příkaz „@%s“ nesmí být následován novým řádkem" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s oÄekávalo závorky" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "nedefinovaný příznak: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "chybná skladba ve @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s je zastaralé." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s je zastaralé; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s by se mÄ›lo pouze objevit na zaÄátku řádku" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s není dovoleno uvnitÅ™ bloku „@%s“" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s by se mÄ›l objevit pouze záhlaví nebo zápatí" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s není myslitelné uvnitÅ™ bloku „@%s“" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s v prázdné multitabulce" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab pÅ™ed @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "příliÅ¡ mnoho sloupců v multitabulkové položce (max. %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "příkaz @tab ignorován, je mimo multitabulku" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s mimo tabulku nebo seznam" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "musí následovat po „@%s“, aby Å¡lo použít „@%s“" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s nemá smysl mimo prostÅ™edí „@titlepage“ a „@quotation“" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory po prvním uzlu" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "oblast %s uvnitÅ™ oblasti %s není dovolena" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry po prvním uzlu" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu v neplatném kontextu" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s spatÅ™eno pÅ™ed prvním @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "protože váš uzel @top by mÄ›l být uzavÅ™en v @ifnottex spíše než v @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s by se mÄ›lo objevit jen v matematickém kontextu" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "neznámý příkaz „%s“" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "neoÄekávaný @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s nemá smysl mimo prostÅ™edí „@float“" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s by mÄ›lo být právÄ› pod „@float" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "ignoruje se násobný @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "příkaz @%s nepÅ™ijímá argumenty" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "příkaz @%s postrádá uzel nebo argument externího manuálu" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "v @%s prázdný název křížového odkazu po expanzi „%s“" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "v @%s prázdný nadpis křížkového odkazu po expanzi „%s“" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "příkaz @image postrádá jméno souboru" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s postrádá první argument" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "argument u @U nemá žádné Å¡estnáctkové Äíslice: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "argument u @U má ménÄ› než ÄtyÅ™i Å¡estnáctkové Äíslice: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "argument u @U pÅ™esahuje maximám Unicodu 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "nadbyteÄné argumenty uzlu" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "oÄekáváno @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s by pouze mÄ›lo pÅ™ijímat příkaz @ jako argument, nikoliv „%s“" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "zbývající argumenty na řádku @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "příkaz prostÅ™edí %s jako argument @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "prázdné @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "podíl sloupce není Äíslo: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp argument musí být Äíslo, ne „%s“" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "vyhrazený název rejstříku %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "neznámý rejstřík zdrojů v @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "neznámý rejstřík cílů v @%s: %s " -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s vede ke spojení %s do sebe, ignoruje se" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "neznámý rejstřík „%s“ v @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "vypisuje se rejstřík „%s“ spojený do jiného „%s“" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex pÅ™ed zaÄátkem dokumentu: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s argument musí být „top“ nebo „bottom“, ne „%s“" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Je podporováno pouze @%s 10 nebo 11, ne %s“" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s argument musí být „separate“ nebo „end“, ne „%s“" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s argument musí být „on“, „off“ nebo „odd“, ne „%s“" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "argument @paragraphindent musí být Äíslo, „none“ nebo „asis“, ne „%s“" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "argument @firstparagraphindent musí být „none“ nebo „insert“, ne „%s“" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "argument @exampleindent musí být Äíslo nebo „asis“, ne „%s“" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "oÄekáváno @%s on nebo off, ne „%s“" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "argument @kbdinputstyle musí být „code“, „example“ nebo „distinct“, ne „%s“" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "argument @allowcodebreaks musí být „true“ nebo „false“, ne „%s“" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "argument @urefbreakstyle musí být „after“, „before“ nebo „none“, ne „%s“" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "zvyÅ¡uje se úroveň oddílu @%s, která je příliÅ¡ nízká" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "pÅ™ed @%s není příkaz udávající úroveň kapitoly" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "snižuje se úroveň oddílu @%s, který se vyskytuje po nižším elementu" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "s @%s se nepojí žádný příkaz oddílu" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s není prázdný" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s odkazuje na neexistující uzel „%s“" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "název uzlu položky @%s „%s“ se liší od %s názvu „%s“" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "na uzel „%s“ nesměřuje žádný odkaz" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "uzel „%s“ je %s pro „%s“ v oddílech, ale ne v nabídce" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "uzel %s „%s“ v nabídce „%s“ se liší od toho v oddílech „%s“" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "uzel „%s“ je %s pro „%s“ v nabídce ale ne v oddílech" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s ukazatel „%s“ (pro uzel „%s“) se liší od %s názvu „%s“" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s se odkazuje na neexistující „%s“" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "uzel „%s“ postrádá položku nabídky pro „%s“ navzdory tomu, že je jeho " "nadÅ™azeným uzlem" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "u „%s“ nahoru v menu „%s“ a nahoru „%s“ se neshodují" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s do „%s“ se liší od %s názvu „%s“" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "prázdný klÃ­Ä rejstříku v @%s" @@ -3651,17 +3646,17 @@ "Transformace insert_nodes_for_sectioning_commands nevrátila žádný výsledek. " "Nechybí oddíl?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: chyba pÅ™i zavírání %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: chyba pÅ™i zavírání souboru %s s vnitÅ™ními odkazy: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: %s nebylo možné otevřít pro zápis: %s\n" @@ -3678,6 +3673,9 @@ #~ " --restore=SOUBOR naÄte úvodní stisky kláves ze SOUBORU.\n" #~ " -O, --show-options, --usage pÅ™ejde na uzel s pÅ™epínaÄi pro příkazový " #~ "řádek." + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s by nemÄ›l být spojen s @top" #~ msgid "%s: option '--%s' doesn't allow an argument\n" #~ msgstr "%s: pÅ™epínaÄ â€ž--%s“ nedovoluje argument\n" diff --git a/po/da.gmo b/po/da.gmo index 1e5a16e..6ee6569 100644 Binary files a/po/da.gmo and b/po/da.gmo differ diff --git a/po/da.po b/po/da.po index 6ccac21..90851ff 100644 --- a/po/da.po +++ b/po/da.po @@ -16,10 +16,10 @@ # msgid "" msgstr "" -"Project-Id-Version: texinfo 6.3.91\n" +"Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" -"PO-Revision-Date: 2017-06-05 10:09+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" +"PO-Revision-Date: 2017-07-09 10:09+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" @@ -401,42 +401,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Intet menupunkt »%s« i emne »%s«" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Kan ikke finde emnet »%s«" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Intet programnavn angivet" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "ugyldigt nummer: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "forkert udformet variabeludtryk: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: ingen sÃ¥dan variabel" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "værdien %s er ikke gyldig for variabel %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Prøv --help for yderligere information.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -453,12 +453,12 @@ "Der er ingen GARANTI, inden for lovens udstrækning.\n" "\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "ingen indeksposter fundet for «%s»\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -469,8 +469,7 @@ "\n" "Læs dokumentationen i Info-formatet.\n" -#: info/info.c:1095 -#, fuzzy +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -478,56 +477,47 @@ " -d, --directory=DIR add DIR to INFOPATH\n" " -f, --file=MANUAL specify Info manual to visit" msgstr "" -"Tilvalg:\n" -" -a, --all brug alle matchende manualer.\n" +"Ofte anvendte tilvalg:\n" +" -a, --all brug alle matchende manualer\n" " -k, --apropos=STRENG slÃ¥ STRENG op i alle indeks for alle " -"manualer.\n" -" -d, --directory=MAPPE tilføj MAPPE til INFOSTI.\n" -" --dribble=FIL husk brugertast i FILNAVN.\n" -" -f, --file=MANUAL specificer Info-manual der skal besøges." - -#: info/info.c:1102 -#, fuzzy +"manualer\n" +" -d, --directory=MAPPE tilføj MAPPE til INFOSTI\n" +" -f, --file=MANUAL specificer Info-manual der skal besøges" + +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" " -n, --node=NODENAME specify nodes in first visited Info file\n" " -o, --output=FILE output selected nodes to FILE" msgstr "" -" -h, --help vis denne hjælpetekst og afslut.\n" +" -h, --help vis denne hjælpetekst og afslut\n" " --index-search=STRENG gÃ¥ til emne som peget pÃ¥ af indekspost-\n" -" STRENG.\n" -" -n, --node=EMNENAVN specificer emner i først besøgte Info-fil.\n" -" -o, --output=FIL dan valgte emner i FIL." - -#: info/info.c:1108 +" STRENG\n" +" -n, --node=EMNENAVN specificer emner i først besøgte Info-fil\n" +" -o, --output=FIL dan valgte emner i FIL" + +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" -msgstr "" - -#: info/info.c:1112 -#, fuzzy +msgstr " -O, --show-options, --usage gÃ¥ til emnets tilvalg pÃ¥ kommandolinjen" + +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" -msgstr " -b, --speech-friendly vær talesyntese-venlig." - -#: info/info.c:1116 -#, fuzzy +msgstr " -b, --speech-friendly vær talesyntese-venlig" + +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" " --version display version information and exit\n" " -w, --where, --location print physical location of Info file" msgstr "" -" --strict-node-location (for fejlsøgning) brug Info-filpegere som de " -"er.\n" -" --subnodes rekursive uddatamenuelementer.\n" -" -v, --variable VAR=VÆRDI tildel VÆRDI til Info-variablen VAR.\n" -" --vi-keys brug vi-lignende og less-lignende " -"genvejstaster.\n" -" --version vis versionsinformation og afslut.\n" -" -w, --where, --location udskriv fysisk placering for Info-fil.\n" -" -x, --debug=NUMMER angiv fejlsøgningsniveau (-1 for alle).\n" - -#: info/info.c:1122 +" --subnodes rekursive uddatamenuelementer\n" +" -v, --variable VAR=VÆRDI tildel VÆRDI til Info-variablen VAR\n" +" --version vis versionsinformation og afslut\n" +" -w, --where, --location udskriv fysisk placering for Info-fil" + +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -545,7 +535,7 @@ "resultatet. Alle resterende parametre opfattes som navne for menu-elementer\n" "for det oprindeligt besøgte emne." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -553,8 +543,7 @@ "\n" "Tast H inde fra Info for et overblik over genvejstaster." -#: info/info.c:1132 -#, fuzzy +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -573,7 +562,6 @@ "\n" "Eksempler:\n" " info vis mappemenu pÃ¥ øverste niveau\n" -" info info vis den generelle manual for Info-læsere\n" " info info-stnd vis manualen specifikt for dette Info-program\n" " info emacs start ved emacs-emne fra mappe pÃ¥ øverste " "niveau\n" @@ -581,10 +569,11 @@ " info emacs -n filer start ved filer-emne inden i emacs-manualen\n" " info '(emacs)filer' alternativ mÃ¥de at starte ved filer-emne\n" " info --show-options emacs start ved emne med emacs' kommandolinjetilvalg\n" -" info --subnodes -o ud.txt emacs skriv hele manualen til ud.txt\n" +" info --subnodes -o ud.txt emacs\n" +" skriv hele manualen til ud.txt\n" " info -f ./foo.info vis filen ./foo.info, uden at søge i mapper" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -595,67 +584,67 @@ "oversættelsesfejl til dansk@dansk-gruppen.dk.\n" "Texinfos hjemmeside: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Kan ikke finde emne »(%s)%s«" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Kan ikke finde et vindue!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Punktet optræder ikke i dette vindues emne!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Kan ikke slette det sidste vindue" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Ingen menu i dette emne" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Ingen fodnoter i dette emne" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Ingen krydsreferencer i dette emne" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Ingen »%s«-peger mod dette emne" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Ukendt Info-kommando »%c«; prøv »?« for hjælp" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminaltypen »%s« er ikke smart nok til at køre Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Du er i forvejen ved emnets sidste side" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Du er i forvejen ved emnets første side" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Kun ét vindue" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Det resulterende vindue ville være for lille" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Ikke nok plads til et hjælpevindue. Fjern venligst et vindue" @@ -1438,189 +1427,189 @@ msgid "Using literal strings for searches" msgstr "Brug af bogstavelige strenge for søgninger" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Søgning fortsat fra slutningen af dokumentet" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Søgning fortsat fra begyndelsen af dokumentet" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Søger i underfilen %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Søgning mislykkedes" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Regulært udtrykssøgning" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Søg" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " versalfølsomhed" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " baglæns" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Søgestreng er for kort" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "GÃ¥r tilbage til sidste match fra %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Ikke flere match" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Søg i dette emne og underemner efter en streng" # Uklart om det skal være Søg, Søger eller Søgning. #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Søgning under %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "GÃ¥ til næste match i informationsundertræet" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Ingen aktiv søgning" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "GÃ¥ til forrige match i informationsundertræet" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Indlæs en tekst og søg efter den uden versalfølsomhed" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Indlæs en tekst og søg for den" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Indlæs en tekst og søg baglæns efter den" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Gentag sidste søgning i samme retning" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Ingen tidligere søgestreng" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Gentag sidste søgning i modsat retning" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Ryd viste søgeresultater" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Søg interaktivt efter en tekst, mens du skriver den" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Regulært udtryk I-søgning baglæns: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-søgning baglæns: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Regulært udtryk I-søgning" -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-søgning: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Fejler " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Afbryd nuværende handling" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Afslut" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Vis version for Info der køres" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info-version %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Gentegn skærmen" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Afslut Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Kør kommandoen, der er bundet til denne tasts smÃ¥bogstavsvariant" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Ukendt kommando (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "»%s« er ikke gyldig" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "»%s« er ugyldig" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Tilføj dette tegn til det nuværende numeriske parameter" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Start (eller gang med 4) det nuværende numeriske parameter" @@ -2026,30 +2015,30 @@ msgstr "ingen poster fundet for »%s«; intet slettet" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "kunne ikke Ã¥bne %s for skrivning: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rekursion er altid tilladt" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "parametre placeres som standard i citationstegn" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "flyt din @contents-kommando hvis du ønsker indholdet efter titelsiden" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2057,50 +2046,50 @@ "flyt dine @shortcontents- og @contents-kommandoer hvis du ønsker indholdet " "efter titelsiden" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s er ikke en gyldig sprogkode" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s er ikke en gyldig regionskode" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s er ikke en gyldig opdelingsmulighed" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "kunne ikke læse %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "fejl under lukning af @verbatiminclude-filen %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: kunne ikke finde: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "intet navn at omdøbe" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "emner uden et navn i slutningen af filen" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "kunne ikke Ã¥bne %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "kunne ikke beskytte hash-tegn i @%s" @@ -2117,11 +2106,11 @@ msgstr "%s: uddata er ikke kompatible med split" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "der opstod en fejl under lukning af %s: %s" @@ -2141,7 +2130,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image-filen »%s« blev ikke fundet, anvender »%s«" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "Ingen parameter angivet for @U" @@ -2150,114 +2139,114 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image-filen »%s« (for HTML) blev ikke fundet, anvender »%s«" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "rÃ¥ format %s er ikke konverteret" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "kunne ikke Ã¥bne html-referencekonfigurationsfilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "manglende type" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "typen blev ikke genkendt: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "" "der opstod en fejl under lukning af html-referencekonfigurationsfilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "streng ikke lukket i css-fil" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include afsluttet i kommentar" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import er ikke færdig i css-fil" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS-filen %s blev ikke fundet" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "kunne ikke Ã¥bne --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "der opstod en fejl under lukning af CSS-filen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "ingen htmlxref.cnf-poster blev fundet for »%s«" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "der opstod en fejl under lukning af frame-filen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "" "der opstod en fejl under lukning af indholdsfortegnelsens frame-fil %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "hÃ¥ndtering %s for trin %s prioritet %s mislykkedes" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "skal angive en titel med en titelkommando eller @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "der opstod en fejl under lukning af videresendelsesemnefilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "gammelt navn for »%s« er et emne for dokumentet" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "fil tom for omdøbt emne »%s«" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "mÃ¥lemne (nyt navn for »%s«) er ikke i dokument: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "der opstod en fejl under lukning af omdøbt emnevideresendelsesfil %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "tomt emnenavn" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "syntaks for et eksternt emne anvendt for »%s«" @@ -2297,7 +2286,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Indekspost i @%s med : fremstiller ugyldig Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "post for indeks »%s« udenfor et emne" @@ -2362,287 +2351,282 @@ msgid "menu entry name should not contain `:'" msgstr "menupostens navn mÃ¥ ikke indeholde »:«" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "tomt emnenavn efter udfoldning »%s«" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s »%s« er allerede defineret" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "her er den tidligere definition som @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "tom parameter i @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "flere @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "ugyldig eller tom formel @%s-parameter: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "ugyldig syntaks for @%s-parameter: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s kræver et navn" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "ugyldigt navn for @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s set før @%s-afsluttende tuborgklamme" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s set før @%s-afsluttende tuborgklamme" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s mangler afsluttende tuborgklamme" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s mangler afsluttende afgrænsningssekvens: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx mÃ¥ ikke begynde @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx skal følge @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s har tekst men intet @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "»@end« forventede »%s«, men fandt »%s«" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s set før @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "ingen matchende »%cend %s«" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "fejlplaceret %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "uparret »%c%s«" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makro »%s« kaldt med for mange parametre" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s mangler afsluttende tuborgklamme" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makro »%s« erklæret uden parameter kaldt med en parameter" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ i @%s-udfoldning fulgt af »%s« i stedet for parameternavn eller \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "mangler navn for @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "mangler kategori for @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "uventet parameter pÃ¥ @%s-linje: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "tom multitable" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "overflødig parameter til @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "ugyldig parameter til @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s kræver en parameter: formateringsprogrammet for %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "kommandoen @%s der ikke accepterer parametre i tuborgklamme bør ikke være pÃ¥ " "@%s linje" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "accent-kommandoen »@%s« er ikke tilladt som parameter for @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s mangler parameter" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "ukendt @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "overflødig parameter for @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "ugyldig parameter for @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: kunne ikke Ã¥bne %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "kodningen »%s« er ikke en kanonisk texinfo-kodning" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "ukendt kodningsnavn »%s«" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s efter det første element" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s er kun meningsfuldt pÃ¥ en @multitable-linje" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s bør ikke associeres med @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node gÃ¥r forud for @%s, men dele er mÃ¥ske ikke tilknyttet emner" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "tomt menupunktnavn i »%s«" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "tomt emnenavn i menupunkt" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s bør ikke fremgÃ¥ i @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s bør kun fremgÃ¥ i begyndelsen af en linje" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makroen »%s« er allerede defineret" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "her er den tidligere definition af »%s«" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "ændrer definition pÃ¥ Texinfo-sprogkommando: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s uden associeret tegn" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "@%s defineret med nul eller mere end en parameter skal startes med {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2651,423 +2635,423 @@ "makrokald indlejret for dybt (indstil MAX_NESTED_MACROS for at tilsidesætte; " "nuværende værdi %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "rekursivt kald af makro %s er ikke tilladt; brug @rmacro hvis krævet" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "accent-kommandoen »@%s« mÃ¥ ikke efterfølges af mellemrum" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "benyt tuborgklammer til at angive en kommando som parameter til @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s kræver »i« eller »j« som parameter, ikke »%s«" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "accent-kommandoen »@%s« skal efterfølges af en ny linje" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s forventede tuborgklammer" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "flag er ikke defineret: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "ugyldig syntaks for @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s er forældet." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s er forældet; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s bør kun fremgÃ¥ ved en linjes begyndelse" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s er ikke tilladt i en »@%s«-blok" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s bør ikke fremgÃ¥ i teksthoved eller tekstfod" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s giver ingen mening i en »@%s«-blok" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s i tom multitable" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab før @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "for mange kolonner i »multitable«-element (maks %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignorerer @tab udenfor »multitable«" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s uden for tabel eller liste" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "skal være efter »@%s« for at bruge »@%s«" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s giver ikke mening uden for miljøerne »@titlepage« og »@quotation«" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory efter første emne" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "regionen %s inden i region %s er ikke tilladt" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry efter første emne" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu i ugyldig kontekst" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s fundet før første @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "mÃ¥ske skulle dit @top emne indsættes i @ifnottex i stedet for @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s bør ikke fremgÃ¥ i matematisk kontekst" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "ukendt kommando »%s«" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "uventet @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s giver ingen mening uden for »@float«-miljøet" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s skal være lige under »@float«" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "ignorerer flere @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "kommandoen @%s tillader ikke parametre" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "kommandoen @%s mangler et emne eller en ekstern manuel parameter" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "i @%s tomt krydsreferencenavn efter udfoldning »%s«" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "i @%s tom krydsreferencetitel efter udfoldning »%s«" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image mangler filnavnparameter" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s mangler første parameter" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "ikke-hex cifre i parameter for @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "færre end fire hex-cifre i parameter for @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "parameter for @U overgÃ¥r Unicodemaksimum 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "overflødige parametre for emne" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "forventede @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s bør kun acceptere en @-kommando som parameter, ikke »%s«" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "tilbageværende parameter pÃ¥ @%s linje: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "miljøkommandoen %s som parameter til @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "tom @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "kolonnefraktion er ikke et tal: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp-parameter skal være numerisk, ikke »%s«" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "reserveret indeksnavn %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "ukendt kildeindeks i @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "ukendt destinatinsindeks i @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s fører til en sammenføjning af %s i sig selv; ignorerer" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "ukendt indeks »%s« i @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "udskriver et indeks »%s« flettet i et andet, »%s«" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex før dokumentbegyndelse: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s-parameter skal være »top« eller »bottom«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Kun @%s 10 eller 11 er understøttet, ikke »%s«" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s-parameter skal være »separate« eller »end«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s-parameter skal være »on«, »off« eller »odd«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "@paragraphindent-parameter skal være numerisk/»none«/»asis«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "@firstparagraphindent-parameter skal være »none« eller »insert«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "@exampleindent-parameter skal være numeric/»asis«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "forventede @%s aktiveret eller deaktiveret, ikke »%s«" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "@kbdinputstyle-parameter skal være »code«/»example«/»distinct«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "@allowcodebreaks-parameter skal være »true« eller »false«, ikke »%s«" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "@urefbreakstyle-parameter skal være »after«/»before«/»none«, ikke »%s«" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "forøger afsnitniveauet for @%s, der er for lavt" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "ingen afsnitsniveaukommando før @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "formindsker afsnitniveauet for @%s, der fremgÃ¥r efter et lavere element" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "ingen afsnitsopdeling associeret med @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s er ikke tom" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s-reference til ikkeeksisterende emne »%s«" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s-postemnenavn »%s« er forskellig fra %s-navn »%s«" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "ikkerefereret emne »%s«" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "emne »%s« er %s for »%s« i afsnitsopdeling men ikke i menu" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "emne %s »%s« i menu »%s« og i afsnitsopdeling »%s« er forskellige" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "emne »%s« er %s for »%s« i menu men ikke i afsnitsopdeling" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s-peger »%s« (for emne »%s«) er forskellig fra %s-navn »%s«" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s-reference til ikkeeksisterende »%s«" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "emnet »%s« mangler menupunkt for »%s« pÃ¥ trods af at det er dens »Op«-mÃ¥l" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "for »%s«, op i menu »%s« og op »%s« matcher ikke" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s til »%s«, forskellig fra %s-navn »%s«" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "tomt indeksnøgle i @%s" @@ -3614,20 +3598,23 @@ "insert_nodes_for_sectioning_commands-transformation returnerer intet " "resultat. Manglende afsnit?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: der opstod en fejl under lukning af %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: der opstod en fejl under lukning af intern henvisningsfil %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: kunne ikke Ã¥bne %s for skrivning: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s bør ikke associeres med @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/de.gmo b/po/de.gmo index 52ba118..3288526 100644 Binary files a/po/de.gmo and b/po/de.gmo differ diff --git a/po/de.po b/po/de.po index a36d5bb..eb0683f 100644 --- a/po/de.po +++ b/po/de.po @@ -35,7 +35,7 @@ msgstr "" "Project-Id-Version: texinfo 5.9.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-03-02 13:41+0100\n" "Last-Translator: Mario Blättermann \n" "Language-Team: German \n" @@ -416,42 +416,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Kein Menüeintrag „%s“ im Knoten „%s“." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Knoten „%s“ wurde nicht gefunden." -#: info/info.c:437 +#: info/info.c:439 #, fuzzy, c-format msgid "No program name given" msgstr "Es wurde kein Programmname angegeben." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "ungültige Zahl: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "fehlgeformte Variablenzuweisung: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: unbekannte Variable" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "Wert %s ist nicht gültig für Variable %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "„--help“ gibt weitere Informationen.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -466,12 +466,12 @@ "Dies ist freie Software: Sie können sie ändern und weiter verteilen.\n" "Es gibt KEINERLEI Garantie, soweit es das Gesetz erlaubt.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "Keine Indexeinträge für „%s“ gefunden\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -482,7 +482,7 @@ "\n" "Zum Lesen von Dokumentation, die im Info-Format vorliegt.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -498,7 +498,7 @@ " --dribble=DATEI Tasteneingaben des Benutzers in DATEI merken\n" " -f, --file=DATEI zu öffnende Info-DATEI angeben" -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -513,16 +513,16 @@ " angeben\n" " -o, --output=DATEI ausgewählte Knoten nach DATEI ausgeben" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly nett zu Sprachsynthesizern sein" -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -539,7 +539,7 @@ " -w, --where, --location physischen Ort des Info-Datei anzeigen\n" " -x, --debug=ZAHL Debugging-Level setzen (-1 für alles)\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -557,7 +557,7 @@ "Verbleibende Parameter werden als Namen von Menüeinträgen des ersten zu\n" "besuchenden Knotens angesehen." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -565,7 +565,7 @@ "\n" "Für eine Zusammenfassung möglicher Tastenkombinationen in Info „h“ tippen." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -603,7 +603,7 @@ "schreiben\n" " info -f ./foo.info datei ./foo.info anzeigen" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -616,75 +616,75 @@ "Fehler in der Ãœbersetzung melden Sie bitte an:\n" "" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Knoten „(%s)%s“ kann nicht gefunden werden." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Kein Fenster gefunden!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Momentane Position erscheint nicht in dem Knoten dieses Fensters!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Das letzte Fenster kann nicht gelöscht werden." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Kein Menü in diesem Knoten." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Keine Fußnoten in diesem Knoten." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Keine Querverweise in diesem Knoten." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Kein „%s“-Verweis für diesen Knoten." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Unbekannter Info-Befehl „%c“. Geben Sie „?“ ein, um Hilfe zu bekommen." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Der Terminaltyp „%s“ ist nicht fähig genug, um Info auszuführen." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Sie sind bereits auf der letzten Seite dieses Knotens." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Sie sind bereits auf der ersten Seite dieses Knotens." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Nur ein Fenster." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Das entstehende Fenster wäre zu klein." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Nicht genügend Platz für ein Hilfefenster. Bitte ein Fenster löschen." @@ -1493,193 +1493,193 @@ msgid "Using literal strings for searches" msgstr "Für Suchen werden wortwörtliche Zeichenketten benutzt" -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Suche vom Ende des Dokuments fortgesetzt." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Suche vom Anfang des Dokuments fortgesetzt." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Unterdatei „%s“ wird durchsucht …" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Suche fehlgeschlagen." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Suche mit regulärem Ausdruck" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Suche" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " gemäß Groß-/Kleinschreibung" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " in Rückwärtsrichtung" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Suchzeichenkette zu kurz" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Keine Ãœbereinstimmung" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Unterdatei „%s“ wird durchsucht …" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" "Eine Zeichenkette einlesen und danach gemäß Groß-/Kleinschreibung suchen" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Eine Zeichenkette einlesen und danach suchen" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Eine Zeichenkette einlesen und danach in Rückwärtsrichtung suchen" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Letzte Suche in der gleichen Richtung wiederholen" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Keine vorherige Such-Zeichenkette." -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Letzte Suche in der entgegengesetzten Richtung wiederholen" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Die angezeigten Suchtreffer nicht mehr anzeigen" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Interaktiv eine Zeichenkette während der Eingabe suchen" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Interaktive Suche mit regulärem Ausdruck in Rückwärtsrichtung: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Interaktive Suche in Rückwärtsrichtung: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Interaktive Suche mit regulärem Ausdruck: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Interaktive Suche: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Fehlschlagende " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Momentane Operation abbrechen" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Beenden" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Programmversion anzeigen" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info Version %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Anzeige erneut darstellen" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Info beenden" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" "Befehl ausführen, der an die kleingeschriebene Variante dieser\n" " Taste gebunden ist" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Unbekannter Befehl (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "„%s“ ist ungültig" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "„%s“ ist ungültig" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Diese Zahl dem aktuellen numerischen Argument hinzufügen" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Das aktuelle numerische Argument beginnen (oder mit 4 multiplizieren)" @@ -2102,79 +2102,79 @@ msgstr "keine Einträge für „%s“ gefunden; nichts entfernt" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "%s konnte nicht zum Schreiben geöffnet werden: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "Rekursion ist immer erlaubt" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "Argumente werden standardmäßig in Anführungszeichen eingeschlossen" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s ist kein gültiges Sprachkürzel" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s ist kein gültiges Regionskürzel" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s is keine gültige Aufspaltmöglichkeit" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "%s konnte nicht gelesen werden: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "Fehler beim Schließen von @verbatiminclude-Datei %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: %s konnte nicht gefunden werden" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "kein Knoten zum Umbenennen" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "Knoten ohne einen neuen Namen am Ende der Datei" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "%s konnte nicht geöffnet werden: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "Hash-Zeichen in @%s konnte nicht geschützt werden" @@ -2190,11 +2190,11 @@ msgstr "%s: die Ausgabe ist ungeeignet für Split" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "Fehler beim Schließen von %s: %s" @@ -2214,7 +2214,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image-Datei „%s“ nicht gefunden, „%s“ wird benutzt" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "es wurde kein Argument für @U angegeben" @@ -2223,112 +2223,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image-Datei „%s“ (für HTML) nicht gefunden, „%s“ wird benutzt" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "rohes Format %s wird nicht konvertiert" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "HTML-Refs-Konfigurationsdatei %s konnte nicht gefunden werden: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "fehlender Typ" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "nicht erkannter Typ: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "Fehler beim Schließen derHTML-Refs-Konfigurationsdatei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "Zeichenkette in CSS-Datei nicht geschlossen" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include endete inmitten eines Kommentars" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import in CSS-Datei nicht abgeschlossen" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS-Datei %s nicht gefunden" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "--include-file %s konnte nicht geöffnet werden: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "Fehler beim Schließen der CSS-Datei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "kein Eintrag htmlxref.cnf für „%s“ gefunden" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "Fehler beim Schließen der Rahmendatei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "Fehler beim Schließen der Inhaltsverzeichnis-Rahmendatei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "Verarbeitung %s der Stufe %s %s-Pritorität ist fehlgeschlagen" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "Titel muss mit dem Titelbefehl oder @top angegeben werden" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "Fehler beim Schließen der umbenannten Knotendatei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "alter Name für „%s“ ist ein Knoten dieses Dokuments." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "Datei leer für umbenannten Knoten „%s“" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "Zielknoten (neuer Name für „%s“) ist nicht im Dokument: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "Fehler beim Schließen der umbenannten Knoten-Weiterleitungsdatei %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "leerer Knotenname" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "Syntax für einen externen Knoten für „%s“ benutzt" @@ -2366,7 +2366,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Der Indexeintrag in @%s mit „:“ erzeugt ungültigen Info-Code: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "Eintrag für Index „%s“ außerhalb jeglichen Knotens" @@ -2432,285 +2432,280 @@ msgid "menu entry name should not contain `:'" msgstr "Menüeintrag-Name sollte keinen „:“ enthalten" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "Leerer Knotenname nach der Erweiterung „%s“" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s „%s“ früher definiert" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "hier ist die frühere Definition als @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "leeres Argument in @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "mehrfache @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "Fehlerhaftes oder leeres formales Argument @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "Fehlerhafte Syntax für Argument @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s erfordert einen Namen" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "fehlerhafter Name für @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s gesehen vor @%s schließender Klammer" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s gesehen vor schließender Klammer von @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s fehlende schließende Klammer" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s fehlende schließende Trennsequenz: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx sollte nicht @%s beginnen" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx muss nach @item kommen" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s hat Text aber kein @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "„@end“ erwartete „%s“, jedoch „%s“ erhalten" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s gesehen vor @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "kein übereinstimmendes „%cend %s“" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "fehlplatziertes %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "nicht übereinstimmendes „%c%s“" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "Makro „%s“ mit zu vielen Argumenten aufgerufen" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "@%s fehlende schließende Klammer" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Makro „%s“ deklariert ohne Argument, aber mit Argument aufgerufen" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "Dem \\ in der @%s-Erweiterung folgt „%s“ anstelle eines Parameternamens oder " "\\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "fehlender Name für @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "fehlende Kategorie für @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "unerwartetes Argument auf @%s-Zeile: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "leere Mehrfachtabelle" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "überflüssiges Argument für @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "fehlerhaftes Argument für @%s" # %citem ist ein Texinfo-Befehl -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s benötigt ein Argument: den Formatierer für %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "Befehl @%s, der kein Argument in Klammern akzeptiert, sollte nicht in einer @" "%s-Zeile sein" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "Akzent-Befehl „@%s“ ist als @%s-Argument nicht erlaubt" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s fehlendes Argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "unbekanntes @end %s“" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "überflüssiges Argument für @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "fehlerhaftes Argument für @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: %s konnte nicht geöffnet werden: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "Kodierung „%s“ ist keine kanonische texinfo-Zeichenkodierung" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nicht erkannter Kodierungsname „%s“" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s nach dem ersten Element" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s nur sinnvoll auf einer „@multitable“-Zeile" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s sollte nicht mit @top assoziiert sein" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node ist @%s vorangestellt, aber Teile dürfen nicht Knoten zugeordnet werden" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "Leerer Menüeintrag-Name in „%s“" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "leerer Knotenname im Menüeintrag" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s sollte nicht in @%s erscheinen" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s sollte nur an einem Zeilenanfang erscheinen" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "Makro „%s“ früher definiert" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "hier ist die frühere Definition von „%s“" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "Texinfo-Sprachbefehl erneut definiert: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s ohne zugehöriges Zeichen" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" @@ -2718,7 +2713,7 @@ "@%s definiert mit keinem oder mehr als einem Argument, sollte mit {} " "aufgerufen werden" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2727,441 +2722,441 @@ "Makroaufruf ist zu tief verschachtelt (setzen Sie MAX_NESTED_MACROS, um dies " "außer Kraft zu setzen; aktueller Wert ist %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "rekursiver Aufruf des Makros %s ist nicht erlaubt; verwenden Sie @rmacro, " "falls nötig" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "Auf den Akzent-Befehl „@%s“ muss ein Leerzeichen folgen" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "Klammern verwenden, um einen Befehl als Argument an „@%s“ zu übergeben" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s erwartet „i“ oder „j“ als Argument, nicht „%s“" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "Auf den Akzent-Befehl „@%s“ darf kein Zeilenumbruch folgen" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s erwartete geschweifte Klammern" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "undefiniertes Flag: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "Fehlerhafte Syntax für @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s ist obsolet." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s ist obsolet; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s sollte nur am Zeilenanfang erscheinen" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s nicht erlaubt innerhalb eines „@%s“-Blocks" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s sollte nur in Kopf- oder Fußzeilen erscheinen" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s nicht sinnvoll innerhalb eines „@%s“-Blocks" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s in leerer Multitabelle" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab vor @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "zu viele Spalten im „@multitable“-Eintrag (maximal %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "@tab außerhalb einer „multitable“ wird ignoriert" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s außerhalb der Tabelle oder Liste" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "Muss hinter „@%s“ sein, um „@%s“ zu benutzen" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "@%s nicht sinnvoll außerhalb von „@titlepage“- und „@quotation“-Umgebungen" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory nach dem ersten Knoten" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "Region %s innerhalb Region %s ist nicht erlaubt" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry nach dem ersten Knoten" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s vor erstem @node gefunden" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "vielleicht sollte der @top-Knoten eher von @ifnottex als von @ifinfo " "umschlossen werden?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s sollte nur in mathematischem Kontext erscheinen" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "unbekannter Befehl „%s“" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "unerwartetes @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s nicht sinnvoll außerhalb einer „@float“-Umgebung" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s sollte sich genau vor „@float“ befinden" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "mehrfache @%s werden ignoriert" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "Befehl @%s akzeptiert keine Argumente" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "Befehl @%s ohne Knoten oder Argument für ein externes Handbuch" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "in @%s leerer Querverweis-Name nach der Erweiterung von „%s“" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "in @%s leerer Querverweis-Titel nach der Erweiterung von „%s“" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image fehlt als Argument ein Dateiname" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s erstes Argument fehlt" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "nicht-hexadezimale Ziffern im Argument für @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "weniger als vier hexadezimale Ziffern im Argument für @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" "das Argument für @U übersteigt das Maximum für Unicode von 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "überflüssige Argumente für Knoten" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "@end %s wurde erwartet" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s sollte nur einen @-Befehl als Argument akzeptieren, nicht „%s“" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "Verbleibendes Argument in Zeile @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "Umgebungsbefehl %s als Argument zu @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "leeres @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "Spaltenteilung keine Zahl: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "Argument für @sp muss numerisch sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "reservierte Index-Name %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "Unbekannter Quell-Index @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "Unbekannter Ziel-Index @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s ergibt eine Zusammenführung von %s mit sich selbst, wird ignoriert" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "Unbekannter Index „%s“ in @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, fuzzy, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "Ausgabe eines Index „%s“ wurde in einen anderen „%s“ zusammengeführt" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex vor dem Anfang des Dokuments: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "Argument für @%s muss „top“oder „bottom“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Nur @%s 10 oder 11 unterstützt, nicht „%s“" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "Argument für @%s muss „separate“ oder „end“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "Argument für @%s muss „on“, „off“ oder „odd“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "Argument für @paragraphindent muss „numeric“, „none“ oder „asis“ sein, nicht " "„%s“" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "Argument für @firstparagraphindent muss „none“ oder „insert“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "Argument für @exampleindent muss „numeric“ oder „asis“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s „on“ oder „off“ wurde erwartet, nicht „%s“" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "Argument für @kbdinputstyle muss „code“, „example“ oder „distinct“ sein, " "nicht „%s“" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "Argument für @allowcodebreaks muss „true“ oder „false“ sein, nicht „%s“" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "Argument für @urefbreakstyle muss „after“, „before“ oder „none“ sein, nicht " "„%s“" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" "Einordnung der Abschnittsebene für @%s wird angehoben, weil sie zu niedrig " "ist" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "kein chapter-level-Befehl vor @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "Einordnung der Abschnittsebene für @%s wird nach einem Element niederer " "Ebene abgesenkt" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "kein Abschnittsbefehl mit @%s verknüpft" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s ist nicht leer" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s-Referenz auf nicht existierenden Knoten „%s“" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s Name des Eintragsknotens „%s“ unterscheidet sich vom %s-Namen „%s“" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "Nicht referenzierter Knoten „%s“" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "Knoten „%s“ ist %s für „%s“ im Abschnitt, aber nicht im Menü" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "%s-Knoten „%s“ im Menü „%s“ und im Abschnitt „%s“ sind unterschiedlich" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "„%s“-Knoten ist %s für „%s“ im Menü, aber nicht im Abschnitt" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s-Zeiger „%s„ (für Knoten „%s“) unterscheidet sich vom %s-Namen „%s“" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s-Referenz zu nicht existierendem „%s“" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "Dem Knoten „%s“ fehlt ein Menüeintrag für „%s“, obwohl er dessen Ziel für " "„aufwärts“ (Up) ist" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" "für „%s“, nach oben im Menü „%s“ und nach oben zu „%s“ sind unterschiedlich" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s zu „%s“, unterscheidet sich vom %s-Namen „%s“" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "Leerer Index-Schlüssel in @%s" @@ -3723,17 +3718,17 @@ "insert_nodes_for_sectioning_commands-Umwandlung liefert kein Ergebnis. Kein " "Abschnitt?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: Fehler beim Schließen von %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: Fehler beim Schließen der internen Verknüpfungsdatei %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: %s konnte nicht zum Schreiben geöffnet werden: %s\n" @@ -3806,5 +3801,8 @@ #~ msgid "@%s should only appear at beginning or end of document" #~ msgstr "@%s sollte nur am Anfang oder Ende eines Dokuments erscheinen" +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s sollte nicht mit @top assoziiert sein" + #~ msgid "argument for @U exceeds size of integer: %s" #~ msgstr "das Argument für @U übersteigt die Grenze einer Ganzzahl: %s" diff --git a/po/de_AT.gmo b/po/de_AT.gmo index 5076d54..8a62cae 100644 Binary files a/po/de_AT.gmo and b/po/de_AT.gmo differ diff --git a/po/de_AT.po b/po/de_AT.po index 379e048..51a827c 100644 --- a/po/de_AT.po +++ b/po/de_AT.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: texinfo 3.12d\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 1999-02-16 21:14+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -380,42 +380,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -425,12 +425,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -438,7 +438,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -447,7 +447,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -455,15 +455,15 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -471,7 +471,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -481,13 +481,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -504,74 +504,74 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" "Texinfo home page: http://www.gnu.org/software/texinfo/" msgstr "" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1332,188 +1332,188 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "" +#: info/session.c:4874 +msgid "Regexp I-search backward: " +msgstr "" + +#: info/session.c:4875 +msgid "I-search backward: " +msgstr "" + #: info/session.c:4877 -msgid "Regexp I-search backward: " +msgid "Regexp I-search: " msgstr "" #: info/session.c:4878 -msgid "I-search backward: " -msgstr "" - -#: info/session.c:4880 -msgid "Regexp I-search: " -msgstr "" - -#: info/session.c:4881 msgid "I-search: " msgstr "" -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "" -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" +#: info/session.c:5354 +#, c-format +msgid "Unknown command (%s)" +msgstr "" + #: info/session.c:5357 #, c-format -msgid "Unknown command (%s)" -msgstr "" - -#: info/session.c:5360 -#, c-format msgid "\"%s\" is invalid" msgstr "" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "" @@ -1845,79 +1845,79 @@ msgstr "" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -1933,11 +1933,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "" @@ -1957,7 +1957,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "" @@ -1966,111 +1966,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2108,7 +2108,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "" @@ -2171,704 +2171,699 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3270,17 +3265,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "" diff --git a/po/el.gmo b/po/el.gmo index 79f0853..0b2e99f 100644 Binary files a/po/el.gmo and b/po/el.gmo differ diff --git a/po/el.po b/po/el.po index 05d52fc..ed30f15 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GNU texinfo 6.0.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-12-28 00:59+0200\n" "Last-Translator: Tsiolkas Michail \n" "Language-Team: Greek \n" @@ -381,42 +381,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -426,12 +426,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -439,7 +439,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -448,7 +448,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -456,15 +456,15 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -472,7 +472,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -482,13 +482,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -505,74 +505,74 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" "Texinfo home page: http://www.gnu.org/software/texinfo/" msgstr "" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1353,188 +1353,188 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Δε βÏέθηκε" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "" +#: info/session.c:4874 +msgid "Regexp I-search backward: " +msgstr "" + +#: info/session.c:4875 +msgid "I-search backward: " +msgstr "" + #: info/session.c:4877 -msgid "Regexp I-search backward: " +msgid "Regexp I-search: " msgstr "" #: info/session.c:4878 -msgid "I-search backward: " -msgstr "" - -#: info/session.c:4880 -msgid "Regexp I-search: " -msgstr "" - -#: info/session.c:4881 msgid "I-search: " msgstr "" -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "" -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" +#: info/session.c:5354 +#, c-format +msgid "Unknown command (%s)" +msgstr "" + #: info/session.c:5357 #, c-format -msgid "Unknown command (%s)" -msgstr "" - -#: info/session.c:5360 -#, c-format msgid "\"%s\" is invalid" msgstr "" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "" @@ -1866,79 +1866,79 @@ msgstr "" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -1954,11 +1954,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "" @@ -1978,7 +1978,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "" @@ -1987,111 +1987,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2129,7 +2129,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "" @@ -2192,704 +2192,699 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3291,17 +3286,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "" diff --git a/po/eo.gmo b/po/eo.gmo index 8661be6..f5cb4f6 100644 Binary files a/po/eo.gmo and b/po/eo.gmo differ diff --git a/po/eo.po b/po/eo.po index e87178f..43e4bdf 100644 --- a/po/eo.po +++ b/po/eo.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.91\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-05-21 18:07+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Esperanto \n" @@ -389,42 +389,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Malestas menuero «%s» en nodo «%s»." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Nodo «%s» ne troveblas." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Programnomo ne indikatas." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "nevalida numero: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "nevalida valorizo de variablo: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: nekonata variablo" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "valoro %s ne estas valida por variablo %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Por ricevi pli da informoj uzu la opcion “--helpâ€.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -439,12 +439,12 @@ "Ĉi tio estas libera programo; vi rajtas Äin ÅanÄadi kajaÅ­ pludonadi.\n" "NENIA garantio estas donita, kiom la leÄo tion toleras.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "neniu indeksero troviÄas por «%s»\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -455,7 +455,7 @@ "\n" "Prezentas dokumentojn en Info-aranÄo.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -473,7 +473,7 @@ "DOSIERO\n" " -f, --file=MANLIBRO viziti ĉi tiun Info-dosieron" -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -488,16 +488,16 @@ "dosiero\n" " -o, --output=DOSIERO eligi la elektotajn nodojn al DOSIERO" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly esti afabla al la parolsinteziloj." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -515,7 +515,7 @@ " -w, --where, --location eligi la fizikan situon de la Info-dosiero\n" " -x, --debug=NUMERO erarserĉa nivelo (-1 por ciuj mesaÄoj)\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -532,7 +532,7 @@ "unue\n" "vizitenda nodo. Eblas mallongigi tiujn nomojn se ili restas unikaj." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -540,7 +540,7 @@ "\n" "Por prezento de la komandoklavoj, tajpu «H» ene de 'info'." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -571,7 +571,7 @@ " info --sub -o ELO.txt emacs eligi tutan Emaksan manlibron al ELO.txt\n" " info -f ./UMO.info eligi la dosieron ./UMO.info sen atenti «dir»" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -582,67 +582,67 @@ "La hejmpaÄo de Texinfo estas: http://www.gnu.org/software/texinfo/.\n" "Diskutu Esperantotradukon je ." -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Nodo «(%s)%s» ne troveblas." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Ne eblas trovi fenestron!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "La muskursoro ne estas en ĉi-fenestra nodo!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Maleblas forigi la lastan fenestron." -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Malestas menuo en ĉi tiu nodo." -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Malestas piednotoj en ĉi tiu nodo." -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Neniu referenco en ĉi tiu nodo." -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Mankas ligo “%s†por ĉi tiu nodo." -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Nekonata Info-komando “%câ€; tajpu «?» por helpo." -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminalo de tipo «%s» ne estas sufiĉe inteligenta por Info." -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Ĉi tiu jam estas la lasta paÄo en ĉi tiu nodo." -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Ĉi tiu jam estas la unua paÄo en ĉi tiu nodo." -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Nur unu fenestro." -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "La fenestro rezultus tro malgranda." -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Mankas spaco por helpa fenestro; bonvolu forigi iun fenestron." @@ -1436,189 +1436,189 @@ msgid "Using literal strings for searches" msgstr "LaÅ­literaj signoĉenoj uzatos en serĉoj." -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Serĉo kontinuis ekde la fino de la dokumento." -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Serĉo kontinuis ekde la komenco de la dokumento." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Serĉado en subdosiero «%s»..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Serĉo fiaskis." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Serĉi regulesprime" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Serĉi" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " usklecodistinge" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " malantaÅ­en" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Serĉoĉeno tro mallongas." -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Reirante al lasta kongruo en %s." -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Malestas pluaj kongruoj." -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Serĉi signoĉenon en ĉi tiu nodo kaj subnodoj" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Serĉi sub «%s»: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Iri al sekva kongruo en Info-subarbo" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Neniu aktiva serĉo." -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Iri al antaÅ­a kongruo en Info-subarbo" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Legi ĉenon kaj serĉi Äin usklecodistinge" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Legi ĉenon kaj serĉi Äin" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Legi ĉenon kaj serĉi Äin malantaÅ­en" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Ripeti la ĵusan serĉon samdirekte" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Malestas pli frua serĉoĉeno." -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Ripeti la ĵusan serĉon alidirekte" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "ViÅi la montratajn serĉajn kongruojn" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Serĉi signoĉenon dum vi tajpas Äin" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Serĉi tajpante regulesprime malantaÅ­en: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Serĉi tajpante malantaÅ­en: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Serĉi tajpante regulesprime: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Serĉi tajpante: " # La vorto metiÄas antaÅ­ la kvar antaÅ­aj mesaÄoj kiam la serĉo fiaskas. -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "*Fiaskas* " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Ĉesigi la kurantan operacion" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Nuligita" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Montri la version de la rulanta Info" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info, versio %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "RefreÅigi la ekranon" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Eliri el Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Plenumi komandon asociitan kun ĉi tiu klavo minuskligita" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Komando nekonata (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "«%s» ne validas." -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' ne validas." -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Aldoni ĉi tiun ciferon al la kuranta nombra argumento" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Komenci (aÅ­ 4-obligi) la kurantan nombran argumenton" @@ -2028,31 +2028,31 @@ msgstr "TroviÄis nenia Info-kataloga informo pri «%s»; nenio forigitas" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "ne eblas malfermi %s por skribi: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rikuro ĉiam permesatas" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumentoj citatas defaÅ­lte" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "movu la @contents-komandon se vi deziras la enhavon post la titola paÄo" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2060,50 +2060,50 @@ "movu la @shortcontents- kaj @contents-komandojn se vi deziras la enhavon " "post la titola paÄo" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s ne estas valida lingvokodo" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s ne estas valida regiona kodo" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s ne estas valida fenda elekto" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "ne eblas legi %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "eraro dum fermo de '@verbatiminclude'-dosiero %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: ne eblas trovi %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "neniu nodo por alinomi" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "nodoj sen novaj nomoj je la fino de dosiero" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "ne eblas malfermi %s por skribi: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "ne eblas Åirmi kradon en '@%s'" @@ -2119,11 +2119,11 @@ msgstr "%s: eligo malkongruas kun fendo" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "eraro dum fermo de %s: %s" @@ -2143,7 +2143,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "'@image'-dosiero «%s» ne troviÄas; «%s» uziÄas" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "mankas argumento je @U" @@ -2152,112 +2152,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "'@image'-dosiero «%s» (por HTML) ne troviÄas; «%s» uziÄas" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "kruda aranÄo %s ne konvertiÄas" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "ne eblas malfermi %s (dosiero de HTML-referencaj agordoj): %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "mankas tipo" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "nerekonata tipo: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "eraro dum fermo de %s (dosiero de HTML-referencaj agordoj): %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "nefermita signoĉeno en CSS-dosiero" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "'--css-include' finiÄas en komento" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "nefinita komando '@import' en CSS-dosiero" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS-dosiero %s ne troviÄas" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "ne eblas malfermi '--include-file' %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "eraro dum fermo de CSS-dosiero %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "ne troviÄas ero en 'htmlxref.cnf' por '%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "eraro dum fermo de %s (dosiero de kadro): %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "eraro dum fermo de %s (dosiero de enhavtabela kadro): %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "fiaskis traktilo %s de fazo %s prioritato %s" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "necesas indiki titolon je komando '@title' aÅ­ '@top'" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "eraro dum fermo de %s (dosiero de aldirektigoj): %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "malnova nomo por '%s' estas nodo en la dokumento" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "vakas la dosiero por alinomita nodo '%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "celnodo (nova nomo por '%s') ne estas en dokumento: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "eraro dum fermo de %s (dosiero de aldirektigoj por alinomitaj nodoj): %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "vaka nodnomo" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "sintakso por ekstera nodo uziÄas por '%s'" @@ -2295,7 +2295,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Indeksero en @%s kun «:» produktas nevalidan Info-on: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "elemento por indekso «%s» estas ekster iu ajn nodo" @@ -2361,288 +2361,283 @@ msgid "menu entry name should not contain `:'" msgstr "menuernomo ne devus enteni «:»" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "vaka nodnomo post etendo '%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s '%s' jam difiniÄis antaÅ­e" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "ĉi tie estas la antaÅ­a difino kiel '@%s'" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "vaka argumento en '@%s'" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "pluraj '@%s'" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "misa aÅ­ vaka formala argumento de '@%s': %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "misa sintakso por argumento de '@%s': %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s bezonas nomon" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "misa nomo por '@%s'" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "'@end %s' renkontiÄis antaÅ­ ferma '}' de '@%s'" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "'@%s' renkontiÄis antaÅ­ ferma '}' de '@%s'" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s sen “}â€" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "Al @%s mankas ferma disigila sekvenco: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "'@itemx' ne devus esti je komenco de '@%s'" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "'@itemx' devas sekvi '@item'" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "'@%s' havas tekston sed neniun '@item'" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "“@end†atendis “%sâ€, sed renkontis “%sâ€" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "'@%s' renkontiÄis antaÅ­ '@end %s'" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "mankas para '%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "misloka %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "senpara '%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makroo «%s» havas troajn argumentojn" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s sen “}â€" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makroo «%s» deklariÄis sen argumento sed alvokiÄas kun argumento" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "\\ en etendo de '@%s' sekvas post '%s' anstataÅ­ post nomo de parametro aÅ­ \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "mankas nomo por '@%s'" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "mankas kategorio por '@%s'" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "neatendita argumento sur '@%s'-linio: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "vaka plurtabelo" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "troa argumento por '@%s'" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "misa argumento por '@%s'" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s bezonas argumenton: la aranÄilon por %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "komando '@%s', kiu ne toleras argumenton en vinkuloj, ne devus esti en linio " "'@%s'" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "akcentkomando '@%s' ne permesatas kiel argumento de '@%s'" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "Al '@%s' mankas argumento" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "nekonata '@end %s'" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "troa argumento por '@%s %s': %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "misa argumento por '@%s': %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: ne eblas malfermi %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "kodo «%s» ne estas kanonika Texinfo-kodo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nekonata nomo de kodosistemo: «%s»" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "'@%s' post la unua elemento" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "'@%s' nur sencas en '@multitable'-linio" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "'@%s' ne devus esti rilatita al '@top'" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "'@node' antaÅ­ '@%s', sed partoj ne rajtas rilati al nodoj" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "vaka menuernomo en '%s'" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "vaka nodnomo en menuero" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s ne devus aperi en @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s devus aperi nur je komenco de linio" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makroo «%s» jam difiniÄis antaÅ­e" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "ĉi tie estas la antaÅ­a difino de «%s»" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "redifino de Texinfo-komando: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s sen rilatata signo" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "'@%s' kiu difiniÄis kun nula aÅ­ pluraj argumentoj alvokiÄendus kun {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2651,425 +2646,425 @@ "makroalvoko ingiÄas tro profunde (agordu MAX_NESTED_MACROS se necesas; nuna " "valoro estas %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "rikura alvoko de makroo %s malpermesetas; uzu '@rmacro' se necesas" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "post akcentkomando '@%s' ne devus sekvi blankspaco" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "uzu vinkulojn {} por pasigi komandan argumenton al '@%s'" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s atendas argumenton 'i' aÅ­ 'j', ne '%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "post akcentkomando '@%s' ne devus sekvi linifino" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s postulas vinkulojn {}" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "Nedifinita flago: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "misa sintakso por '@value'" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s arkaikiÄis." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s arkaikiÄis; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s devus aperi nur je komenco de linio" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s ne permesatas ene de bloko '@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s devus aperi nur en ĉapo aÅ­ subumo" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s estas sensenca ene de bloko '@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s en vaka plurtabelo" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "'@tab' antaÅ­ '@item'" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "tro da kolumnoj en elemento de plurtabelo (%d maksimume)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignoriÄas komando '@tab' ekster plurtabelo" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s ekster tabelo aÅ­ listo" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "nur post '@%s' eblas uzi '@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s sensencas ekster blokoj '@titlepage' aÅ­ '@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "'@dircategory' post la unua nodo" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "regiono %s ene de regiono %s malpermesatas" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "'@direntry' post la unua nodo" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "'@menu' en nevalida kunteksto" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "'@%s' renkontiÄis jam antaÅ­ la unua '@node'" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "eble via @top-nodo staru sub @ifnottex anstataÅ­ sub @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s devus aperi nur en matematika kunteksto" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "nekonata komando '%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "neatendita '@'" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s sensencas ekster bloko '@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s devus esti tuj sub '@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "pluraj '@%s' ignoriÄas" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "komando @%s ne toleras argumentojn" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "al komando '@%s' mankas nodo aÅ­ ekstera manlibra argumento" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "vaka referenca nomo en '@%s' post etendo '%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "vaka referenca titolo en '@%s' post etendo '%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "mankas dosiera argumento en komando '@image'" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "al '@%s' mankas unua argumento" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "nedeksesumaj ciferoj en argumento por @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "malpli ol kvar deksesumaj ciferoj en argumento por @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "argumento por @U preterpasas Unikodan maksimumon 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "troaj argumentoj por nodo" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "atendatas '@end %s'" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s devas toleri nur @-komando kiel argumento, ne '%s'" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "restanta argumento sur @%s-linio: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "media komando %s uziÄas kiel argumento de @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "vaka '@%s'" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "kolumna frakcio ne estas nombro: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "argumento de @sp devas esti nombro, ne '%s'" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "rezervita indeksnomo %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "nekonata fontindekso en @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "nekonata celindekso en @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s kondukus al kunfando de %s en si mem; ignoriÄas" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "nekonata indekso «%s» en @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "presiÄas indekso '%s' kiu kunfandiÄis en alia, '%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "preskomando antaÅ­ komenco de dokumento: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "argumento de '@%s' devus esti 'top' aÅ­ 'bottom', ne '%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "por '@%s' nur '10' aÅ­ '11' eblas, ne '%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "argumento de '@%s' devus esti 'separate' aÅ­ 'end', ne '%s'" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "argumento de '@%s' devus esti 'on' aÅ­ 'off' aÅ­ 'odd', ne '%s'" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "argumento de '@paragraphindent' devus esti numera aÅ­ 'none' aÅ­ 'asis', ne " "'%s'" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "argumento de '@firstparagraphindent' devus esti 'none' aÅ­ 'insert', ne '%s'" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "argumento de '@exampleindent' devus esti numera aÅ­ 'asis', ne '%s'" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "post @%s devas sekvi 'on' aÅ­ 'off', ne '%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "argumento de '@kbdinputstyle' devus esti 'code'/'example'/'distinct', ne '%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "argumento de '@allowcodebreaks' devus esti 'true' aÅ­ 'false', ne '%s'" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "argumento de '@urefbreakstyle' devus esti 'after'/'before'/'none', ne '%s'" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "kreskigo de sekcia nivelo de '@%s', kiu tro malaltas" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "neniu ĉapitronivela komando antaÅ­ '@%s'" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "malkreskigo de sekcia nivelo de '@%s', kiu aperas post pli malalta elemento" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "neniu sekciada komando estas rilatata al '@%s'" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s ne vakas" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s referenco al neekzistanta nodo «%s»" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s-era nodnomo '%s' malsamas de %s-nomo '%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nodo «%s» ne estas referencita" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "nodo «%s» estas %s por '%s' en sekciado sed ne en menuo" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "nodo «%s» '%s' malsamas en menuo '%s' kaj en sekciado '%s'" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "nodo «%s» estas %s por '%s' en menuo sed ne en sekciado" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s-ligo '%s' (por nodo «%s») malsamas de %s-nomo '%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s referenco al neekzistanta «%s»" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "en nodo «%s» mankas menuero por '%s', malgraÅ­ esti ties ligo 'Up'" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "por '%s', supren en menuo '%s' kaj supren en '%s' ne kongruas" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s al '%s', malsamas de %s-nomo '%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "vaka indeksÅlosilo en '@%s'" @@ -3614,17 +3609,17 @@ "transformo 'insert_nodes_for_sectioning_commands()' ne donis rezulton. " "Neniu sekcio?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: eraro dum fermo de %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: eraro dum fermo de %s (dosiero de internaj ligoj): %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: ne eblas malfermi %s por skribi: %s\n" @@ -3641,6 +3636,9 @@ #~ "signojn\n" #~ " --restore=DOSIERO legi la unuajn klavofrapojn el DOSIERO\n" #~ " -O, --show-options, --usage montri la nodon pri komandliniaj opcioj" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "'@%s' ne devus esti rilatita al '@top'" #~ msgid "readline: Out of virtual memory!\n" #~ msgstr "readline: Mankas sufiĉa virtuala memoro!\n" diff --git a/po/es.gmo b/po/es.gmo index e4800bf..e03caf9 100644 Binary files a/po/es.gmo and b/po/es.gmo differ diff --git a/po/es.po b/po/es.po index baa6829..932796d 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo-6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-23 00:05+0200\n" "Last-Translator: Antonio Ceballos \n" "Language-Team: Spanish \n" @@ -401,42 +401,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "No existe ningún elemento de menú llamado '%s' en el nodo '%s'" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "El nodo '%s' no se ha encontrado" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "No se ha especificado ningún nombre de programa" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "número no válido: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "asignación de variable mal formada: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: no hay tal variable" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "el valor %s no es válido para la variable %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Pruebe la opción `--help' para obtener más información.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -451,13 +451,13 @@ "Esto es software libre: usted es libre de cambiarlo y redistribuirlo.\n" "Dicho software es provisto SIN GARANTÃA, hasta donde permite la ley.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "" "No se encontraron entradas de índice que concuerden con la palabra '%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -468,7 +468,7 @@ "\n" "Muestra documentación escrita en formato Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -483,7 +483,7 @@ " -d, --directory=RUTA añade RUTA a la variable INFOPATH\n" " -f, --file=MANUAL especifica el MANUAL Info que puede visitarse" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -497,12 +497,12 @@ " -o, --output=FICHERO guardar los nodos seleccionados en este " "FICHERO" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" " -O, --show-options, --usage va al nodo de opciones de la línea de órdenes" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly actúa acorde a como los sintetizadores de " @@ -510,7 +510,7 @@ " esperan que lo hagan los programas que los\n" " usan" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -527,7 +527,7 @@ " -x, --debug=NÚMERO establece el nivel de depuración (-1 para\n" " todos)" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -547,7 +547,7 @@ "tratados\n" "como nombres de elementos del menú con respecto al nodo inicial visitado." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -555,7 +555,7 @@ "\n" "Para un resumen de las combinaciones de teclas, teclee 'H' dentro de 'Info'." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -595,7 +595,7 @@ " info -f ./foo.info muestra el fichero './foo.info', sin buscar en\n" " el directorio" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -607,69 +607,69 @@ "Texinfo en general pueden ser dirigidas a .\n" "El sitio web de Texinfo es: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "El nodo '(%s)%s' no se ha encontrado" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "¡No se ha podido encontrar una ventana!" # TODO review point=cursor -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "¡El cursor no parece estar sobre nodo alguno en esta ventana!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "No se puede eliminar la última ventana" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "No existe un menú en este nodo" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "No hay notas de pie de página en este nodo" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "No hay referencias cruzadas en este nodo" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Este nodo no contiene enlace alguno a '%s'" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "" "'%c' no es una orden de Info conocida; pruebe con '?' para obtener ayuda" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "El tipo de terminal '%s' es incapaz de ejecutar Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Usted ya se encuentra en la última página de este nodo" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Usted ya se encuentra en la primera página de este nodo" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Una única ventana" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "La ventana resultante sería demasiado pequeña" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" "No hay pantalla suficiente como para albergar la ventana de ayuda, elimine " @@ -1479,191 +1479,191 @@ msgid "Using literal strings for searches" msgstr "Usando texto literal en las búsquedas" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "La búsqueda continuó desde el final del documento" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "La búsqueda continuó desde el principio del documento" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Buscando sub-fichero %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "La búsqueda finalizó sin resultados" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Buscar (exp.reg.)" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Buscar" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " distinguiendo mayús./minús." -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " hacia atrás" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "El texto de búsqueda es demasiado corto." # TODO review -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Vuelta atrás hasta la última coincidencia desde %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "No hay más coincidencia" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Buscar cadena en este nodo y sus subnodos" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Buscar bajo %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Ir a la siguiente coincidencia en el subárbol de Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Ninguna búsqueda activa" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Ir a la coincidencia anterior en el subárbol de Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Leer un texto y buscarlo (mayúsculas y minúsculas son significativas)" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Leer una cadena de texto y buscarla" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Leer una cadena de texto y buscarla hacia atrás" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Repetir la última búsqueda en la misma dirección que la anterior" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "No existe constancia de búsqueda anterior" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Repetir la última búsqueda en dirección contraria" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Borra las coincidencias de búsqueda visualizadas" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Buscar de forma interactiva un texto según se escribe" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Búsqueda interactiva hacia atrás (exp.reg.): " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Búsqueda interactiva hacia atrás: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Búsqueda interactiva (exp.reg.): " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Búsqueda interactiva: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Falló " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Cancelar la operación en curso" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Cancelado" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Mostrar la versión de Info que se está ejecutando" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "Versión de GNU Info %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Redibujar los contenidos de la pantalla" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Salir de Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" "Ejecutar comando asociado a la versión en minúsculas de esta tecla o " "combinación de teclas" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Orden desconocida (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" no es válida" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' no es válida" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Sumar este dígito al argumento numérico actual" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Comenzar (o multiplicar por 4) el argumento numérico actual" @@ -2131,32 +2131,32 @@ msgstr "No se encontraron entradas para '%s'; no se borrará nada" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "no se pudo abrir %s para escribir: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "la recursividad está siempre permitida" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "los argumentos son entrecomillados por defecto" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "mueva su orden @contents si quiere los contenidos después de la página del " "título" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2164,50 +2164,50 @@ "mueva sus órdenes @shortcontents y @contents si quiere los contenidos " "después de la página del título" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "'%s' no es válido como código de lenguaje" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "'%s' no es válido como código de región" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "'%s' no es una posibilidad de división válida" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "no se pudo leer %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "error cerrando el fichero @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: no se pudo encontrar %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "ningún nodo que renombrar" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "hay nodos sin nombre nuevo al final del fichero" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "no se pudo abrir %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "no se ha podido proteger el carácter almohadilla en @%s" @@ -2223,11 +2223,11 @@ msgstr "%s: salida incompatible con división" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "error cerrando %s: %s" @@ -2247,7 +2247,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "El fichero @image '%s' no se ha encontrado; se utilizará '%s'" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "no se ha especificado argumento alguno para @U" @@ -2257,113 +2257,113 @@ msgstr "" "El fichero @image '%s' (para HTML) no se ha encontrado; se utilizará '%s'" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "el formato en bruto %s no se ha convertido" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" "no se pudo abrir el fichero de configuración de referencias html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "tipo ausente" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "tipo desconocido: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "error cerrando el fichero de configuración de referencias html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "cadena de texto sin cerrar en el fichero css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "'--css-include' finaliza con un comentario" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import no finalizado en el fichero css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "No se ha encontrado el fichero CSS %s" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "no se pudo abrir '--include-file' %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "error cerrando el fichero CSS '%s': %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "no se encontraron entradas htmlxref.cnf para `%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "error al cerrar el fichero marco %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "error al cerrar el fichero de tabla de contenidos %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "el manejador %s de la etapa %s con prioridad %s ha fallado" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" "hay que especificar un título mediante una orden de título o mediante @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "error al cerrar el fichero de redirección de nodos %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "el antiguo nombre de '%s' es un nodo del documento" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "fichero vacío para el nodo renombrado '%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "el nodo objetivo (nuevo nombre para '%s') no está en el documento: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "error al cerrar el fichero de redirección de nodos renombrados %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "nombre de nodo vacío" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "se ha utilizado la sintaxis de nodo externo para `%s'" @@ -2401,7 +2401,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "La entrada de índice en @%s con : produce un Info no válido: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "la entrada para el índice '%s' se encuentra fuera de nodo alguno" @@ -2469,286 +2469,281 @@ msgid "menu entry name should not contain `:'" msgstr "el nombre de una entrada de menú no debe contener ':'" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "nombre de nodo vacío tras expandir `%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s '%s' ya ha sido definido anteriormente" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "la definición previa de `@%s' se encuentra aquí" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "argumento vacío en @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "@%s múltiple" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "argumento formal @%s incorrecto o vacío: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "sintaxis del argumento @%s incorrecta: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "la construcción `%c%s' requiere un nombre" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "nombre inaceptable para @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "hay un @end %s antes de la llave de cierre de @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "hay un @%s antes de la llave de cierre de @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s se esperaba leer `}'" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s sin secuencia delimitadora de cierre: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx no debe comenzar @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx tiene que estar después de @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s tiene texto pero ningún @item" # TODO review -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "Se esperaba ver `@end' '%s', pero se ha leído '%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s aparece antes de @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "no hay un '%cend %s' correspondiente" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "carácter `%c' fuera de lugar" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "`%c%s' desemparejado" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "La llamada a la macro '%s' contiene demasiados argumentos" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s se esperaba leer `}'" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" "La llamada a la macro '%s', declarada sin argumentos, contiene un argumento" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "se leyó \\, al expandir @%s, tras '%s' en vez de un nombre de parámetro o \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "falta un nombre para @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "falta una categoría para @%s" # TODO review -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "argumento erróneo en una línea @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "multi-tabla vacía" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "argumento superfluo para @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "argumento erróneo para @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "`%s' requiere un argumento: el procesador de formato para %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "la orden @%s, que no acepta argumento entre llaves, no puede estar en una " "línea @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "la orden de acentuación `@%s' no se permite como argumento de @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "a @%s le falta argumento" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "@end %s desconocido" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "argumento superfluo para @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "argumento erróneo para @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: no se pudo abrir %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "la codificación `%s' no es una codificación canónica de texinfo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "`%s' no se corresponde con ningún tipo de codificación conocido" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s después del primer elemento" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s carece de sentido fuera de una línea @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s no debe estar asociado con @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node precede a @%s, pero las partes no pueden estar asociadas con los nodos" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "nombre de entrada de menú vacío en `%s'" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "nombre de nodo vacío en una entrada de menú" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s no puede aparecer en @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s solo puede aparecer al comienzo de una línea" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "la macro '%s' ya ha sido definida en este documento" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "la definición previa de '%s' se encuentra aquí" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "se redefine la orden del lenguaje Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s sin carácter asociado" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" @@ -2756,7 +2751,7 @@ "@%s definido sin ningún argumento o con más de uno tiene que ser invocado " "con {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2765,434 +2760,434 @@ "anidamiento demasiado profundo en llamada a macro (habría que modificar\n" "MAX_NESTED_MACROS; su valor actual es %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "no se permite llamar a la macro %s recursivamente; utilice @rmacro si lo " "necesita" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "la orden de acentuación `@%s' no puede ir seguida de espacio en blanco" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "use llaves para pasar una orden como argumento de @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "el uso de `%c%s' presupone como argumentos `i' o `j', no `%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "la orden de acentuación `@%s' no puede ir seguida de nueva línea" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s esperaba llaves" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "etiqueta indefinida: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "sintaxis de @value incorrecta" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s es una sintaxis ya obsoleta." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s es una sintaxis ya obsoleta; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s solo puede aparecer al comienzo de una línea" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s no está permitido en un bloque `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s solo puede aparecer en el encabezado o al pie" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "`@%s' carece de sentido bajo la influencia de un bloque `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s en multi-tabla vacía" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab antes de @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "demasiadas columnas para el elemento multi-tabla (max %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignorando `@tab' no influenciado por el entorno `multitable'" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s fuera de tabla o lista" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "tiene que ir después de `@%s' para poder usar `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "`@%s' carece de sentido fuera de influencias de entornos como `@titlepage' o " "`@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory después del primer nodo" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "una región %s no está permitida dentro de una región %s" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry después del primer nodo" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu en un contexto que no es válido" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "se ha encontrado un @%s antes del primer @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "¿Quizás su nodo `@top' debería quedar bajo la influencia de un bloque " "`@ifnottex' en vez de la de un bloque `@ifinfo'?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s solo puede aparecer en un contexto matemático" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "orden desconocida `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "no se esperaba @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s carece de sentido si se da fuera de entornos `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s debe estar inmediatamente debajo de `@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "se ignora @%s múltiple" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "la orden @%s no admite argumentos" # TODO review -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "a la orden @%s le falta un nodo o un argumento manual externo" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "en @%s nombre de referencia cruzada vacío tras expansión `%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "en @%s título de referencia cruzada vacío tras expansión `%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "la primitiva `@image' carece de referencia a fichero alguno" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s falta el primer argumento" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "dígitos no hexadecimales en el argumento de @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "menos de cuatro dígitos hexadecimales en el argumento de @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "el argumento de @U excede el Unicode máximo 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "argumentos de nodo superfluos" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "se esperaba @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s solo debe aceptar una orden-@ como argumento, no `%s'" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "argumento restante en la línea @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "orden de entorno %s como argumento de @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "@%s vacío" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "fracción de columna no numérica: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "el argumento de @sp tiene que ser numérico, así que '%s' no es válido" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "nombre de índice reservado %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "índice de origen desconocido en @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "índice de destino desconocido en @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s llevaría a fusionar %s consigo mismo; ignorar" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "índice desconocido `%s' en `@printindex'" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "imprimiendo un índice `%s' fusionado en otro, `%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex antes del comienzo del documento: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "el argumento de @%s debe ser `top' o `bottom', no '%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Sólo @%s 10 or 11 está soportado, no '%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "el argumento de @%s debe ser `separate' o `end', no '%s'" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "el argumento de @%s debe ser `on', `off' o `odd', no '%s'" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "el argumento de @paragraphindent debe ser numérico/`none'/`asis', no '%s'" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "el argumento de @firstparagraphindent debe ser `none' o `insert', no '%s'" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "el argumento de @exampleindent debe ser numérico/`asis', no '%s'" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "Se esperaba leer @%s \"on\" u \"off\", no '%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "el argumento de @kbdinputstyle debe ser `code'/`example'/`distinct', no '%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "el argumento de @allowcodebreaks debe ser `true' o `false', no '%s'" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "el argumento de @urefbreakstyle debe ser `after'/`before'/`none', no '%s'" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "se sube el nivel de sección de @%s, que es demasiado bajo" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "no hay órdenes de nivel de capítulo antes de @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "se desciende el nivel de sección de @%s que aparece tras un elemento inferior" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "no hay ninguna orden de seccionamiento asociada a @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s no vacío" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s hace referencia a un nodo inexistente (`%s')" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "el nombre de nodo `%s' de la entrada @%s difiere del nombre de %s `%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "Nodo '%s' no referenciado" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "el nodo `%s' es %s para `%s' en el seccionamiento pero no en el menú" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "el nodo %s `%s' en el menú `%s' y en el seccionamiento `%s' difieren" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "el nodo `%s' es %s para `%s' en menú pero no en seccionamiento" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" "el puntero %s `%s' (para el nodo `%s') es diferente del nombre de %s `%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s hace referencia a algo que no existe (`%s')" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "El nodo `%s' carece de elemento de menú alguno para `%s' aunque consta como " "su destino para `Up'" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "para `%s', subir en el menú `%s' y subir `%s' no concuerdan" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s para `%s', diferente del nombre de %s `%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "clave de índice vacía en @%s" @@ -3857,20 +3852,23 @@ "resultado.\n" "¿No hay ninguna sección?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: error cerrando %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: error al cerrar el fichero de enlaces internos %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: no se pudo abrir %s para escritura: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s no debe estar asociado con @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/fr.gmo b/po/fr.gmo index a3ab931..8f3f2b5 100644 Binary files a/po/fr.gmo and b/po/fr.gmo differ diff --git a/po/fr.po b/po/fr.po index 7b934f2..a3a8eb1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-19 19:03+0200\n" "Last-Translator: Jean-Charles Malahieude \n" "Language-Team: French \n" @@ -396,42 +396,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Aucune entrée de menu « %s » dans le nÅ“ud « %s »." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Impossible de trouver le nÅ“ud « %s »." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Aucun nom de programme donné." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "nombre invalide : %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "assignation de variable mal formée : %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s : variable inconnue" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "la valeur %s est invalide pour une variable %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Utilisez --help pour plus d'informations.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -447,12 +447,12 @@ "diffuser.\n" "Aucune garantie n'est offerte, dans les limites permises par la loi.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "aucune entrée d'index trouvée pour « %s »\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -463,7 +463,7 @@ "\n" "Lit un document au format Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -478,7 +478,7 @@ " -d, --directory=RÉP Ajoute le répertoire RÉP à INFOPATH.\n" " -f, --file=FICHIER Indique quel fichier Info visiter." -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -492,18 +492,18 @@ " Info visité.\n" " -o, --output=FICHIER Écrit les nÅ“uds sélectionnés dans FICHIER." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" " -O, --show-options, --usage Va au nÅ“ud des options de la ligne\n" " de commande." -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly Compatibilité avec les synthétiseurs vocaux." -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -515,7 +515,7 @@ " --version Affiche la version et s'arrête.\n" " -w, --where, --location Affiche l'emplacement du fichier Info." -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -533,7 +533,7 @@ "Tout argument restant sera considéré comme un nom d'entrée de menu\n" "relatif au premier nÅ“ud visité." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -542,7 +542,7 @@ "Pour obtenir un résumé des raccourcis clavier, entrer H depuis\n" "le programme." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -576,7 +576,7 @@ " info -f ./foo.info Affiche ./foo.info, sans parcourir\n" " l'arborescence." -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -587,68 +587,68 @@ "org.\n" "Site Texinfo : http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Impossible de trouver le nÅ“ud « (%s)%s »." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Impossible de trouver une fenêtre !" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Le point n'apparaît pas dans le nÅ“ud de cette fenêtre !" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Impossible de détruire la dernière fenêtre." -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Aucun menu dans ce nÅ“ud." -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Aucune note de bas de page dans ce nÅ“ud." -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Aucun renvoi dans ce nÅ“ud." -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Aucun pointeur « %s » pour ce nÅ“ud." -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Commande Info « %c » inconnue ; utilisez « ? » pour l'aide." # TERM=tty info -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Le terminal « %s » n'est pas assez évolué pour lancer Info." -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Vous êtes déjà à la dernière page de ce nÅ“ud." -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Vous êtes déjà à la première page de ce nÅ“ud." -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Une seule fenêtre." -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "La fenêtre résultante serait trop petite." -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" "Pas assez de place pour une fenêtre d'aide, veuillez détruire une fenêtre." @@ -1439,188 +1439,188 @@ msgid "Using literal strings for searches" msgstr "La recherche utilise des chaînes littérales." -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Poursuite de la recherche depuis la fin du document." -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Poursuite de la recherche depuis le début du document." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Recherche dans le sous-fichier « %s »..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Échec de la recherche." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s] : " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Recherche une expr. rationnelle" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Recherche" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " respectant la casse" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " vers l'arrière" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s : " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Chaîne à rechercher trop courte" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Va à la dernière correspondance à partir de %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Pas d'autre correspondance." -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Recherche une chaîne dans ce nÅ“ud et ses enfants." #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Recherche dans le sous-fichier « %s »..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Va à la correspondance suivante dans l'arborescence Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Pas de recherche en cours" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Va à la correspondance précédante dans l'arborescence Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Lit une chaîne et la recherche en respectant la casse" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Lit une chaîne et la recherche" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Lit une chaîne et la recherche vers l'arrière" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Recommence la dernière recherche dans la même direction" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Aucune chaîne de recherche antérieure" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Répète la dernière recherche dans la direction opposée" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Efface les mises en surbrillance" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Recherche interactive de la chaîne en cours de frappe" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Recherche arrière interactive d'exp. ration. : " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Recherche arrière interactive : " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Recherche interactive d'exp. ration. : " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Recherche interactive : " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Échec " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Annule l'opération en cours" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Quitte" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Affiche la version d'Info en cours" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "\"GNU Info version %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Redessine l'écran" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Quitte Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Exécute la commande liée à la minuscule associée à cette touche" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Commande inconnue (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "« %s » est invalide" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "« %s » est invalide" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Ajouter ce chiffre à l'argument numérique courant" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Démarre (ou multiplie par 4) l'argument numérique courant" @@ -2043,32 +2043,32 @@ msgstr "aucune entrée pour « %s » ; aucune suppression" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "impossible d'ouvrir %s en écriture : %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "la récursivité est toujours autorisée" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "les arguments sont entre guillemets par défaut" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "Vous devez déplacer la commande @contents pour que le contenu soit\n" "à la suite de la page de titre." -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2076,50 +2076,50 @@ "Vous devez déplacer les commandes @shortcontents et @contents\n" "pour que le contenu soit à la suite de la page de titre." -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s n'est pas un code de langue" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s n'est pas un code de zone géographique" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s n'est pas une division valable" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "impossible de lire %s : %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "erreur de fermeture du fichier @verbatiminclude %s : %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s : impossible de trouver %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "aucun nÅ“ud à renommer" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "nÅ“uds sans nouveau nom à la fin du fichier" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "impossible d'ouvrir %s : %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "impossible de protéger le caractère hash dans @%s" @@ -2135,11 +2135,11 @@ msgstr "%s : sotie incompatible avec des divisions" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "erreur lors de la fermeture de %s : %s" @@ -2159,7 +2159,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "fichier @image « %s » non trouvé ; utilisation de « %s »" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "aucun argument spécifié à @U" @@ -2169,113 +2169,113 @@ msgstr "" "fichier @image « %s » (pour le HTML) non trouvé ; utilisation de « %s »" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "le format brut %s n'est pas converti" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "impossible d'ouvrir le fichier de param. des réf. html %s : %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "type manquant" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "type inconnu : %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "erreur de fermeture du fichier de param. des réf. html %s : %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "chaîne non terminée dans le fichier css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include s'est terminé dans un commentaire" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import non terminé dans le fichier css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "fichier CSS %s non trouvé" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "impossible d'ouvrir --include-file %s : %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "erreur de fermeture du fichier CSS %s : %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "aucune entrée htmlxref.cnf trouvée pour « %s »" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "erreur de fermeture du fichier-cadre HTML %s : %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "" "erreur de fermeture du fichier-cadre de table des matières (TOC) %s : %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "échec du gestionnaire %s de l'étape %s priorité %s" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "vous devez indiquer un titre avec @top ou une commande de titrage" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "erreur de fermeture du fichier de redirection des nÅ“uds %s : %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "l'ancien nom de « %s » est un nÅ“ud de ce document" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "le nÅ“ud renommé « %s » est un fichier vide" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "nÅ“ud cible (nouveau nom de « %s ») absent du document : %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "erreur de fermeture du fichier de redirection des nÅ“uds renommés %s : %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "nom de nÅ“ud vide" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "utilisation de la syntaxe de nÅ“ud externe pour « %s »" @@ -2314,7 +2314,7 @@ msgstr "" "Une entrée d'index dans @%s comporte un : qui produit de l'Info invalide : %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "l'entrée de l'index « %s » est hors de tout nÅ“ud" @@ -2379,290 +2379,285 @@ msgid "menu entry name should not contain `:'" msgstr "une entrée de menu ne devrait pas contenir de « : »" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "nom de nÅ“ud vide après expansion de « %s »" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s « %s » déjà défini" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "voici la définition précédente de @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "argument vide dans @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "@%s multiples" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "argument formel @%s erroné ou vide : %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "syntaxe incorrecte de l'argument de @%s : %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s a besoin d'un nom" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "mauvais nom pour @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s présent avant l'accolade clôturant @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s présent avant l'accolade clôturant @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s sans accolade fermante" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s sans séquence de délimiteur de fermeture : %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx ne doit pas débuter @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx doit suivre @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s contient du texte mais pas d'@item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "« @end » attendait « %s », mais a eu « %s »" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s présent avant @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "aucun « %cend %s » correspondant" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "%c mal placée" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "« %c%s » sans correspondance" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "macro « %s » appelée avec trop d'arguments" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s sans accolade fermante" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "macro « %s » déclarée sans argument, mais appelée avec un argument" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "\\ dans l'expansion de @%s suivie par « %s » au lieu du nom du paramètre\n" "ou de \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "@%s sans nom" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "@%s sans catégorie" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "argument inattendu à la ligne @%s : %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "multitable vide" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "argument superflu à @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "mauvais argument à @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s nécessite un argument : le formateur %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "une commande @%s n'acceptant pas d'argument entre parenthèses ne devrait\n" "pas se trouver sur une ligne @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "commande d'accentuation « @%s » interdite en argument à @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s sans d'argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "@end %s inconnu" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "argument superflu à @%s %s : %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "mauvais argument à @%s : %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s : impossible d'ouvrir %s : %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "le codage « %s » n'est pas accepté par texinfo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "codage « %s » non reconnu" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s après le premier élément" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s n'a de sens que sur une ligne @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s ne devrait pas être associé à @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node précède @%s, mais des parties ne peuvent être associées à des nÅ“uds" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "entrée de menu vide dans « %s »." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "nÅ“ud vide dans l'entrée de menu" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s ne devrait pas apparaître dans @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s ne peut apparaître qu'en début de ligne" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "macro « %s » déjà définie" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "voici la définition précédente de « %s »" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "redéfinition de la commande Texinfo : %s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s sans caractère associé" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "@%s défini sans ou avec plus d'un argument s'invoque avec {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2671,442 +2666,442 @@ "appel de macro trop profondément imbriqué (dérogation par " "MAX_NESTED_MACROS ; valeur actuelle %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "appel récursif de la macro %s interdit ; utiliser @rmacro si besoin" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "la commande d'accentuation « @%s » doit être suivie d'une espace" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "utiliser des accolades pour passer une commande en argument à « @%s »" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s attend l'argument « i » ou « j », pas « %s »" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" "la commande d'accentuation « @%s » ne doit pas être suivie d'un saut de ligne" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s accolades attendues" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "drapeau indéfini : %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "syntaxe de @value incorrecte" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s est obsolète." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s est obsolète ; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s ne doit apparaître qu'en début de ligne" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s interdit dans un bloc « @%s »" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s ne peut apparaître qu'en en-tête ou en pied de page" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s n'a aucun sens dans un bloc « %s »" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s dans une multitable vide" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab avant @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "trop de colonnes dans une entrée de multitable (%d max)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "@tab non pris en compte hors de multitable" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s en dehors d'une table ou d'une liste" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "il faut être après « @%s » pour utiliser « @%s »" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "@%s n'a aucun sens hors des environnements « @titlepage » et « @quotation »" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory après le premier nÅ“ud" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "il n'est pas possible de placer une région %s dans une région %s" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry après le premier nÅ“ud" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu au sein d'un contexte non valide" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s vu avant le premier @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "votre nÅ“ud @top ne devrait-il pas être dans @ifnottex plutôt que @ifinfo ?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s est réservé au contexte math" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "commande « %s » inconnue" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "@ inattendu" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s n'a aucun sens hors de l'environnement « @float »" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s se place juste en dessous de « @float »" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "@%s multiples ignorés" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "la commande @%s s'emploie sans argument" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "la commande @%s doit avoir un argument nÅ“ud ou manuel externe" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "dans @%s, nom de renvoi vide après expansion de « %s »" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "dans @%s, titre du renvoi vide après expansion de « %s »" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image sans nom de fichier" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s sans premier argument" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "nombre non hex en argument à @U : %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "moins de quatre nombres hex en argument à @U : %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "l'argument à @U dépasse la limite Unicode de 0x10FFFF : %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "arguments de nÅ“ud superflus" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "@end %s attendu" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s ne devrait accepter en argument qu'une @-commande, pas « %s »" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "argument restant à la ligne @%s : %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "commande d'environnement %s en argument de @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "@%s vide" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "fraction de colonne non numérique : %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "l'argument de @sp doit être numérique, pas « %s »" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "%s est un nom d'index réservé" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "source d'index inconnue dans @%s : %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "destination d'index inconnue dans @%s : %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s conduit à une fusion de %s avec lui-même ; ignoré" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "index « %s » inconnu dans @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "impression d'un index « %s » fusionné dans un autre, « %s »" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex avant le début du document : @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "l'argument de @%s doit être « top » ou « bottom », pas « %s »" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Seuls @%s 10 ou 11 sont autorisés, pas « %s »" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "l'argument à @%s doit être « separate » ou « end », pas « %s »" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "" "l'argument de @%s doit être « on », « off » ou « odd », mais pas « %s »" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "l'argument de @paragraphindent doit être numérique, « none » ou « asis », " "pas « %s »" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "l'argument de @firstparagraphindent doit être « none » ou « insert », pas " "« %s »" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "l'argument de @exampleindent doit être numérique ou « asis », pas « %s »" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s peut être « on » ou « off », pas « %s »" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "l'argument de @kbdinputstyle doit être « code », « example » ou " "« distinct », pas « %s »" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "l'argument de @allowcodebreaks doit être « true » ou « false », pas « %s »" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "l'argument de @urefbreakstyle doit être « after », « before » ou « none », " "pas « %s »" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "remontée de la section de @%s qui est trop basse" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "pas de commande niveau chapitre avant @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "descente de la section de @%s qui apparaît après un élément subalterne" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "aucune commande de sectionnement associée à @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s n'est pas vide" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s pointe vers un nÅ“ud « %s » inexistant" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "entrée @%s du nÅ“ud nommé « %s » différente du nom de %s « %s »" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nÅ“ud « %s » non référencé" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" "le nÅ“ud « %s » est %s pour « %s » dans le sectionnement, mais pas dans le " "menu" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" "le nÅ“ud %s « %s » est différent dans le menu « %s » et dans le sectionnement " "« %s »" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" "le nÅ“ud « %s » est %s pour « %s » dans le menu mais pas dans le sectionnement" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "le pointeur %s « %s » (pour le nÅ“ud « %s ») diffère de %s nommé « %s »" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s fait référence à « %s » qui n'existe pas" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "le nÅ“ud « %s » n'a pas d'entrée de menu pour « %s », dont le « Up » le " "désigne" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" "pour « %s », au-dessus dans le menu « %s » et au-dessus « %s » ne " "correspondent pas" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s pour « %s », différent de %s nommé « %s »" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "entrée d'index vide dans @%s" @@ -3671,17 +3666,20 @@ "la transformation insert_nodes_for_sectioning_commands ne renvoie rien. Pas " "de section ?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s : erreur de fermeture de %s : %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s : erreur de fermeture du fichiers de liens internes %s : %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s : impossible d'ouvrir %s en écriture : %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s ne devrait pas être associé à @top" diff --git a/po/he.gmo b/po/he.gmo index 272bc8a..b2f5ba8 100644 Binary files a/po/he.gmo and b/po/he.gmo differ diff --git a/po/he.po b/po/he.po index 521e817..331ba93 100644 --- a/po/he.po +++ b/po/he.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: texinfo 4.2\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2002-04-03 12:31+0300\n" "Last-Translator: Eli Zaretskii \n" "Language-Team: Hebrew \n" @@ -391,42 +391,42 @@ msgid "No menu item '%s' in node '%s'" msgstr ".`%s' óéòñ ïéà `%s' ä÷ñéô ìù èéøôúá" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr ".äàöîð àì `%s' ä÷ñéô" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, fuzzy, c-format msgid "invalid number: %s\n" msgstr "`%s' :éåâù (node) ä÷ñéô íù" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "Info äðúùî ìù êøò äðù" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr ".øúåé áø òãéî úâöäì --help äñð\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -436,12 +436,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "`%s' úæåøçî íéìéëîä ñ÷ãðéà éèéøô ïéà\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -449,7 +449,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -458,7 +458,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -466,17 +466,17 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " .øåáéã æúðñîì åîéàúäì éãë êñîì äáéúë ïôåà äðù -b, --speech-friendly\n" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -484,7 +484,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -494,13 +494,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -517,7 +517,7 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 #, fuzzy msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" @@ -529,75 +529,75 @@ " .help-texinfo@gnu.org-ì ïåéãì íéàùåðå úåéììë úåìàùå\n" " .http://www.gnu.org/software/texinfo/ :Texinfo ìù úéáä óã" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr ".äàöîð àì `%s' õáå÷á `%s' ä÷ñéô" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "!ïåìç óà àöîð àì" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "!äæ ïåìçá úâöåîä ä÷ñéôá àöîð åðéà ïîñä" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr ".ãéçé ïåìç ÷åçîì ïúéð àì" -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr ".íéèéøôú ïéà åæ ä÷ñéôá" -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr ".íééìåù úåøòä ïéà åæ ä÷ñéôá" -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr ".íéøåùé÷ ïéà åæ ä÷ñéôá" -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr ".%sì äééðôä ïéà åæ ä÷ñéôá" -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr ".äøæò úìá÷ì `?' äñð ;Info-ì úøëåî äðéà `%c' äãå÷ô" -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr ".Info õéøäì éãë åéã ììëåùî åðéà `%s' âåñî âö" -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr ".åæ ä÷ñéô ìù ïåøçàä ãåîòá øáë ä/úà" -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr ".åæ ä÷ñéô ìù ïåùàøä ãåîòá øáë ä/úà" -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr ".ãçà ïåìç ÷ø íéé÷" -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr ".éãî øúåé ïè÷ äéä ïåìçä" -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr ".åäùìë ïåìç ÷åçîì àð ;äøæò ïåìç âéöäì íå÷î ÷éôñî ïéà" @@ -1417,197 +1417,197 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "äøåù úìéçú ãò ÷çî" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "... %s õáå÷-úú ÷øåñ" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr ".äàöîð àì úæåøçîä" -#: info/session.c:4191 +#: info/session.c:4188 #, fuzzy, c-format msgid "%s%s%s [%s]: " msgstr "%s%sfor string [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Search" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 #, fuzzy msgid " case-sensitively" msgstr " case-sensitively " # The following 4 are untranslated because they are used with the # format string above in a prompt, and we don't translate prompts. -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 #, fuzzy msgid " backward" msgstr "Search backward" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "... %s õáå÷-úú ÷øåñ" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "úåéùéøá úåáùçúä êåú äúåà ùôçå úæåøçî àø÷" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "äúåà ùôçå úæåøçî àø÷" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "äøåçà äúåà ùôçå úæåøçî àø÷" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "ïååéë åúåàá ïåøçà ùåôéç ìò øåæç" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "ïåøçà ùåôéçî úæåøçî ïéà" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "êåôä ïååéëá ïåøçà ùåôéç ìò øåæç" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "äúåà ä/ãéì÷î ä/úàù éãë êåú úæåøçî ùôç" -#: info/session.c:4877 +#: info/session.c:4874 #, fuzzy msgid "Regexp I-search backward: " msgstr "I-search backward: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-search backward: " -#: info/session.c:4880 +#: info/session.c:4877 #, fuzzy msgid "Regexp I-search: " msgstr "I-search: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-search: " # Untranslated because is used with the I-search: prompt. -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Failing " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "úéçëåð äìåòô ìèá" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "ìèåá" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "àöå úéðëúä úñøéâ ìò òãéî âöä" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "äâåöú ùãç" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Info úéðëåúî àö" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "äæ ù÷î ìù úåðè÷ úåéúåà úñøéâì äøåù÷ä äãå÷ô ìòôä" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr ".(%s) úøëåî-éúìá äãå÷ô" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" äéåâù äãå÷ô" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "\"%s\" äéåâù äãå÷ô" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "éçëåð éøîåð èðîåâøàì åæ äøôñ óñåä" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "4-á íéé÷ êøò ìåôë åà ,éøîåð èðîåâøà ìù äãì÷ä ìçúä" @@ -1957,79 +1957,79 @@ msgstr "÷çîð àì íåìë ;`%s' øåáò èéøôú éôéòñ åàöîð àì" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "ISO 639 é\"ò íéøëåîä ïåùìä éðîéñî ãçà åðéà %s" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "ISO 639 é\"ò íéøëåîä ïåùìä éðîéñî ãçà åðéà %s" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2045,11 +2045,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" @@ -2069,7 +2069,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image øåáò `%s' õáå÷ úàéø÷á (%s) äì÷ú" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "ä÷ñéô íù àìì `%c%s' äàøåä" @@ -2079,112 +2079,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "(HTML øåáò ùøãð) @image øåáò `%s' õáå÷ úàéø÷á (%s) äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "äãå÷ô íù øñç" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s úéðëú øåáò `--%s' ääåæî-éúìá ïééôàî\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "`%s' èì÷ õáå÷ úçéúôá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "`%s' úæåøçî íéìéëîä ñ÷ãðéà éèéøô ïéà\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "`%s' èìô õáå÷ úøéâñá äì÷ú" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr ".åæ ä÷ñéô øåáò `Up'-å `Prev' ììåë åðéà äæ êîñî" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "øåùé÷ óà ïéà `%s' ä÷ñéôì" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2223,7 +2223,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "ä÷ñéô ìëì õåçî øãâåî `%s' ñ÷ãðéà èéøô" @@ -2287,712 +2287,707 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "íãï÷ øãâåä øáë `%s' åø÷àî" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "äðåùàøì øãâåä `%s' ïàë" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "%c%s-ì éåâù èðîåâøà" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "íù ùøåã %c%s" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr " for %s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s-ì øñç éðîé øâåñ" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`%s' àöîð íìåà ,`%s' ì\"ö `@end' éøçà" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "íàåú `%cend %s' øñç" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "åîå÷îá åðéàù %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "âåæ-ïá åì ïéàù `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "éãî íéáø íéèðîåâøà úììåë `%s' åø÷àîì %d äøåùá äúìéçúù äàéø÷" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s-ì øñç éðîé øâåñ" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "éãî íéáø íéèðîåâøà úììåë `%s' åø÷àîì %d äøåùá äúìéçúù äàéø÷" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "øèîøô íù åà \\ íå÷îá ,åø÷àî úáçøäá \\ úåá÷òá `%s'" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "äãå÷ô íù øñç" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "÷éø åðéä %s õáå÷" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "%c%s-ì éåâù èðîåâøà" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "%c%s-ì éåâù èðîåâøà" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s úàøåäá %citem øåáò áåöéò úèéù :èðîåâøà ùøãð" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s úéðëú øåáò èðîåâøà ìá÷î åðéà `--%s' ïééôàî\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr ".õáå÷ íù øñç %s úéðëúì\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "`%s' øëåî-éúìá ñ÷ãðéà" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "%c%s-ì éåâù èðîåâøà" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, fuzzy, perl-format msgid "unrecognized encoding name `%s'" msgstr "`%s' øëåî-éúìá ãåãé÷ íù" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr ".íéèéøôú `%s' ïéà ä÷ñéôá" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "äøåù úìéçú ãò ÷çî" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "íãï÷ øãâåä øáë `%s' åø÷àî" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "äðåùàøì øãâåä `%s' ïàë" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "íéìñìåñî íééøâåñá êøåö ùé ,@%s-ì èðîåâøà äéäú äàøåäù éãë" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "`j' åà `i' úåéäì áééç øùà ,%c%s ìù èðîåâøà úåéäì íéàúî åðéà `%c'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "`{...}'-ì äôéö %c%s" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "ïùåéî åðéä %c%s" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "ïùåéî åðéä %c%s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "äøåù úìéçú ãò ÷çî" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "`@%s' êåúá @%s-ì úåòîùî ïéà" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "`@%s' êåúá @%s-ì úåòîùî ïéà" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "÷éø åðéä %s õáå÷" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "(%d ãò øúåî) multitable ìù @item-á úåãåîò éãî øúåé" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "multitable-ì õåçî @tab-î éúîìòúä" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "`%s' êåúá ÷øå êà ùåîéùá øúåî `%sx'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "íééìåù úåøòä êåúá íééìåù úåøòäá äëéîú ïéà" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "`Top' ú÷ñéô øöåé ,äðåùàøä ä÷ñéôä éðôì àöîð @menu" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "?@ifinfo íå÷îá @ifnottex-á úô÷åî úåéäì äúéä äëéøö @top ú÷ñéô éë ïëúééä" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "`%s' úøëåî-éúìá äàøåä" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "`%s' éåôö äéä ïàë" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "`@%s' êåúá @%s-ì úåòîùî ïéà" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image úàøåäá øñç õáå÷ íù" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr ".õáå÷ íù øñç %s úéðëúì\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "`%s' éåôö äéä ïàë" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "íéìñìåñî íééøâåñá êøåö ùé ,@%s-ì èðîåâøà äéäú äàøåäù éãë" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "íéìñìåñî íééøâåñá êøåö ùé ,@%s-ì èðîåâøà äéäú äàøåäù éãë" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr ".%s ïééôàî øåáò %s é\"ò ùøãðë ,éøîåð èðîåâøà åðéà `%s'\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, fuzzy, perl-format msgid "reserved index name %s" msgstr "`%s' :éåâù (node) ä÷ñéô íù" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "`%s' øëåî-éúìá ñ÷ãðéà" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "@printindex-á `%s' øëåî-éúìá ñ÷ãðéà" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr ".%s ïééôàî øåáò %s é\"ò ùøãðë ,éøîåð èðîåâøà åðéà `%s'\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: `%s' àì ,`end' åà `separate' úåéäì --footnote-style ìù èðîåâøà ìò\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr ".%s ïééôàî øåáò %s é\"ò ùøãðë ,éøîåð èðîåâøà åðéà `%s'\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: `%s' àì ,`asis'/`none'/éøîåð úåéäì --paragraph-indent ìù èðîåâøà ìò\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: `%s' àì ,`asis'/`none'/éøîåð úåéäì --paragraph-indent ìù èðîåâøà ìò\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: `%s' àì ,`asis'/`none'/éøîåð úåéäì --paragraph-indent ìù èðîåâøà ìò\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: `%s' àì ,`end' åà `separate' úåéäì --footnote-style ìù èðîåâøà ìò\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: `%s' àì ,`end' åà `separate' úåéäì --footnote-style ìù èðîåâøà ìò\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%sá `%s' úîéé÷ äððéàù ä÷ñéôì äééðôä" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "øåùé÷ óà ïéà `%s' ä÷ñéôì" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%sá `%s' úîéé÷ äððéàù ä÷ñéôì äééðôä" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "äøæçá òéáöîù èéøôú óéòñ ïéà ìáà ,`%s' ìò òéáöî `%s' ä÷ñéô ìù Up äãù" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3469,17 +3464,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s õáå÷ ìù (%s) äàéø÷á ïäå (%s) äøéöéá ïä äì÷ú\n" diff --git a/po/hr.gmo b/po/hr.gmo index 4618788..aaf33a4 100644 Binary files a/po/hr.gmo and b/po/hr.gmo differ diff --git a/po/hr.po b/po/hr.po index fe04384..314017e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: texinfo-6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-18 12:41-0700\n" "Last-Translator: Božidar Putanec \n" "Language-Team: Croatian \n" @@ -392,42 +392,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Stavke izbornika ‘%s’ nema u Ävoru ‘%s’" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Nije moguće pronaći Ävor ‘%s’" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Program nema ime" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "neispravan broj: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "loÅ¡e formirana namjena varijabli: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: takva varijabla ne postoji" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "vrijednost %s nije ispravna za varijablu %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "PokuÅ¡ajte --help za viÅ¡e informacija.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -442,12 +442,12 @@ "Ovo je slobodan softver: slobodno ga mijenjajte i dijelite.\n" "NEMA JAMSTVA, do granica dopuÅ¡tenih zakonom.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "nijedna stavka nije naÄ‘ena u indeksu za ‘%s’\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -458,7 +458,7 @@ "\n" "ÄŒitanje dokumentacije u Info obliku.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -474,7 +474,7 @@ "DATOTECI.\n" " -f, --file=PRIRUÄŒNIK navedi Info priruÄnik za posjet." -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -487,15 +487,15 @@ " Info datoteci.\n" " -o, --output=DATOTEKA ispiÅ¡i izabrane Ävorove u DATOTEKU." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr " -O, --show-options, --usage go to command-line options node" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly prilagodi se sintetizatorima govora" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -507,7 +507,7 @@ " -v, --variable VAR=VRIJEDNOST dodijeli VRIJEDNOST Info varijabli VAR\n" " -w, --where, --location ispiÅ¡i fiziÄku lokaciju Info datoteke." -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -524,7 +524,7 @@ "Svi preostali argumenti se tretiraju kao imena stavki izbornika,\n" "relativno u odnosu na prvi posjećeni Ävor." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -532,7 +532,7 @@ "\n" "Za popis funkcija tipki (key bindings) pritisnite H u programu Info." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -563,7 +563,7 @@ " info -f ./foo.info prikaži datoteku ./foo.info,\n" " bez pretraživanja direktorija" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -574,67 +574,67 @@ "Texinfo poÄetna stranica: http://www.gnu.org/software/texinfo/\n" "Prijavite greÅ¡ke prijevoda na lokalizacija@linux.hr/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Nije moguće pronaći Ävor ‘(%s)%s’" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Ne mogu pronaći prozor!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "ToÄka se ne nalazi unutar Ävora ovog prozora!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Nije moguće ukloniti zadnji prozor" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Nema izbornika u ovom Ävoru" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Nema fusnota u ovom Ävoru" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Nema ukriženih referencija (cross references) u ovom Ävoru" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Nema pokazivaÄa ‘%s’ za ovaj Ävor" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Nepoznata Info naredba ‘%c’; pokuÅ¡ajte ‘?’ za pomoć" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminal vrste ‘%s’ nije dovoljno „pametan“ za rad programa Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Već se nalazite na zadnjoj stranici ovog Ävora" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Već se nalazite na prvoj stranici ovog Ävora" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Samo jedan prozor" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Nastali prozor bi bio premalen" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Nema dovoljno prostora za prozor pomoći, molimo uklonite jedan prozor" @@ -1428,188 +1428,188 @@ msgid "Using literal strings for searches" msgstr "Koristim doslovne stringove za pretrage" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Pretraga se nastavlja od kraja dokumenta" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Pretraga se nastavlja od poÄetka dokumenta" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Tražim poddatoteku %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Pretraga nije uspjela" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Pretraga regularnim izrazom" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Pretraga" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " pazi na veliÄinu slova" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " unatrag" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Niz za pretraživanje je prekratak" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Vraćam se na zadnje podudaranje iz %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Nema viÅ¡e podudaranja" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Pretraži ovaj Ävor i Ävorove ispod za string" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Tražim ispod %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Idi na sljedeće podudaranje u Info podstablu" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Nema aktivnog traženja" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Idi na prethodno podudaranje u Info podstablu" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "ProÄitaj string i traži ga pazeći na veliÄinu slova" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "ProÄitaj niz i traži ga" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "ProÄitaj niz i traži ga unatrag" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Ponovi zadnju pretragu u istom smjeru" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Nema prethodnog traženog niza" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Ponovi zadnju pretragu u suprotnom smjeru" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "PoÄisti pretragom prikazana podudaranja" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Traži niz interaktivno za vrijeme tipkanja" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "I-pretraga regularnog izraza unatrag: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-pretraga unatrag: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "I-pretraga regularnim izrazom: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-pretraga: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Ne uspijeva " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "PoniÅ¡ti trenutaÄnu operaciju" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "IziÄ‘i" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Prikaži informacije o inaÄici i iziÄ‘i" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info inaÄica %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Osvježi prikaz" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "IziÄ‘i iz programa Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "IzvrÅ¡i naredbu povezanu s malim slovom ove tipke" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Nepoznata naredba (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "„%s“ nije ispravan" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "‘%s’ nije ispravan" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Dodaj ovu znamenku trenutaÄnom brojÄanom argumentu" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "ZapoÄni (ili pomnoži s 4) trenutaÄni brojÄani argument" @@ -2021,32 +2021,32 @@ msgstr "nema pronaÄ‘enih stavki za „%s“; niÅ¡ta nije izbrisano" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "ne mogu otvoriti %s za pisanje: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rekurzija je uvijek dopuÅ¡tena" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumenti se uobiÄajeno citiraju" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "pomaknite svoju @contents naredbu želite li prikaz sadržaja nakom naslovne " "stranice" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2054,50 +2054,50 @@ "pomoknite svoju @shortcontents i @contents naredbe želite li prikaz sadržaja " "nakom naslovne stranice" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s nije ispravan jeziÄni kÈd" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s nije ispravan kÈd regije" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s nije ispravna mogućnost razdvajanja" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "ne mogu Äitati %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "greÅ¡ka pri zatvaranju @verbatiminclude datoteke %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: ne mogu pronaći %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "nema Ävorova koje treba preimenovati" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "Ävorovi bez novog imena na kraju datoteke" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "ne mogu otvoriti %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "ne mogu zaÅ¡tititi znak rasprÅ¡enja (hash character) u @%s" @@ -2113,11 +2113,11 @@ msgstr "%s: izlaz nije u skladu s prijelom" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "greÅ¡ka pri zatvaranju %s: %s" @@ -2137,7 +2137,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image datoteka „%s“ nije pronaÄ‘ena, koristim „%s“" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "nijedan argument nije specificran za @U" @@ -2146,112 +2146,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image datoteka „%s“ (za HTML) nije pronaÄ‘ena, koristim „%s“" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "neobraÄ‘eni oblik %s nije pretvoren" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "ne mogu otvoriti datoteku postavki html referenci %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "nedostaje vrsta" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "neprepoznata vrsta: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "greÅ¡ka pri zatvaranju datoteke postavki html referenci %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "niz nije zatvoren u css datoteci" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include zavrÅ¡ava u komentaru" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import nije zavrÅ¡en u css datoteci" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS datoteka %s nije pronaÄ‘ena" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "ne mogu otvoriti --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "greÅ¡ka pri zatvaranju CSS datoteke %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "nije pronaÄ‘ena stavka htmlxref.cnf za „%s“" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "greÅ¡ka pri zatvaranju datoteke okvira %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "greÅ¡ka pri zatvaranju datoteke TOC okvira %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "rukovatelj %s faze %s prioriteta %s nije uspio" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "morate navesti naslov naredbom naslova ili @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "greÅ¡ka pri zatvaranju datoteke preusmjeravanja Ävora %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "staro ime za „%s“ je Ävor dokumenta" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "prazna datoteka za preimenovani Ävor „%s“" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "odrediÅ¡ni Ävor (novo ime za „%s“) nije u dokumentu: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "greÅ¡ka pri zatvaranju datoteke preusmjeravanja preimenovanog Ävora %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "prazno ime Ävora" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "sintaksa za vanjski Ävor koriÅ¡tena za „%s“" @@ -2289,7 +2289,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Stavka u indeksu @%s s(a) : pravi neispravni Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "stavka za indeks „%s“ je izvan svih Ävorova" @@ -2355,287 +2355,282 @@ msgid "menu entry name should not contain `:'" msgstr "ime stavke u izborniku ne smije sadržavati „:“" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "prazno ime Ävora nakon proÅ¡irenja „%s“" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s „%s“ prethodno definiran" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "ovdje je prethodna definicija kao @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "prazan argument u @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "viÅ¡estruki @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "neispravan ili prazan @%s formalni argument: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "neispravna sintaksa za @%s argument: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s zahtijeva ime" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "nema imena za @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s pronaÄ‘en prije @%s zatvorene zagrade" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s pronaÄ‘en prije @%s zatvorene zagrade" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s nedostaje zatvorena zagrada" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s nema zavrÅ¡ni niz znakova za razdvajanje: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx ne smije zapoÄeti @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx mora slijediti @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s ima tekst, ali nema @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "„@end“ oÄekuje „%s“, pronaÅ¡ao „%s“" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s pronaÄ‘en prije @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "nema odgovarajućeg „%cend %s“" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "%c na krivom mjestu" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "neuparen „%c%s“" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makro naredba „%s“ pozvana s previÅ¡e argumenata" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s nedostaje zatvorena zagrada" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makro „%s“ je deklariran bez argumenata a pozvan je s argumentom" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "nakon \\ u proÅ¡irenju @%s slijedi „%s“ umjesto imena parametra ili \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "nema imena za @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "nema kategorije za @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "neoÄekivani argument u @%s retku: %s" # ? (TK) -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "prazna viÅ¡estruka tablica" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "suviÅ¡an argument za @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "neispravan argument za @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s zahtijeva argument: oblikovatelj za %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "naredba @%s koja ne prihvaća argument u zagradama ne smije biti u @%s retku" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "naredba naglaska „@%s“ nije dopuÅ¡tena kao @%s argument" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s nedostaje argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "nepoznat @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "suviÅ¡an argument za @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "neispravan argument za @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: ne mogu otvoriti %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "kodiranje „%s“ nije kanonsko texinfo kodiranje" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "neprepoznato ime kodiranja „%s“" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s nakon prvog elementa" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s nema znaÄenje u retku @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s ne bi trebao biti povezan s @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node prethodi @%s, ali dijelovi možda nisu povezani s Ävorovima" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "prazno ime stavke izbornika u „%s“" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "prazan Ävor u stavci izbornika" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s se ne smije pojaviti u @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s smije se pojaviti samo na poÄetku retka" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro naredba „%s“ prethodno definirana" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "ovdje je prethodna definicija „%s“" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "ponovo definiram naredbu Texinfo jezika: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s bez pridruženog znaka" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "@%s definiranu bez ijednog ili viÅ¡e argumenata treba pozivati s {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2644,424 +2639,424 @@ "poziv makro naredbe je preduboko ugniježđen (postavite MAX_NESTED_MACROS za " "promjenu; trenutaÄna vrijednost %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "rekurzivno pozivanje makro naredbe %s nije dopuÅ¡teno; koristite @rmacro ako " "je potrebno" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "nakon naredbe naglaska „@%s“ ne smije slijediti bjelina" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "koristite zagrade da biste naveli naredbu kao argument za @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s oÄekuje „i“ ili „j“ kao argument, ne „%s“" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "nakon naredbe naglaska „@%s“ ne smije slijediti novi redak" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s oÄekuje zagrade" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "nedefinirana zastavica: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "neispravna sintaksa za @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s je zastarjelo." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s je zastarjelo; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s smije se pojaviti samo na poÄetku retka" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s nije dopuÅ¡ten unutar „@%s“ bloka" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s se smije pojaviti samo u zaglavlju ili podnožju" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s nema znaÄenje unutar „@%s“ bloka" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s u praznoj viÅ¡estrukoj tablici" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab prije @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "previÅ¡e stupaca u multitablici (multitable) predmetu (viÅ¡e od %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "zanemaruje se @tab izvan viÅ¡estruke tablice" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s izvan tablice ili popisa" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "mora biti nakon „@%s“ za koriÅ¡tenje „@%s“" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s nema znaÄenje izvan „@titlepage“ i „@quotation“ okružja" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory nakon prvog Ävora" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "podruÄje %s unutar podruÄja %s nije dopuÅ¡teno" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry nakon prvog Ävora" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu je u neispravnom kontekstu" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s pronaÄ‘en prije prvog @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "možda vaÅ¡ @top Ävor treba biti unutar @ifnottex umjesto @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s se smije pojaviti samo u matematiÄkom kontekstu" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "nepoznata naredba „%s“" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "neoÄekivani @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s nema znaÄenje izvan „@float“ okružja" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s mora biti odmah ispod „@float“" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "zanemaruju se viÅ¡estruki @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "naredba @%s ne prihvaća argumente" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "naredbi @%s nedostaje Ävor ili vanjski ruÄni argument" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "u @%s prazno ime uputnice (cross-reference) nakon proÅ¡irenja „%s“" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "u @%s prazan naslov uputnice (cross reference) nakon proÅ¡irenja „%s“" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image nedostaje argument imena datoteke" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s nedostaje prvi argument" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "ne-heksadecimalne znamenke (non-hex digits) u argumentu za @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" "manje od Äetiri heksadecimalnih znamenki (hex digits) u argumentu za @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "argument za @U je veći od unikodnog (Unicode) maksimuma 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "suviÅ¡ni argumenti za Ävor" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "oÄekujem @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s trebala bi samo prihvatiti @-naredbu kao argument, a ne „%s“" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "preostali argumenti u @%s retku: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "naredba okoline %s kao argument za @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "prazan @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "dio stupca nije broj: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp argument mora biti broj, ne „%s“" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "zauzeto ime indeksa %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "nepoznat indeks izvora u @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "nepoznat indeks odrediÅ¡ta u @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s uzrokuje unutarnje spajanje u %s; zanemaruje se" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "nepoznat indeks „%s“ u @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "ispisivanje indeksa „%s“ spojeno je u jednom drugom, „%s“" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex prije poÄetka dokumenta: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s argument mora biti „top“ ili „bottom“, ne „%s“" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Podržano je samo @%s 10 ili 11, ne „%s“" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s argument mora biti „separate“ ili „end“, ne „%s“" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s argument mora biti „on“, „off“ ili „odd“, ne „%s“" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "@paragraphindent argument mora biti broj, „none“ ili „asis“, ne „%s“" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "@firstparagraphindent argument mora biti „none“ ili „insert“, ne „%s“" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "@exampleindent argument mora biti broj ili „asis“, ne „%s“" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "oÄekujem @%s on ili off, ne „%s“" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "@kbdinputstyle argument mora biti „code“, „example“ ili „distinct“, ne „%s“" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "@allowcodebreaks argument mora biti „true“ ili „false“, ne „%s“" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "@urefbreakstyle argument mora biti „after“, „before“ ili „none“, ne „%s“" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "povećavam razinu odjeljka @%s koja je premalena" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "nema naredbe chapter-level prije @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "smanjujem razinu odjeljka @%s koja se pojavljuje nakon nižeg elementa" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "nema naredbe za odjeljke pridružene @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s nije prazan" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%s referencira nepostojeći Ävor „%s“" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s ime Ävora stavke „%s“ razliÄito od %s imena „%s“" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nereferencirani Ävor „%s“" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "Ävor „%s“ je %s za „%s“ u odjeljcima, ali ne u izborniku" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "Ävor %s „%s“ u izborniku „%s“ i u odjeljcima „%s“ se razlikuje" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "Ävor „%s“ je %s za „%s“ u izborniku, ali ne u odjeljcima" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s pokazivaÄ â€ž%s“ (za Ävor „%s“) razliÄit od %s imena „%s“" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s referencira nepostojeći „%s“" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "Ävoru „%s“ nedostaje stavka izbornika „%s“ iako je njegov Up cilj" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "za „%s“, gore (up) u izborniku „%s“ i gore (up) „%s“ su razliÄiti" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s za „%s“, razliÄit od %s imena „%s“" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "prazan kljuÄ indeksa u @%s" @@ -3611,20 +3606,23 @@ "insert_nodes_for_sectioning_commands transformacija ne vraća rezultat. Nema " "odjeljka?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: greÅ¡ka pri zatvaranju %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: greÅ¡ka pri zatvaranju datoteke unutarnjih veza %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: ne mogu otvoriti %s za pisanje: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s ne bi trebao biti povezan s @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/hu.gmo b/po/hu.gmo index eea6a34..131f4dd 100644 Binary files a/po/hu.gmo and b/po/hu.gmo differ diff --git a/po/hu.po b/po/hu.po index e2dee7f..2c29678 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: texinfo 4.7.x\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2006-02-18 16:00+0100\n" "Last-Translator: Máté LABÃDI \n" "Language-Team: Hungarian \n" @@ -394,42 +394,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Nincs „%s“ menüelem a(z) „%s“ oldalon." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "A(z) „%s“ oldal nem található." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "Egy Info változó beállítása" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "A --help több információt ad.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -439,12 +439,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "Nincs tárgymutató ehhez: %s\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -452,7 +452,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -461,7 +461,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -469,15 +469,15 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -485,7 +485,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -495,13 +495,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -518,7 +518,7 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 #, fuzzy msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" @@ -531,78 +531,78 @@ "címre küldhetÅ‘k.\n" "Texinfo honlap: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "A(z) „(%s)%s“ oldal nem található." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Nem található ablak!" # ATNEZNI LM -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "A pont nem jelenik meg az ablakon látható oldalon!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Az utolsó ablak nem törölhetÅ‘!" - -# node = csomópont? LM -# vagy csak pont? sas -#: info/info.c:1186 -#, fuzzy -msgid "No menu in this node" -msgstr "Nincs menü ezen az oldalon." - -# node = csomópont? LM -# vagy csak pont? sas -#: info/info.c:1187 -#, fuzzy -msgid "No footnotes in this node" -msgstr "Nincs lábjegyezet ezen az oldalon." # node = csomópont? LM # vagy csak pont? sas #: info/info.c:1188 #, fuzzy +msgid "No menu in this node" +msgstr "Nincs menü ezen az oldalon." + +# node = csomópont? LM +# vagy csak pont? sas +#: info/info.c:1189 +#, fuzzy +msgid "No footnotes in this node" +msgstr "Nincs lábjegyezet ezen az oldalon." + +# node = csomópont? LM +# vagy csak pont? sas +#: info/info.c:1190 +#, fuzzy msgid "No cross references in this node" msgstr "Ez az oldal nem tartalmaz kereszthivatkozást." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Nincs „%s“ utalás ezen az oldalon." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Ismeretlen Info parancs: „%c“. A „?“ súg." # smart = okos vagy smart = modern vagy smart = fejlett ? LM # sztem fejlett: sas -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "A „%s“ termináltípus nem elég fejlett az Info futtatásához." # tegez/magáz? LM # talán egy kicsit jobb a magázás itt, de ahogy tetszik, de 1séges legyen - sas -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Ön már az oldal utolsó lapját látja." # tegez/magáz? LM # talán egy kicsit jobb a magázás itt, de ahogy tetszik, de 1séges legyen - sas -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Ön már az oldal legelsÅ‘ lapját látja." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Csak egy ablak." @@ -611,14 +611,14 @@ # vagy # resulting window = létrejövÅ‘/keletkezÅ‘ ablak # LM -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Az eredményablak túl kicsi lenne." # tegez/magáz LM # ha lehet, legjobb elkerülni, például be kell zárni egy ablakot, amúgy itt: talán egy kicsit jobb a magázás, de ahogy tetszik, de 1séges legyen - sas -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Nincs elég hely súgóablakhoz, kérem zárjon be egy ablakot!." @@ -1513,206 +1513,206 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Törlés a sor elejéig" # alállomány ? LM # passz - sas -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "„%s“ alállomány keresése..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "A keresés sikertelen volt." # FORDITANI -#: info/session.c:4191 +#: info/session.c:4188 #, fuzzy, c-format msgid "%s%s%s [%s]: " msgstr "%s%sa sztringhez [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Keresés" # érzékenyen / érzékenység -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 #, fuzzy msgid " case-sensitively" msgstr "kis/nagybetű érzékenyen" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 #, fuzzy msgid " backward" msgstr "Keresés felfelé" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" # alállomány ? LM # passz - sas #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "„%s“ alállomány keresése..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Szöveg beolvasása és keresése kis/nagybetű érzékenyen" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Szöveg beolvasása és keresése " -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Szöveg beolvasása és keresése fel" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Utolsó keresés ismétlése azonos irányba" # keresési feltétel / keresési szöveg / keresett szöveg ? LM -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Nincs korábbi keresési feltétel" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Utolsó keresés ismétlése ellenirányban" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" # JAVITANI ? -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Egy szöveg interaktív keresése gépeléskor" -#: info/session.c:4877 +#: info/session.c:4874 #, fuzzy msgid "Regexp I-search backward: " msgstr "I.-keresés fel: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I.-keresés fel: " -#: info/session.c:4880 +#: info/session.c:4877 #, fuzzy msgid "Regexp I-search: " msgstr "I.-keresés: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I.-keresés: " # checkit # FORDITANI -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Sikertelen" -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Jelen művelet törlése" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Kilépés" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "kiírja a verzióinformációt és kilép" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "KépernyÅ‘ frissítése" # rövidebb forma? Kilépés az Info-ból ? LM # általában NAON.! fontos a RÖV.SÉG, de itt kivételesen szerintem maradhat ez - sas -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Az Info használatának befejezése" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "E karakter kisbetűs változatához rendelt parancs futtatása" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Ismeretlen parancs (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" érvénytelen" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "„%s“ érvénytelen" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Add hozzá ezt a számjegyet az aktuális numerikus argumentumhoz" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Start (vagy szorozd be 4-gyel) az aktuális numerikus argumentumot" @@ -2052,79 +2052,79 @@ msgstr "„%s“-hez nem találtam bejegyzést; nincs mit törölni" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s nem egy ISO 639 szabvány szerinti nyelvkód" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s nem egy ISO 639 szabvány szerinti nyelvkód" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2140,11 +2140,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" @@ -2164,7 +2164,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image a(z) „%s“ fájl nem olvasható: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "A(z) „%c%s“ parancshoz nem lett oldalnév rendelve" @@ -2174,116 +2174,116 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image a(z) „%s“ fájl (HTML) nem olvasható: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" # action=művelet ? LM # általában az - sas -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "hiányzó műveletnév" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s: ismeretlen opció „--%s“\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-file kommenttel végzÅ‘dik" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "Nincs tárgymutató ehhez: %s\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "hiba a(z) „%s“ output fájl bezárásakor" # ATNEZNI LM -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "Nincs ElÅ‘zÅ‘ vagy Fel lehetÅ‘ség e ponthoz e dokumentumban." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "nem hivatkozott oldal „%s“" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2324,7 +2324,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "A(z) „%s“ tárgymutató bejegyzése az oldalakon kívülre esik" @@ -2387,727 +2387,722 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "a(z) „%s“ makró már korábban definiált lett" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "„%s“ korábbi definíciója" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "Rossz argumentum ide: @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s egy nevet igényel" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "Rossz argumentum ide: @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s hiányzó kapcsos bezárójel" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "„@end“-t vártam „%s“, de „%s“-t találtam" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "Nincs egyezÅ‘ „%cend %s“" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "Rossz helyen levÅ‘ %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "Nem egyezÅ‘ „%c%s“" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "A(z) „%s“ makró túl sok argumentummal lett meghívva a %d sorban" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s hiányzó kapcsos bezárójel" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "A(z) „%s“ makró túl sok argumentummal lett meghívva a %d sorban" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" # action=művelet ? LM # általában az - sas -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "hiányzó műveletnév" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "Rossz argumentum ide: %s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: üres fájl" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "Rossz argumentum ide: @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "Rossz argumentum ide: @%s" # %citem ist ein Texinfo-Befehl -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s egy argumentumot igényel: %citem formázását" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: Opció „--%s“ nem fogad argumentumot\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s: hiányzó fájl argumentum.\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "Ismeretlen tárgymutató „%s“" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Rossz argumentum ide: %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "Rossz argumentum ide: %s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "ismeretlen kódolási név: „%s“" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "A(z) @%s -nek nincs értelme a „@titlepage“ környezeten kívül" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "Nincs menü a(z) „%s“ oldalon." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: A CSS fájl nem nyitható meg: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "Törlés a sor elejéig" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "a(z) „%s“ makró már korábban definiált lett" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "„%s“ korábbi definíciója" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "Kapcsos zárójelekkel egy parancsot is megadhat @%s argumentumaként" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s „i“-t vagy „j“-t vár argumentumként, nem „%c“-t" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s kapcsos zárójelpárt vár" # flag ? LM -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "ismeretlen flag: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s elavult" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s elavult" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "Törlés a sor elejéig" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s -nek nincs jelentése a(z) „@%s“ blokkon belül" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s -nek nincs jelentése a(z) „@%s“ blokkon belül" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s: üres fájl" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "Túl sok oszlop szerepel a multitable elemben (max %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "figyelmen kívül hagyom a multitable-n kívül esÅ‘ @tab-ot" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "Csak a(z) „@%s“ környezetben használható a(z) „@%s“" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "A(z) @%s -nek nincs értelme a „@titlepage“ és a „@quotation“ környezeten " "kívül" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "Lábjegyzetben nem lehet lábjegyzet" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "" "@menu-t találtam az elsÅ‘ @node elÅ‘tt. Létrehozom a „Szülő“ (Top) oldalt" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "esetleg a @top oldalt @ifnottex-be kellene tenni, @ifinfo helyett" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "Ismeretlen parancs: „%s“" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "„%s“-t várok" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "A(z) @%s -nek nincs értelme a „@float“ környezeten kívül" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image hiányzó fájlnév argumentum" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s: hiányzó fájl argumentum.\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "Rossz argumentum ide: %s: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "„%s“-t várok" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "Kapcsos zárójelekkel egy parancsot is megadhat @%s argumentumaként" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "Rossz argumentum ide: %s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "Kapcsos zárójelekkel egy parancsot is megadhat @%s argumentumaként" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: a(z) %s argumentumának numerikusnak kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "Ismeretlen tárgymutató „%s“" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "Ismeretlen tárgymutató „%s“ itt: @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: a(z) %s argumentumának numerikusnak kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: a --footnote-style argumentumának „separate“-nek vagy „end“-nek kell " "lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: a(z) %s argumentumának numerikusnak kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: a --paragraph-indent argumentumának numerikusnak, „none“-nak vagy " "„asis“-nek kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: a --paragraph-indent argumentumának numerikusnak, „none“-nak vagy " "„asis“-nek kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: a --paragraph-indent argumentumának numerikusnak, „none“-nak vagy " "„asis“-nek kell lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, fuzzy, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s on vagy off-t vártam, „%s“ helyett" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: a --footnote-style argumentumának „separate“-nek vagy „end“-nek kell " "lennie, „%s“ helyett.\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: a --footnote-style argumentumának „separate“-nek vagy „end“-nek kell " "lennie, „%s“ helyett.\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "%s egy nem létezÅ‘ oldalra („%s“) hivatkozik (esetleg hibás szekcionálás?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nem hivatkozott oldal „%s“" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "nem hivatkozott oldal „%s“" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "A(z) „%s“ oldal nem tartalmaz menüelemet „%s“-hez, bár ez uóbbi a szülÅ‘je" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3527,17 +3522,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: A CSS fájl nem nyitható meg: %s" diff --git a/po/id.gmo b/po/id.gmo index fa88db7..958ff02 100644 Binary files a/po/id.gmo and b/po/id.gmo differ diff --git a/po/id.po b/po/id.po index ecd85ce..52e769f 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 5.1.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2014-08-11 17:30+0700\n" "Last-Translator: Arif E. Nugroho \n" "Language-Team: Indonesian \n" @@ -390,42 +390,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Tidak ada menu item `%s' dalam titik `%s'." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Tidak dapat menemukan titik `%s'." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "invalid number: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "malformed variable assignment: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: no such variable" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "Set nilai %s dari sebuah variabel Info %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Coba --help untuk informasi lebih lanjut.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -442,12 +442,12 @@ "TIDAK ADA GARANSI, sampai batas yang masih diijinkan oleh hukum yang " "berlaku.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "tidak ada masukan indeks ditemukan untuk `%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -458,7 +458,7 @@ "\n" "Baca dokumentasi dalam format Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -475,7 +475,7 @@ "BERKAS.\n" " -f, --file=NAMA BERKAS spesifikasikan berkas Info untuk dikunjungi." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -490,16 +490,16 @@ "dikunjungi pertama.\n" " -o, --output=NAMA BERKAS keluarkan titik yang dipilih ke NAMA BERKAS." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly jadi ramah untuk berbicara synthesizer." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -516,7 +516,7 @@ " -w, --where, --location tampilkan lokasi pisik dari berkas Info. -x, " "--debug=NUMBER set debugging level (-1 for all).\n" -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -535,7 +535,7 @@ "Argumen sisa yang ada akan diperlakukan sebagai nama dari daftar menu\n" "relatif ke titik inisial yang dikunjungi." -#: info/info.c:1129 +#: info/info.c:1131 #, fuzzy msgid "" "\n" @@ -544,7 +544,7 @@ "\n" "Untuk sebuah ringkasan dari binding kunci, ketik h didalam Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -574,7 +574,7 @@ " info --subnodes -o out.txt emacs dump seluruh manual ke out.txt\n" " info -f ./foo.info tampilkan berkas ./foo.info, bukan mencari dir" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -584,75 +584,75 @@ "pertanyaan umum dan diskusi ke help-texinfo@gnu.org.\n" "Texinfo halaman rumah: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Tidak dapat menemukan titik `(%s)%s'." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Tidak dapat menemukan sebuah jendela!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Titik tidak kelihatan didalam titik jendela ini!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Tidak dapat menghapus jendela terakhir." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Tidak ada menu di titik ini." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Tidak ada catatan kaki di titik ini." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Tidak ada referensi silang di titik ini." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Tidak ada `%s' penunjuk untuk titik ini." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Perintah Info `%c' tidak diketahui; coba `?' untuk bantuan." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Tipe terminal `%s' tidak cukup pintar untuk menjalankan Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Anda telah berada di akhir halaman dari titik ini." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Anda telah berada di halaman pertama dari titik ini." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Hanya satu jendela." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Menghasilkan jendela yang akan terlalu kecil." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1460,192 +1460,192 @@ msgid "Using literal strings for searches" msgstr "Menggunakan string literal untuk pencarian." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Pencarian dilanjutkan dari akhir dari dokumen." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Pencarian dilanjutkan dari awal dari dokumen." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Pencarian subfile %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Pencarian gagal." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Pencarian regexp" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Pencarian" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " tidak membedakan besar huruf" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " kebelakang" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Search string too short" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "No match" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Pencarian subfile %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Baca sebuah string dan cari itu dengan tidak membedakan besar huruf" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Baca sebuah string dan cari itu" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Baca sebuah string dan cari kebelakang untuk itu" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Ulangi pencarian terakhir dalam arah yang sama" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Tidak ada string pencarian sebelumnya" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Ulangi pencarian terakhir dalam arah terbalik" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "" "Pencarian secara interaktif untuk sebuah string seperti anda mengetikkannya" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Regexp I-search kebelakang: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-search kebelakang: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Regexp I-search: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-search: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Menggagalkan " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Batalkan operasi sekarang" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Berhenti" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "tampilkan informasi versi dan keluar" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Gambar kembali tampilan" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Berhenti menggunakan Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Jalankan perintah terikat variasi kunci huruf kecil ini" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Perintah (%s) tidak diketahui." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" tidak valid" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "`%s' tidak valid" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Tambahkan digit ini ke argumen numerik sekarang" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Awal (atau kelipatan dari 4) argumen numerik sekarang" @@ -2072,79 +2072,79 @@ msgstr "tidak ada masukan ditemukan untuk `%s'; tidak ada yang dihapus" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "tidak dapat membuka %s --css-file: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "recursion is always allowed" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "@quote-arg sudah ditinggalkan; argumen telah diquote secara baku" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s bukan sebuah kode bahasa ISO 639 yang valid" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s bukan sebuah kode bahasa ISO 639 yang valid" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s is not a valid split possibility" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "%s: tidak dapat membuka --css-file: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "error menutup berkas keluaran `%s' : %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "%s: tidak dapat membuka --css-file: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "no node to be renamed" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "nodes without a new name at the end of file" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "%s: tidak dapat membuka --css-file: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "could not protect hash character in @%s" @@ -2160,11 +2160,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "error menutup berkas keluaran `%s': %s" @@ -2184,7 +2184,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image berkas `%s' tidak dapat dibaca: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Tidak nama titik dispesifikasikan untuk perintah `%c%s'" @@ -2194,111 +2194,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image berkas `%s' (untuk HTML) tidak dapat dibaca: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "raw format %s is not converted" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "tidak dapat membuka --css-file: %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "hilang nama aksi" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "opsi tidak dikenal %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "error menutup berkas keluaran `%s': %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "string not closed in css file" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-file berakhir dalam komentar" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import not finished in css file" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS file %s not found" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "tidak dapat membuka --css-file: %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "error menutup berkas keluaran `%s': %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "tidak ada masukan indeks ditemukan untuk `%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "error menutup berkas keluaran `%s': %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "error menutup berkas keluaran `%s': %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "handler %s of stage %s priority %s failed" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "must specify a title with a title command or @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "error menutup berkas keluaran `%s': %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "Tidak ada `%s' untuk titik ini didalam dokumen ini." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "titik `%s' tidak tereferensi" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "target node (new name for `%s') not in document: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "error on closing renamed node redirection file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "empty node name" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "syntax for an external node used for `%s'" @@ -2336,7 +2336,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "Masukan untuk indeks `%s' diluar dari titik apapun" @@ -2401,287 +2401,282 @@ msgid "menu entry name should not contain `:'" msgstr "menu entry name should not contain `:'" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "empty node name after expansion `%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s makro `%s' telah didefinisikan sebelumnya" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "disini adalah definisi sebelumnya dari `%s'" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "Argumen ke @%s buruk" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "multiple @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "bad or empty @%s formal argument: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "bad syntax for @%s argument: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s membutuhkan sebuah nama" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "Argumen ke @%s buruk" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s seen before @%s closing brace" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s seen before @%s closing brace" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s hilang kurung penutup" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s missing closing delimiter sequence: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx should not begin @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx must follow @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s has text but no @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' diduga `%s', tetapi terlihat `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s seen before @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "Tidak cocok `%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "Salah tempat %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "Tidak cocok `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "Makro `%s' dipanggil di baris dengan terlalu banyak args" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "@%s hilang kurung penutup" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Makro `%s' dipanggil di baris dengan terlalu banyak args" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "\\ dalam @%s ekspansi makro diikuti oleh `%s' daripada nama parameter \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "hilang nama aksi @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "missing category for @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "Argumen ke @%s: %s buruk" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "berkas kosong" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "Argumen ke @%s buruk" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "Argumen ke @%s buruk" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s membutuhkan sebuah argumen: peformat untuk %c item" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "command @%s not accepting argument in brace should not be on @%s line" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: opsi `--%s' tidak mengijinkan sebuah argumen" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "%s: hilang argumen berkas." -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "Indeks `%s' tidak diketahui" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Argumen ke @%s: %s buruk %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "Argumen ke @%s: %s buruk" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: tidak dapat membuka --css-file: %s %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "encoding `%s' is not a canonical texinfo encoding" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nama pengkodean `%s' tidak diketahui" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s after the first element" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s tidak berarti diluar lingkungan `@titlepage'" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s should not be associated with @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node precedes @%s, but parts may not be associated with nodes" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "Tidak ada menu dalam titik `%s'." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "empty node name in menu entry" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "%s: tidak dapat membuka --css-file: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s should only appear at a line beginning" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro `%s' telah didefinisikan sebelumnya" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "disini adalah definisi sebelumnya dari `%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "redefining Texinfo language command: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s without associated character" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" "@%s defined with zero or more than one argument should be invoked with {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2690,426 +2685,426 @@ "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "recursive call of macro %s is not allowed; use @rmacro if needed" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "accent command `@%s' must not be followed by whitespace" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" "Gunakan kurung untuk memberi sebuah perintah sebagai sebuah argumen ke @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s diduga `i' atau `j' sebagai sebuah argumen, bukan `%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "accent command `@%s' must not be followed by new line" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s diduga kurung" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "opsi tidak terdefinisi: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "bad syntax for @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s sudah ditinggalkan" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s sudah ditinggalkan %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s should only appear at a line beginning" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s tidak berarti didalam blok `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s should only appear in heading or footing" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s tidak berarti didalam blok `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s: berkas kosong" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab before @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "Terlalu banyak kolom dalam multitable item (maksimal %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "mengabaikan @tab diluar dari multitabel" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s outside of table or list" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "Harus berada dalam lingkungan `@%s' untuk menggunakan `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s tidak berarti diluar lingkunga `@titlepage' dan `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory after first node" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "Catatan %s kaki didalam catatan kaki %s tidak diijinkan" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry after first node" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s terlihat sebelum @node pertama, membuat titik `Top'" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "mungkin titik @top anda seharusnya wrapped dalam @ifnottex daripada @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s should only appear in math context" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "Perintah `%s' tidak diketahui" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "Diduga @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s tidak berarti diluar lingkungan `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s should be right below `@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "ignoring multiple @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "command @%s does not accept arguments" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "command @%s missing a node or external manual argument" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "in @%s empty cross reference name after expansion `%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "in @%s empty cross reference title after expansion `%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image hilang argumen nama berkas" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s: hilang argumen berkas." -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "Argumen ke @%s: %s buruk" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "superfluous arguments for node" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "Diduga `%s'" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "" "@%s Gunakan kurung untuk memberi sebuah perintah sebagai sebuah argumen ke @" "%s" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "Argumen ke @%s: %s buruk" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "" "Gunakan kurung untuk %s memberi sebuah perintah sebagai sebuah argumen ke @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "empty @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "column fraction not a number: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp arg harus berupa numerik, bukan `%s'." -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "reserved index name %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "Indeks `%s' tidak diketahui %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "unknown destination index in @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s leads to a merging of %s in itself, ignoring" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "Indeks `%s' tidak diketahui dalam @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, fuzzy, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "printing an index `%s' merged in another one `%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex before document beginning: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s arg harus berupa numerik, bukan `%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Hanya @%s 10 atau 11 yang didukung, bukan `%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "@%s: --footnote-style arg harus berupa `separate' atau `end', bukan `%s'." -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s arg harus berupa numerik, bukan `%s'." -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "--paragraph-indent arg harus berupa numerik/`none'/`asis', bukan `%s'." -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "--paragraph-indent arg harus berupa numerik/`none'/`asis', bukan `%s'." -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "--paragraph-indent arg harus berupa numerik/`none'/`asis', bukan `%s'." -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "Diduga @%s on atau off, bukan `%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "--footnote-style arg harus berupa `separate' atau `end', bukan `%s'." -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "--footnote-style arg harus berupa `separate' atau `end', bukan `%s'." -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "raising the section level of @%s which is too low" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "no chapter-level command before @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "lowering the section level of @%s appearing after a lower element" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "no sectioning command associated with @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, fuzzy, perl-format msgid "@%s not empty" msgstr "@%s: berkas kosong" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "@%s referensi ke titik yang tidak ada `%s' (mungkin pembagian tidak benar?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s entry node name `%s' different from %s name `%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "titik `%s' tidak tereferensi" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "node `%s' is %s for `%s' in sectioning but not in menu" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "node %s `%s' in menu `%s' and in sectioning `%s' differ" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "node `%s' is %s for `%s' in menu but not in sectioning" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s pointer `%s' (for node `%s') different from %s name `%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "titik `%s' tidak tereferensi `%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "Titik `%s' kurang item menu untuk `%s' dariapda target Up nya" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "for `%s', up in menu `%s' and up `%s' don't match" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s to `%s', different from %s name `%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "empty index key in @%s" @@ -3636,17 +3631,17 @@ "insert_nodes_for_sectioning_commands transformation return no result. No " "section?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: error on closing %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: mengabaikan keluaran link internal kedua `%s'. %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: tidak dapat membuka %s --css-file: %s\n" @@ -3975,6 +3970,9 @@ #~ msgid "@%s should only appear at beginning or end of document" #~ msgstr "@%s should only appear at beginning or end of document" +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s should not be associated with @top" + #~ msgid "Usage: makeinfo [OPTION]... TEXINFO-FILE...\n" #~ msgstr "Penggunaan: [OPSI]... BERKAS-TEXINFO...\n" diff --git a/po/it.gmo b/po/it.gmo index 52953b5..abb6101 100644 Binary files a/po/it.gmo and b/po/it.gmo differ diff --git a/po/it.po b/po/it.po index 2e3e417..c335fd6 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 5.1.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2013-09-20 13:31+0200\n" "Last-Translator: Francesco Groccia \n" "Language-Team: Italian \n" @@ -389,42 +389,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Nessuna voce di menù «%s» nel nodo «%s»." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Impossibile trovare il nodo «%s»." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "numero non valido: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "errore nell'assegnamento della variabile: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: variabile inesistente" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "il valore %s non è valido per la variabile %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Usare «--help» per maggiori informazioni.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -439,12 +439,12 @@ "Questo è software libero: siete liberi di modificarlo e ridistribuirlo.\n" "Non c'è ALCUNA GARANZIA, per quanto consentito dalle leggi vigenti.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "nessuna voce dell'indice trovata per «%s»\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -455,7 +455,7 @@ "\n" "Legge la documentazione nel formato Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -474,7 +474,7 @@ "FILE.\n" " -f, --file=FILE specifica il file Info da visitare." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -489,17 +489,17 @@ "visitato.\n" " -o, --output=FILE salva i nodi selezionati nel file FILE." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly compatibilità con il sintetizzatore vocale." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -518,7 +518,7 @@ " -x, --debug=NUMERO imposta il livello di debug (-1 per --" "tutto).\n" -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -537,7 +537,7 @@ "Tutti gli argomenti restanti sono considerati come nomi di voci di menù\n" "relativi al nodo iniziale visitato." -#: info/info.c:1129 +#: info/info.c:1131 #, fuzzy msgid "" "\n" @@ -547,7 +547,7 @@ "Per un riepilogo delle associazioni dei tasti, digitare «h» all'interno di " "Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -578,7 +578,7 @@ " info -f ./foo.info mostra il file «./foo.info» senza cercare la " "cartella" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -588,75 +588,75 @@ "per domande generali e discussioni: help-texinfo@gnu.org.\n" "Sito web di Texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Impossibile trovare il nodo «(%s)%s»." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Impossibile trovare una finestra!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Il cursore non appare nel nodo di questa finestra!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Impossibile eliminare l'ultima finestra." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Nessun menù in questo nodo." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Nessun piè di pagina in questo nodo." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Nessun riferimento incrociato in questo nodo." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Nessun puntatore a «%s» per questo nodo." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Comando Info «%c» sconosciuto; usare «?» per l'aiuto." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Il tipo di terminale «%s» non è in grado di avviare il programma Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Sei già all'ultima pagina di questo nodo." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Questa è già la prima pagina del nodo corrente." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Solo una finestra." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "La finestra risultante sarebbe troppo piccola." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1466,191 +1466,191 @@ msgid "Using literal strings for searches" msgstr "Usa il testo letterale nelle ricerche." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Ricerca continuata a partire dalla fine del documento." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Ricerca continuata a partire dall'inizio del documento." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Cerca il subfile %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Ricerca fallita." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Cerca espressione regolare" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Cerca" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " distingue maiuscole/minuscole" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " indietro" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Stringa di ricerca troppo breve" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Nessuna corrispondenza" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Cerca il subfile %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Leggi e cerca un testo (distinguendo le lettere maiuscole/minuscole)" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Leggi e cerca un testo" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Leggi un testo e cerca all'indietro" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Ripeti l'ultima ricerca nella stessa direzione" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Nessun testo di ricerca precedente" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Ripeti l'ultima ricerca nella direzione opposta" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Cerca interattivamente un testo durante la digitazione" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Ricerca incrementale all'indietro mediante espressione regolare: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Ricerca incrementale all'indietro: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Ricerca incrementale mediante espressione regolare: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Ricerca incrementale: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Fallita " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Annulla l'operazione corrente" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Esci" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "mostra le informazioni di versione ed esce" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Ridisegna lo schermo" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Esci dal programma Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Esegui il comando associato alla variante minuscola di questo tasto" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Comando sconosciuto (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" non è valido" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "«%s» non è valido" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Aggiungi questa cifra all'argomento numerico attuale" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Inizia (o moltiplica per quattro) l'argomento numerico attuale" @@ -2079,79 +2079,79 @@ msgstr "nessuna voce trovata per «%s»; nulla da eliminare" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "impossibile aprire %s per la scrittura: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "la ricorsione è sempre accettata" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "gli argomenti vengono quotati come predefinito" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s non è un codice di lingua valido" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s non è un codice di regione valido" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s non è una valida possibilità di divisione" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "impossibile leggere %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "errore durante la chiusura del file @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: impossibile trovare %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "nessun nodo da rinominare" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "nodi senza un nuovo nome alla fine del file" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "impossibile aprire %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "impossibile proteggere il carattere hash in @%s" @@ -2167,11 +2167,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "errore durante la chiusura di %s: %s" @@ -2191,7 +2191,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "file @image «%s» non trovato, verrà usato «%s»" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Nessun nome di nodo specificato per il comando «%c%s»" @@ -2201,114 +2201,114 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "file immagine «%s» (per il formato HTML) non trovato, verrà usato «%s»" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "il formato grezzo %s non è convertito" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" "impossibile aprire il file di configurazione dei riferimenti HTML %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "tipo mancante" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "tipo non riconosciuto: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "" "errore durante la chiusura del file di configurazione dei riferimenti HTML " "%s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "stringa non chiusa nel file CSS" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "l'opzione «--css-include» termina con un commento" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import non terminato nel file CSS" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "file CSS %s non trovato" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "impossibile aprire --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "errore durante la chiusura del file CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "nessuna voce htmlxref.cnf trovata per «%s»" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "errore durante la chiusura del file frame %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "errore durante la chiusura del file TOC frame %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "gestore %s dello stage %s con priorità %s fallito" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "è necessario specificare un titolo con un comando «title» o @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "errore durante la chiusura del file del nodo di redirezione %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "il vecchio nome per «%s» è un nodo del documento" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "file vuoto per il nodo rinominato «%s»" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "il nodo di riferimento (nuovo nome per «%s») non è nel documento: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "errore durante la chiusura del file dei nodi rinominato %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "nome del nodo vuoto" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "sintassi per un nodo esterno usata per «%s»" @@ -2347,7 +2347,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "voce per l'indice «%s» non presente in alcun nodo" @@ -2413,295 +2413,290 @@ msgid "menu entry name should not contain `:'" msgstr "il nome della voce del menù non dovrebbe contenere «:»" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "nome del nodo vuoto dopo l'espansione «%s»" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s «%s» già definita precedentemente" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "ecco la definizione precedente come @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "argomento vuoto in @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "@%s multiplo" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "argomento formale @%s errato o vuoto: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "sintassi errata per l'argomento @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s richiede un nome" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "nome errato per @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s visto prima delle parentesi di chiusura @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s visto prima delle parentesi di chiusura @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s parentesi di chiusura mancante" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "sequenza di delimitazione di chiusura mancante in @%s: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx non dovrebbe iniziare @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx deve seguire @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s ha testo ma non @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "" "«@end» si aspettava il carattere «%s», ma è stato letto il carattere «%s»" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s visto prima di @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "nessun corrispondente «%cend %s»" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "%c fuori luogo" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "«%c%s» senza corrispondenza" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "macro «%s» chiamata con troppi argomenti" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "@%s parentesi di chiusura mancante" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" "la macro «%s» dichiarata senza argomenti è stata chiamata con un argomento" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "\\ nell'espansione della macro @%s seguita da «%s» anziché dal nome del " "parametro oppure \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "nome mancante per @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "categoria mancante per @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "argomento inaspettato nella riga @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "multitabella vuota" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "argomento superfluo per @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "argomento errato per @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s richiede un argomento: formattatore per %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "il comando @%s che non accetta argomento in parentesi graffe, non dovrebbe " "essere sulla riga @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "" "il comando per accentare «@%s» non è stato accettato come argomento @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "argomento mancante per @%s" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "@end %s sconosciuto" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "argomento superfluo per @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "argomento errato per @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: impossibile aprire %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "la codifica «%s» non è una codifica texinfo canonica" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "il nome «%s» non corrisponde ad alcun nome di codifica" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s dopo il primo elemento" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s ha senso solo su una riga @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s non dovrebbe essere associato con @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node precede @%s, ma alcune parti potrebbero non essere associati con dei " "nodi" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "nome della voce del menù vuoto in «%s»" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "nome nodo vuoto nella voce di menù" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s non dovrebbe apparire in @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s dovrebbe apparire solo a inizio riga" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "macro «%s» già definita precedentemente" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "ecco la definizione precedente di «%s»" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "ridefinizione del comando del linguaggio Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s senza carattere associato" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" "@%s definito con zero o più di un argomento dovrebbe essere invocato con {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2710,433 +2705,433 @@ "troppe chiamate a macro annidate (impostare MAX_NESTED_MACROS per ignorare; " "valore attuale %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "chiamata ricorsiva della macro %s non accettata; usare @rmacro se necessario" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "il comando per accentare «@%s» non deve essere seguito da spazi" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "usa le parentesi graffe per dare un comando come argomento a @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s si aspettava «i» o «j» come argomento, non «%s»" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" "il comando per accentare «@%s» non deve essere seguito da una nuova riga" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s si aspettava le parentesi graffe" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "indicatore non definito: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "sintassi errata per @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s è obsoleto." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s è obsoleto; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s dovrebbe apparire solo a inizio riga" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s non accettato all'interno del blocco «@%s»" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s dovrebbe apparire solo in intestazione o a piè di pagina" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s è privo di significato all'interno del blocco «@%s»" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s nella multitabella vuota" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab prima di @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "troppe colonne nell'elemento multitabella (massimo %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignora @tab fuori della multitabella" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s fuori da tabella o lista" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "deve essere dopo «@%s» per usare «@%s»" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "@%s è privo di significato al difuori degli ambienti «@titlepage» e " "«@quotation»" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory dopo il primo nodo" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "regione %s all'interno della regione %s non permessa" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry dopo il primo nodo" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s visto prima del primo @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "forse, il nodo @top dovrebbe essere sotto un blocco @ifnottex piuttosto che " "sotto @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s dovrebbe apparire solo in contesti matematici" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "comando «%s» sconosciuto" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "@ inaspettato" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s non è significativo al difuori dell'ambiente «@float»" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s dovrebbe essere subito sotto «@float»" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "@%s multipli ignorati" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "il comando @%s non accetta argomenti" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "nodo o argomento manuale esterno mancante per il comando @%s" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "nome del riferimento incrociato vuoto in @%s dopo l'espansione «%s»" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "titolo del riferimento incrociato vuoto in @%s dopo l'espansione «%s»" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image non ha riferimento ad alcun file" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "primo argomento mancante per @%s" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "argomento errato per @%s: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "argomenti superflui per il nodo" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "si aspettava @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s dovrebbe accettare solo un @-comando come argomento, non «%s»" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "argomento restante sulla riga @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "comando d'ambiente %s come argomento per @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "@%s vuoto" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "la frazione di colonna non è un numero: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "l'argomento @sp deve essere un numero, non «%s»" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "nome indice %s riservato" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "indice sorgente sconosciuto in @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "indice di destinazione sconosciuto in @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s porta %s a unirsi in se stesso, ignorato" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "indice «%s» sconosciuto in @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, fuzzy, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "stampa di un indice «%s» unito in un altro indice «%s»" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex prima dell'inizio del documento: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "l'argomento @%s deve essere «top» o «bottom», non «%s»" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Solo @%s \"10\" o \"11\" è supportata, non «%s»" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "l'argomento @%s deve essere «separate» o «end», non «%s»" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "l'argomento @%s deve essere «on», «off» oppure «odd», non «%s»" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "l'argomento @paragraphindent deve essere numerico/«none»/«asis», non «%s»" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "l'argomento @firstparagraphindent deve essere «none» o «insert», non «%s»" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "l'argomento @exampleindent deve essere numerico/«asis», non «%s»" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "si aspettava la lettura @%s \"on\" oppure \"off\", non «%s»" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "l'argomento @kbdinputstyle deve essere «code»/«example»/«distinct», non «%s»" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "l'argomento @allowcodebreaks deve essere «true» o «false», non «%s»" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "l'argomento @urefbreakstyle deve essere «after»/«before»/«none», non «%s»" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "il livello della sezione di @%s che è troppo basso verrà alzato" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "nessun comando a livello di capitolo prima di @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "il livello della sezione di @%s che appare dopo un elemento più basso verrà " "abbassato" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "nessun comando di sezionamento associato con @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, fuzzy, perl-format msgid "@%s not empty" msgstr "@%s nella multitabella vuota" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%s si riferisce al nodo inesistente «%s»" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s nome del nodo della voce di menù «%s» diverso dal nome %s «%s»" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nodo «%s» non referenziato" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "il nodo «%s» è %s per «%s» nel sezionamento, ma non nel menù" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "i nodi %s «%s» nel menù «%s» e nel sezionamento «%s» sono diversi" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "il nodo «%s» è %s per «%s» nel menù, ma non nel sezionamento" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "il puntatore %s «%s» (per il nodo «%s») è diverso dal nome %s «%s»" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s si riferisce all'inesistente «%s»" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "il nodo «%s» non ha alcuna voce di menù per «%s», nonostante sia destinata " "ad «Up»" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "per «%s», «Up» nel menù «%s» e «%s» «Up» non coincidono" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s a «%s», diverso dal nome %s «%s»" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "chiave indice vuota in @%s" @@ -3709,18 +3704,18 @@ "La trasformazione insert_nodes_for_sectioning_commands non ha restituito " "alcun risultato. Nessuna sezione?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: errore durante la chiusura %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" "%s: errore durante la chiusura del file dei collegamenti interni %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: impossibile aprire %s per la scrittura: %s\n" @@ -4057,6 +4052,9 @@ #~ msgid "@%s should only appear at beginning or end of document" #~ msgstr "@%s dovrebbe apparire solo all'inizio o alla fine del documento" +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s non dovrebbe essere associato con @top" + #~ msgid "Usage: makeinfo [OPTION]... TEXINFO-FILE...\n" #~ msgstr "Uso: makeinfo [OPZIONE]... FILE-TEXINFO...\n" diff --git a/po/ja.gmo b/po/ja.gmo index fd061c9..d87fcf8 100644 Binary files a/po/ja.gmo and b/po/ja.gmo differ diff --git a/po/ja.po b/po/ja.po index e6fc3b2..c50abae 100644 --- a/po/ja.po +++ b/po/ja.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: texinfo 5.1.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2014-11-07 08:03+0000\n" "Last-Translator: Yasuaki Taniguchi \n" "Language-Team: Japanese \n" @@ -390,42 +390,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "メニューアイテム `%s' ã¯ãƒŽãƒ¼ãƒ‰ `%s' 中ã«ã¯ã‚ã‚Šã¾ã›ã‚“" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "`%s' ノードãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, fuzzy, c-format msgid "invalid number: %s\n" msgstr "無効ãªæ•°: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "é–“é•ã£ãŸå½¢å¼ã®å¤‰æ•°ä»£å…¥: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: ãã®ã‚ˆã†ãªå¤‰æ•°ã¯ã‚ã‚Šã¾ã›ã‚“" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "変数 %s ã¯å¤‰æ•° %s ã®å€¤ã¨ã—ã¦ã¯ç„¡åŠ¹ã§ã™" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "詳ã—ã㯠--help オプションを試ã—ã¦ã¿ã¦ãã ã•ã„。\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -440,12 +440,12 @@ "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "`%s' ã«å¯¾ã™ã‚‹é …ç›®ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -456,7 +456,7 @@ "\n" "Info å½¢å¼ã®æ–‡æ›¸ã‚’読ã¿ã¾ã™ã€‚\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -473,7 +473,7 @@ " --dribble=FILENAME FILENAME ã«ãƒ¦ãƒ¼ã‚¶ãƒ¼å…¥åŠ›ã‚’ä¿å­˜ã™ã‚‹ã€‚\n" " -f, --file=FILENAME å‚ç…§ã™ã‚‹ Info ファイルを指定ã™ã‚‹ã€‚" -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -486,16 +486,16 @@ " -n, --node=NODENAME Info ファイルã§æœ€åˆã«é–‹ãノードを指定ã™ã‚‹ã€‚\n" " -o, --output=FILE é¸æŠžã—ãŸãƒŽãƒ¼ãƒ‰ã‚’ FILE ã«å‡ºåŠ›ã™ã‚‹ã€‚" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly 音声åˆæˆå™¨ã«å¯¾ã™ã‚‹è¦ªå’Œæ€§ã‚’高ã‚る。" -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -513,7 +513,7 @@ " -x, --debug=NUMBER デãƒãƒƒã‚°ãƒ¬ãƒ™ãƒ«ã‚’設定ã™ã‚‹ (-1 ã¯å…¨ã¦)。\n" "\n" -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -530,7 +530,7 @@ "ã¦è¡¨ç¤ºã—ã¾ã™ã€‚残りã®å¼•æ•°å…¨ã¦ã¯å‚ç…§ã•ã‚Œã‚‹åˆæœŸãƒŽãƒ¼ãƒ‰ã®ç›¸å¯¾çš„ãªãƒ¡ãƒ‹ãƒ¥ãƒ¼\n" "é …ç›®ã®åå‰ã¨ã—ã¦æ‰±ã‚ã‚Œã¾ã™ã€‚" -#: info/info.c:1129 +#: info/info.c:1131 #, fuzzy msgid "" "\n" @@ -539,7 +539,7 @@ "\n" "キー設定ã®è¦ç´„ã«ã¤ã„ã¦ã¯ Info 内㧠h を入力ã—ã¦ãã ã•ã„。" -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -570,7 +570,7 @@ " info -f ./foo.info dir を検索ã™ã‚‹ä»£ã‚ã‚Šã« ./foo.info ファイルを表示" "ã™ã‚‹" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -582,75 +582,75 @@ "一般的ãªè³ªå•ã‚„議論㯠help-texinfo@gnu.org ã«é€£çµ¡ã—ã¦ãã ã•ã„。\n" "Texinfoホームページ: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "`(%s)%s' ノードãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "ウィンドウãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãƒŽãƒ¼ãƒ‰å†…ã«ãƒã‚¤ãƒ³ãƒˆãŒç¾ã‚Œã¾ã›ã‚“ï¼" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "最後ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã¯å‰Šé™¤ã§ãã¾ã›ã‚“" -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "ã“ã®ãƒŽãƒ¼ãƒ‰ã«ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã¯ã‚ã‚Šã¾ã›ã‚“。" -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "ã“ã®ãƒŽãƒ¼ãƒ‰ã«è„šæ³¨ã¯ã‚ã‚Šã¾ã›ã‚“。" -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "ã“ã®ãƒŽãƒ¼ãƒ‰ã«ç›¸äº’å‚ç…§ã¯ã‚ã‚Šã¾ã›ã‚“。" -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "ã“ã®ãƒŽãƒ¼ãƒ‰ã® `%s' ãƒã‚¤ãƒ³ã‚¿ãŒã‚ã‚Šã¾ã›ã‚“。" -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "ä¸æ˜Žãª Info コマンド `%c' ã§ã™ã€‚`?' ã§ãƒ˜ãƒ«ãƒ—ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "端末タイプ `%s' 㯠Info ãŒå‹•ä½œã™ã‚‹ãŸã‚ã®æ©Ÿèƒ½ãŒã‚ã‚Šã¾ã›ã‚“。" -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "ã“ã“ã¯ã‚‚ã†ã€ã“ã®ãƒŽãƒ¼ãƒ‰ã®æœ€çµ‚ページã§ã™ã€‚" -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "ã“ã“ã¯ã‚‚ã†ã€ã“ã®ãƒŽãƒ¼ãƒ‰ã®æœ€åˆã®ãƒšãƒ¼ã‚¸ã§ã™ã€‚" -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "唯一ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã§ã™ã€‚" -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "çµæžœã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒå°ã•ã™ãŽã¾ã™ã€‚" -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1444,191 +1444,191 @@ msgid "Using literal strings for searches" msgstr "検索ã§æ–‡å­—列リテラルãã®ã‚‚ã®ã‚’使用ã™ã‚‹ã€‚" -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "文書ã®æœ€å¾Œã‹ã‚‰æ¤œç´¢ã‚’継続ã™ã‚‹ã€‚" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "文書ã®æœ€åˆã‹ã‚‰æ¤œç´¢ã‚’継続ã™ã‚‹ã€‚" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "副ファイル %s を探ã—ã¦ã„ã¾ã™ ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "検索ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "æ­£è¦è¡¨ç¾æ¤œç´¢" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "検索" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " 大文字å°æ–‡å­—ã®åŒºåˆ¥ã‚’ã¤ã‘ã¦" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "後方" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "一致ã—ã¾ã›ã‚“" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "副ファイル %s を探ã—ã¦ã„ã¾ã™ ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "文字列を読ã¿ã€å¤§æ–‡å­—å°æ–‡å­—ã®åŒºåˆ¥ã‚’ã¤ã‘ã¦æ¤œç´¢ã™ã‚‹" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "文字列を読んã§æ¤œç´¢ã™ã‚‹" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "文字列を読んã§å¾Œæ–¹æ¤œç´¢ã™ã‚‹" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "åŒä¸€æ–¹å‘ã§æœ€å¾Œã®æ¤œç´¢ã‚’ç¹°ã‚Šè¿”ã™" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "å‰ã®æ¤œç´¢æ–‡å­—列ãŒã‚ã‚Šã¾ã›ã‚“" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "逆方å‘ã§æœ€å¾Œã®æ¤œç´¢ã‚’ç¹°ã‚Šè¿”ã™" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "入力ã—ãŸæ–‡å­—列ã®å¯¾è©±çš„ãªæ¤œç´¢" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "æ­£è¦è¡¨ç¾é€æ¬¡å¾Œæ–¹æ¤œç´¢: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "é€æ¬¡å¾Œæ–¹æ¤œç´¢: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "æ­£è¦è¡¨ç¾é€æ¬¡æ¤œç´¢: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "é€æ¬¡æ¤œç´¢: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "失敗 " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "ç¾åœ¨ã®æ“作を中止ã™ã‚‹" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "終了" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示ã—ã¦çµ‚了ã™ã‚‹" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "ç”»é¢ã‚’å†æç”»ã™ã‚‹" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Info ã®ä½¿ç”¨ã‚’終了ã™ã‚‹" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "ã“ã®ã‚­ãƒ¼ã®å°æ–‡å­—ã«å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸã‚³ãƒžãƒ³ãƒ‰ã‚’実行ã™ã‚‹" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "ä¸æ˜Žãªã‚³ãƒžãƒ³ãƒ‰ (%s) ã§ã™ã€‚" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" ã¯ç„¡åŠ¹ã§ã™" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "`%s' ã¯ç„¡åŠ¹ã§ã™" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "ç¾åœ¨ã®æ•°å€¤å¼•æ•°ã«ã“ã®æ•°å€¤ã‚’加ãˆã‚‹" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "ç¾åœ¨ã®æ•°å€¤å¼•æ•°ã‚’開始(ã¾ãŸã¯ 4 å€ã™ã‚‹)" @@ -2051,80 +2051,80 @@ msgstr "`%s' é …ç›®ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ -- 何も削除ã—ã¾ã›ã‚“ã§ã—ãŸ" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: --css-file %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 #, fuzzy msgid "arguments are quoted by default" msgstr "@quote-arg ã¯å»ƒæ­¢ã•ã‚Œã¾ã—ãŸã€‚引数ã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§å¼•ç”¨ç¬¦ã§ããられã¾ã™" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s ã¯æœ‰åŠ¹ãªè¨€èªžã‚³ãƒ¼ãƒ‰ã§ã¯ã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s ã¯æœ‰åŠ¹ãªåœ°åŸŸã‚³ãƒ¼ãƒ‰ã§ã¯ã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, fuzzy, perl-format msgid "%s is not a valid split possibility" msgstr "%u ã¯å¦¥å½“ãªé€šçŸ¥ ID ã§ã¯ã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr " @FILE オプションを FILE ã‹ã‚‰èª­ã¿è¾¼ã‚€\n" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "@%s: `%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: --css-file %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2140,11 +2140,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "%(service)s on %(device)s" @@ -2164,7 +2164,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image ファイル `%s' ãŒèª­ã‚ã¾ã›ã‚“: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "" @@ -2173,115 +2173,115 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image ファイル `%s' (HTML 用) ãŒèª­ã‚ã¾ã›ã‚“: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "ファイル `%s' を削除ã§ãã¾ã›ã‚“: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "設定ファイルã®æ¬ è½ã€‚" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "èªè­˜ã§ããªã„åž‹ã§ã™: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "ファイル `%s' を削除ã§ãã¾ã›ã‚“: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 #, fuzzy msgid "string not closed in css file" msgstr "文字列ã®æ¯”較ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-include ãŒã‚³ãƒ¡ãƒ³ãƒˆå†…ã§çµ‚了ã—ã¦ã„ã¾ã™" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, fuzzy, perl-format msgid "CSS file %s not found" msgstr "css ファイル %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: --css-file %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "ファイルクローズエラー" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "`%s' ã«å¯¾ã™ã‚‹é …ç›®ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "ã“ã®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆã§ã¯ã€ã“ã®ãƒŽãƒ¼ãƒ‰ã® `å‰' ã‚„ `上' ã¯ã‚ã‚Šã¾ã›ã‚“。" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "å‚ç…§ã•ã‚Œã¦ã„ãªã„ノード `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, fuzzy, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 #, fuzzy msgid "empty node name" msgstr "èªè­˜ã§ããªã„エミュレーションå `%s' ã§ã™" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2321,7 +2321,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "`%s' 見出ã—é …ç›®ãŒã‚らゆるノードã®å¤–å´ã«ã‚ã‚Šã¾ã™" @@ -2388,287 +2388,282 @@ msgid "menu entry name should not contain `:'" msgstr "ノード `%s' ã«ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, fuzzy, perl-format msgid "empty node name after expansion `%s'" msgstr "ノード `%s' ã«ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s `%s' ã¯ä»¥å‰ã«å®šç¾©ã•ã‚Œã¦ã„ã¾ã™" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "ã“ã“ã¯ã€`%s' ã®å‰ã®å®šç¾©ã§ã™" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, fuzzy, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "引数 `%3$s' ã«å¯¾ã—㦠%1$s%2$s ãŒç„¡åŠ¹ã§ã™" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, fuzzy, perl-format msgid "bad syntax for @%s argument: %s" msgstr "引数 `%3$s' ã«å¯¾ã—㦠%1$s%2$s ãŒç„¡åŠ¹ã§ã™" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s ã«ã¯åå‰ãŒå¿…è¦ã§ã™" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "エミュレーションモードåãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, fuzzy, perl-format msgid "@end %s seen before @%s closing brace" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, fuzzy, perl-format msgid "@%s seen before @%s closing brace" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "é–‰ã˜ã‚‹ä¸­æ‹¬å¼§ã®ãªã„ %c%s" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' ã«ã¯ `%s' ãŒå¿…è¦ã§ã™ãŒã€`%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, fuzzy, perl-format msgid "@%s seen before @end %s" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "`%cend %s' ã¨ã®å¯¾å¿œãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "é–“é•ã£ãŸä½ç½®ã« %c ãŒã‚ã‚Šã¾ã™" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "`%c%s' ã¨ã®å¯¾å¿œãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "マクロ `%s' 呼ã³å‡ºã—ã®å¼•æ•°ãŒå¤šã™ãŽã¾ã™" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "設定ファイルã®æ¬ è½ã€‚" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "マクロ `%s' ã¯å¼•æ•°ãªã—ã§å®£è¨€ã•ã‚Œã€å¼•æ•°ã‚’ã¤ã‘ã¦å‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "後ã‚ã« `%s' ãŒç¶šãマクロ展開内ã§ãƒ‘ラメータåã§ã¯ãªã \\ ãŒã‚ã‚Šã¾ã™" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "エミュレーションモードåãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, fuzzy, perl-format msgid "missing category for @%s" msgstr "設定ファイルã®æ¬ è½ã€‚" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "@%s ã«å¯¾ã™ã‚‹èª¤ã£ãŸå¼•æ•°ã§ã™: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: 空ã®ãƒ•ã‚¡ã‚¤ãƒ«" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "%s: --auto/-a オプションã«å¯¾ã—ã¦ä¸å½“ãªå¼•æ•°\n" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "@%s ã«å¯¾ã™ã‚‹èª¤ã£ãŸå¼•æ•°ã§ã™" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s ã«ã¯å¼•æ•°ãŒå¿…è¦ã§ã™: %citem ã‚’æ•´å½¢ã™ã‚‹ãŸã‚" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: オプション `--%s' ã¯å¼•æ•°ãŒä¸è¦ã§ã™\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "設定ファイルã®æ¬ è½ã€‚" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "終了インデックス" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "%s: --auto/-a オプションã«å¯¾ã—ã¦ä¸å½“ãªå¼•æ•°\n" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "@%s ã«å¯¾ã™ã‚‹èª¤ã£ãŸå¼•æ•°ã§ã™: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "èªè­˜ã§ããªã„エンコードå `%s' ã§ã™" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "`@titlepage' 環境ã®å¤–å´ã§ã¯ @%s ã¯æ„味ãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "ノード `%s' ã«ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 #, fuzzy msgid "empty node name in menu entry" msgstr "èªè­˜ã§ããªã„エミュレーションå `%s' ã§ã™" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: --css-file %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "行頭ã¾ã§ã‚’切りå–ã‚‹" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "マクロ `%s' ã¯ä»¥å‰ã«å®šç¾©ã•ã‚Œã¦ã„ã¾ã™" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "ã“ã“ã¯ã€`%s' ã®å‰ã®å®šç¾©ã§ã™" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, fuzzy, perl-format msgid "@%s without associated character" msgstr "エスケープ文字内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, fuzzy, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2677,438 +2672,438 @@ "マクロ呼ã³å‡ºã—ã®ãƒã‚¹ãƒˆãŒæ·±ã™ãŽã¾ã™(MAX_NESTED_MACROS を設定ã—ã¦ä¸Šé™ã‚’変更ã§ã" "ã¾ã™; ç¾åœ¨ã¯ %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, fuzzy, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "%s: オプション `--%s' ã¯å¼•æ•°ãŒä¸è¦ã§ã™\n" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "@%s ã¸ã®å¼•æ•°ã¨ã—ã¦ã‚³ãƒžãƒ³ãƒ‰ã‚’与ãˆã‚‹ã«ã¯ã€ãƒ–レースを使ã„ã¾ã—ょã†" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s 㯠`%s' ã§ã¯ãªãã€`i' ã‹ `j' を引数ã¨ã—ã¦å¿…è¦ã¨ã—ã¾ã™" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, fuzzy, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "%s: オプション `--%s' ã¯å¼•æ•°ãŒä¸è¦ã§ã™\n" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s ã«ã¯ä¸­æ‹¬å¼§ãŒäºˆæœŸã•ã‚Œã¾ã™" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "定義ã•ã‚Œã¦ã„ãªã„フラグ: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 #, fuzzy msgid "bad syntax for @value" msgstr "引数 `%3$s' ã«å¯¾ã—㦠%1$s%2$s ãŒç„¡åŠ¹ã§ã™" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s ã¯å»ƒæ­¢äºˆå®š (ã¾ãŸã¯å»ƒæ­¢æ¸ˆã¿) ã§ã™ã€‚" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s ã¯å»ƒæ­¢äºˆå®š (ã¾ãŸã¯å»ƒæ­¢æ¸ˆã¿) ã§ã™; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "行頭ã¾ã§ã‚’切りå–ã‚‹" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "`@%2$s' ブロックã®å†…å´ã§ã¯ `@%1$s' ã¯æ„味ãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "`@%2$s' ブロックã®å†…å´ã§ã¯ `@%1$s' ã¯æ„味ãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 #, fuzzy msgid "@tab before @item" msgstr "ãƒã‚§ãƒƒã‚¯ãƒ»ãƒ¡ãƒ‹ãƒ¥ãƒ¼é …ç›®" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "マルãƒãƒ†ãƒ¼ãƒ–ル項目内ã®ã‚«ãƒ©ãƒ æ•°ãŒå¤šã™ãŽã¾ã™(最大 %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "マルãƒãƒ†ãƒ¼ãƒ–ルã®å¤–å´ã® @tab を無視ã—ã¾ã™" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "`@%2$s' を使用ã™ã‚‹ãŸã‚ã«ã¯ `@%1$s' 環境ã§ãªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s 㯠`@titlepage' ãŠã‚ˆã³ `@quotation' 環境ã®å¤–å´ã§ã¯æ„味ãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "脚注ã«è„šæ³¨ã‚’å«ã‚ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@menu ãŒæœ€åˆã® @node 以å‰ã«ç¾ã‚Œã¾ã—ãŸã€‚`Top' ノードをã¤ãã‚Šã¾ã™" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "多分 @top ノード㯠@ifinfo より㯠@ifnottex ã«è¦†ã‚れるã¹ãã§ã¯ï¼Ÿ" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "ä¸æ˜Žãªã‚³ãƒžãƒ³ãƒ‰ `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "予期ã•ã‚Œãªã„ @ ã§ã™" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "`@float' 環境ã®å¤–å´ã§ã¯ @%s ã¯æ„味ãŒã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, fuzzy, perl-format msgid "command @%s does not accept arguments" msgstr "%s: オプション `--%s' ã¯å¼•æ•°ãŒä¸è¦ã§ã™\n" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image ã«ãƒ•ã‚¡ã‚¤ãƒ«åãŒä¸Žãˆã‚‰ã‚Œã¦ã„ã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "設定ファイルã®æ¬ è½ã€‚" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "@%s ã«å¯¾ã™ã‚‹èª¤ã£ãŸå¼•æ•°ã§ã™: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 #, fuzzy msgid "superfluous arguments for node" msgstr "%2$s ã«å¯¾ã™ã‚‹å¼•æ•° %1$s ãŒæ›–昧ã§ã™" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "終了インデックス" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s ã¸ã®å¼•æ•°ã¨ã—ã¦ã‚³ãƒžãƒ³ãƒ‰ã‚’与ãˆã‚‹ã«ã¯ã€ãƒ–レースを使ã„ã¾ã—ょã†" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "@%s ã«å¯¾ã™ã‚‹èª¤ã£ãŸå¼•æ•°ã§ã™: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "@%s ã¸ã®å¼•æ•°ã¨ã—ã¦ã‚³ãƒžãƒ³ãƒ‰ã‚’与ãˆã‚‹ã«ã¯ã€ãƒ–レースを使ã„ã¾ã—ょã†" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, fuzzy, perl-format msgid "column fraction not a number: %s" msgstr "iconv 関数ãŒä½¿ãˆã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: %s 引数㯠`%s' ã§ã¯ãªãã¦ã€æ•°å€¤ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, fuzzy, perl-format msgid "reserved index name %s" msgstr "èªè­˜ã§ããªã„エミュレーションå `%s' ã§ã™" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "ä¸æ˜Žãªã‚¨ã‚¹ã‚±ãƒ¼ãƒ— '\\%c' ãŒæ–‡å­—列内ã«ã‚ã‚Šã¾ã™ã€‚無視ã•ã‚Œã¾ã—ãŸ" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, fuzzy, perl-format msgid "unknown destination index in @%s: %s" msgstr "ä¸æ˜Žãªç´¢å¼• `%s' ã§ã™" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "@printindex ã«ä¸æ˜Žãªè¦‹å‡ºã— `%s' ãŒã‚ã‚Šã¾ã™" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: %s 引数㯠`%s' ã§ã¯ãªãã¦ã€æ•°å€¤ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "@%s 10 ã¾ãŸã¯ 11 ãŒã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã™ã€‚`%s' ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: --footnote-style 引数㯠`%s' ã§ã¯ãªãã€`separate' åˆã¯ `end' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: %s 引数㯠`%s' ã§ã¯ãªãã¦ã€æ•°å€¤ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: --paragraph-indent 引数㯠`%s' ã§ã¯ãªãã€æ•°å€¤/`none'/`asis' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: --paragraph-indent 引数㯠`%s' ã§ã¯ãªãã€æ•°å€¤/`none'/`asis' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: --paragraph-indent 引数㯠`%s' ã§ã¯ãªãã€æ•°å€¤/`none'/`asis' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, fuzzy, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s 㯠on ã¾ãŸã¯ off ãŒäºˆæœŸã•ã‚Œã¾ã™ã€‚`%s' ã§ã¯ã‚ã‚Šã¾ã›ã‚“" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: --footnote-style 引数㯠`%s' ã§ã¯ãªãã€`separate' åˆã¯ `end' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: --footnote-style 引数㯠`%s' ã§ã¯ãªãã€`separate' åˆã¯ `end' ã§ãªã‘ã‚Œã°\n" " ãªã‚Šã¾ã›ã‚“。\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, fuzzy, perl-format msgid "no sectioning command associated with @%s" msgstr "ホストåã«ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒå‰²ã‚Šå½“ã¦ã‚‰ã‚Œã¦ã„ã¾ã›ã‚“" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, fuzzy, perl-format msgid "@%s not empty" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "%s ã¯å­˜åœ¨ã—ãªã„ノード `%s' ã‚’å‚ç…§ã—ã¦ã„ã¾ã™ (æ­£ã—ããªã„セクション付ã‘ã‚’ã—ã¦ã„" "ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, fuzzy, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "åå‰ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ: %s" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "å‚ç…§ã•ã‚Œã¦ã„ãªã„ノード `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s ã¯å­˜åœ¨ã—ãªã„ `%s' ã‚’å‚ç…§ã—ã¦ã„ã¾ã™" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "ノード `%s' ã«ã¯ 上ä½é …ç›®ãŒã‚ã‚‹ã®ã«ã€`%s' ã¸ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚¢ã‚¤ãƒ†ãƒ ã‚’欠ã„ã¦ã„ã¾ã™" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, fuzzy, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "åå‰ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ: %s" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, fuzzy, perl-format msgid "empty index key in @%s" msgstr "コメント内ã§ãƒ•ã‚¡ã‚¤ãƒ«çµ‚端 (EOF) ã«é”ã—ã¾ã—ãŸ" @@ -3642,17 +3637,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, fuzzy, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%(service)s on %(device)s" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, fuzzy, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "出力ファイル `%s' ã‚’é–‰ã˜ã‚‹éš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: --css-file %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“" diff --git a/po/nb.gmo b/po/nb.gmo index 1abc25c..4b62042 100644 Binary files a/po/nb.gmo and b/po/nb.gmo differ diff --git a/po/nb.po b/po/nb.po index f741559..b6e95c8 100644 --- a/po/nb.po +++ b/po/nb.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: texinfo 6.1.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-01-22 20:47+0100\n" "Last-Translator: Johnny A. Solbu \n" "Language-Team: Norwegian Bokmaal \n" @@ -387,42 +387,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Ingen menypunkt «%s» i noden «%s»." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Kan ikke finne noden «%s»." -#: info/info.c:437 +#: info/info.c:439 #, fuzzy, c-format msgid "No program name given" msgstr "Intet programnavn oppgitt." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "ugyldig nummer: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "feilformet verditildeling: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: ingen slik variabel" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "verdi %s er ikke gyldig for variabel %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Prøv --help for mer informasjon.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -437,12 +437,12 @@ "Dette er gratis programvare: du er fri til Ã¥ endre og redistribuere det.\n" "Det er INGEN GARANTI, i den grad loven tillater.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "ingen oppføringer funnet for «%s»\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -453,7 +453,7 @@ "\n" "Les dokumentasjonen i Info-format.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -470,7 +470,7 @@ " -- dribble=FILNAVN huske brukerens tastetrykk i FILNAVN.\n" " -f, -- file=FILNAVN angi Infofilen som skal besøkes." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -485,16 +485,16 @@ "Infofil.\n" " -o, - output=FIL utvalgte noder til FILNAVN." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly vær vennlig ovenfor talesynteser.." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -511,7 +511,7 @@ " -w, --where, --location vise fysisk plassering av Info-fil.\n" " -x, --debug=NUMBER sett feilsøkingsnivÃ¥ (-1 for alle)\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -529,7 +529,7 @@ "Eventuelle gjenværende argumenter blir behandlet som navnene pÃ¥\n" "menyelementene i forhold til den opprinnelig besøkte noden." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -537,7 +537,7 @@ "\n" "For en oppsummering av sentrale bindinger, trykk «H» i Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -569,7 +569,7 @@ " info --subnodes -o ut.txt emacs dump hele bruksanvisningen til ut.txt\n" " info -f ./foo.info vise filen ./foo.info, søker ikke katalogen" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -579,75 +579,75 @@ "generelle spørsmÃ¥l og diskusjoner til help-texinfo@gnu.org.\n" "Websiden for Texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Kan ikke finne noden «(%s)%s»." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Kan ikke finne et vindu!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Markøren vises ikke innen dette vinduets node!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Kan ikke slette det siste vinduet." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Ingen meny i denne noden." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Ingen fotnoter i denne noden." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Ingen kryssreferanser i denne noden." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Ingen «%s»-peker for denne noden." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Ukjent Info-kommando «%c»; prøv «?» for hjelp." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminaltypen «%s» er ikke smart nok til Ã¥ kjøre Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Du er allerede pÃ¥ den siste siden av denne noden." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Du er allerede pÃ¥ den første siden til denne noden." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Bare et vindu." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Resulterende vindu ville blitt for lite." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Ikke nok plass for et hjelpevindu, vennligst slett et vindu." @@ -1441,192 +1441,192 @@ msgid "Using literal strings for searches" msgstr "Bruk bokstavelige strenger til søking." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Søket fortsatte fra slutten av dokumentet." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Søk fortsatte fra begynnelsen av dokumentet." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Søker i delfil «%s»..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Søk mislyktes" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Regexp-søk" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Søke" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "skiller mellom store og smÃ¥ bokstaver " -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "bakover" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Søkestrengen er for kort" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "GÃ¥r tilbake til siste treff fra %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Ingen flere treff." -#: info/session.c:4577 +#: info/session.c:4574 #, fuzzy msgid "Search this node and subnodes for a string" msgstr "Søk i denne noden og under-noder etter en streng." #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Søker i delfil «%s»..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "GÃ¥ til neste treff i Info-undertréet" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Ingen aktive søk" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "GÃ¥ til forige treff i Info-undertréet" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" "Lese inn en streng og søke etter den med skille pÃ¥ store og smÃ¥ bokstaver" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Lese inn en streng og søke etter den" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Lese inn en streng og søke bakover etter den" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Gjenta forrige søk i samme retning" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Ingen tidligere søkestreng" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Gjenta forrige søk i motsatt retning" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Tøm viste søketreff" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Søke interaktivt for en streng mens du skriver" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Regexp I-søk bakover: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-søk bakover: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Regexp I-søk: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-søk: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Mislyktes " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Avbryte gjeldende operasjon" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Avbrutt" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Vis hvilken info-versjon som kjøres" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info versjon %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Tegne skjermen pÃ¥ nytt" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Avslutte Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Kjør kommandoen knyttet til denne tastens «liten-bokstav-variant»" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Ukjent kommando (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "«%s» er ugyldig" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "«%s» er ugyldig" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Legge til dette siffret til det gjeldende numeriske argumentet" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Starte (eller multiplisere med 4) den gjeldende numeriske argumentet" @@ -2034,79 +2034,79 @@ msgstr "fant ingen oppføringer for «%s»; ingenting slettet" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "kunne ikke Ã¥pne %s for skriving: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rekursjon er alltid tillatt" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumenter siteres som standard" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s er ikke en gyldig sprÃ¥kkode" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s er ikke en gyldig sprÃ¥kkode" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "Kunne ikke lese %s: %s." -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "Feil ved lukking av @verbatiminclude-fil %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: kan ikke finne %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "Kunne ikke Ã¥pne %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2122,11 +2122,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "Feil ved lukking av %s: %s" @@ -2146,7 +2146,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image-fil «%s» ikke funnet, bruker «%s»" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "ingen argument spesifisert for @U" @@ -2155,111 +2155,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image-fil «%s» (for HTML) ikke funnet, bruker «%s»" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "kunne ikke Ã¥pne html-referansefilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "manglende type" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "ukjent type: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "feil ved lukking av html-referansefilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-file endte i en kommentar" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "kunne ikke Ã¥pne --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "Feil ved lukking av CSS-filen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "ingen htmlxref.cnf-oppføring funnet for «%s»" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "Feil ved lukking av rammefil %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "Feil ved lukking av TOC-rammefil %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "Feil ved lukking av omdirigeringsnodenfilen %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "gammelt navn for «%s» er en node for dokumentet" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "fil tom for omdøpt node «%s»" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2297,7 +2297,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "oppføring for indeksen «%s» utenfor enhver node" @@ -2362,707 +2362,702 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s «%s» er tidligere definert" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "her er den tidligere definisjonen av @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "tomt argument i @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "flere @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s krever et navn" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "dÃ¥rlig navn for @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s mangler avsluttende krøllparentes" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' forventet «%s», men sÃ¥ «%s»" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "Ingen tilsvarende «%cend %s»" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "feilplassert %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "umatchet «%c%s»" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makroen «%s» kalt med for mange argumenter" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s mangler avsluttende krøllparentes" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makroen «%s» deklarert uten argument kalt med et argument" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ i @%s ekspansjon fulgt av «%s» istedet for parameternavn eller \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "mangler navn for @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "uventet argument pÃ¥ @%s linje: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "tom multitabell" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "overflødig argument til @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "ugyldig argument til @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s krever et argument: formattereren for %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "dialekt-kommando «@%s» ikke tillatt som @%s-argument" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s mangler argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "ukjent @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "overflødig argument til @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "dÃ¥rlig argument til @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: kunne ikke Ã¥pne %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "ugjenkjennelig kodingsnavn «%s»" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s er kun meningsfull i en @multitable-linje" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "tomt menyoppføringsnavn i noden «%s»." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "%s bør ikke forekomme i @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s bør bare forekomme ved begynnelsen av en linje" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makroen «%s» er tidligere definert" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "her er den tidligere definisjonen av «%s»" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "bruk krøllparenteser for Ã¥ gi en kommando som et argument til @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s forventer «i» eller «j» som argument, ikke «%s»" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s forventet krøllparanteser" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "udefinert valg: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s er foreldet." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s er foreldet: %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s bør bare forekomme ved begynnelsen av en linje" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s er ikke tillat i en «@%s»-blokk" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s er meningsløs innenfor en «@%s»-blokk" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s i tom multitabell" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "for mange kolonner i multitabell-element (maks %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignorerer @tab utenfor multitabell" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "MÃ¥ være etter «@%s» for Ã¥ bruke «@%s»" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s gir ikke mening utenfor «@titlepage»- og «@quotation»-miljøer" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "region %s inne i region %s er ikke tillatt" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s sett før første @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "kanskje burde din @top-node bli pakket inn i @ifnottex istedet for @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "ukjent kommando «%s»." -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "uventet @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s er meningsløs utenfor et «@float»-miljø" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image mangler filnavn" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s mangler første argument" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "ikke-heksadesimale sifre i argument for @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "Forventet @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s bør kun akseptere en @-kommando som argument, ikke «%s»" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "resterende argument pÃ¥ @%s linje %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "miljø-kommando %s som argument til @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp-argument mÃ¥ være numerisk, ikke «%s»" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "Ukjent kildeindeks i %s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "Ukjent indeks «%s» i @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s-argument mÃ¥ være «top» eller «bottom», ikke «%s»" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Kun @%s 10 eller 11 er støttet, ikke «%s»" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s-argument mÃ¥ være «separate» eller «end», ikke «%s»" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s-argument mÃ¥ være «on», «off» eller «odd», ikke «%s»" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "@paragraphindent-argument mÃ¥ være numerisk/«none»/«asis», ikke «%s»" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "@firstparagraphindent-argument mÃ¥ være numerisk/«none»/«asis», ikke «%s»" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "@exampleindent-argument mÃ¥ være numerisk/«asis», ikke «%s»" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "forventet @%s pÃ¥ eller av, ikke «%s»" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "@allowcodebreaks-argument mÃ¥ være «true» eller «false», ikke «%s»" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "@urefbreakstyle-argument mÃ¥ være «after»/«before»/«none», ikke «%s»" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s ikke tom" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s referanse til ikke-eksisterende node «%s»" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "ureferert node «%s»" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s referanse til ikke-eksisterende «%s»" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "Noden «%s» mangler et menypunkt for «%s» til tross for at den er dens oppmÃ¥l" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3600,17 +3595,17 @@ "insert_nodes_for_sectioning_commands-transformasjon returnerte ingen " "resultater. Ingen seksjon?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: feil ved lukking av %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: feil ved lukking av intern lenkefil %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: kunne ikke Ã¥pne %s for skriving: %s\n" diff --git a/po/nl.gmo b/po/nl.gmo index e5a51f4..23f0cd0 100644 Binary files a/po/nl.gmo and b/po/nl.gmo differ diff --git a/po/nl.po b/po/nl.po index 392d45f..ea0d9de 100644 --- a/po/nl.po +++ b/po/nl.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: texinfo-6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-22 09:57+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -396,42 +396,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Er is geen menu-item '%s' op pagina '%s'." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Kan pagina '%s' niet vinden." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Geen programmanaam gegeven." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "ongeldig aantal: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "ongeldige toekenning aan variabele: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: onbekende variabele" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "waarde %s is niet geldig voor variabele %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Gebruik '--help' voor meer informatie.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -446,12 +446,12 @@ "zie http://gnu.org/licenses/gpl.html voor de volledige tekst.\n" "Er is GEEN GARANTIE, voor zover de wet dit toestaat.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "geen index-items gevonden voor '%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -462,7 +462,7 @@ "\n" "Documentatie in Info-opmaak lezen.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -478,7 +478,7 @@ "'INFOPATH'\n" " -f, --file=HANDLEIDING het te bekijken Info-bestand" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -491,17 +491,17 @@ " -n, --node=PAGINANAAM een te bezoeken pagina\n" " -o, --output=BESTAND de gekozen pagina's naar dit bestand schrijven" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" " -O, --show-options, --usage de pagina met de commandoregelopties tonen" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly uitvoer toesnijden op spraaksynthesizers" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -513,7 +513,7 @@ " --version versie-informatie tonen en stoppen\n" " -w, --where, --location het volledige pad van het Info-bestand tonen" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -530,7 +530,7 @@ "Eventuele overige argumenten worden steeds begrepen als het te kiezen\n" "menu-item in de op dat moment bereikte pagina." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -538,7 +538,7 @@ "\n" "Voor een overzicht van de commandotoetsen in 'info', typ hoofdletter 'H'." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -575,7 +575,7 @@ "dumpen\n" " info -f ./foo.info het bestand './foo.info' tonen" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -586,67 +586,67 @@ "en opmerkingen over de vertaling naar .\n" "De Texinfo-webpagina is: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Kan pagina '(%s)%s' niet vinden." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Kan geen venster vinden!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Het punt bevindt zich niet in de pagina van dit venster!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Het laatste venster kan niet gesloten worden." -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Er is geen menu op deze pagina." -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Er zijn geen voetnoten op deze pagina." -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Er zijn geen kruisverwijzingen op deze pagina." -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Er is geen '%s'-koppeling op deze pagina." -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Onbekend Info-commando '%c'; typ '?' voor hulp." -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminaltype '%s' is niet krachtig genoeg voor Info." -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "U bent al aan het eind van deze pagina." -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "U bent al aan het begin van deze pagina." -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Er is slechts één venster." -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Het resulterende venster zou te klein zijn." -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Niet genoeg ruimte voor een hulpvenster; sluit een venster." @@ -1447,191 +1447,191 @@ msgid "Using literal strings for searches" msgstr "Zoeken gebruikt letterlijke tekst." -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Het zoeken is verdergegaan vanaf het einde." -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Het zoeken is verdergegaan vanaf het begin." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Zoeken naar subbestand %s..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Niet gevonden." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [\"%s\"]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Zoeken naar expressie" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Zoeken" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " (hooflettergevoelig)" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " (achterwaarts)" # FIXME: huh? -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Zoektekenreeks is te kort." -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Terugkerend naar de laatste overeenkomst in '%s'." -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Geen verdere overeenkomsten." -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Deze pagina en subpagina's doorzoeken naar een tekenreeks" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Zoeken onder '%s': " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Naar de volgende overeenkomst in de Info-subboom gaan" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Er is geen actieve zoekopdracht." -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Naar de voorgaande overeenkomst in de Info-subboom gaan" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Een tekenreeks lezen en er hoofdlettergevoelig naar zoeken" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Een tekenreeks lezen en er naar zoeken" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Een tekenreeks lezen en er achterwaarts naar zoeken" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "De laatste zoekopdracht in dezelfde richting herhalen" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Geen eerdere zoektekenreeks." -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "De laatste zoekopdracht in tegenovergestelde richting herhalen" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Getoonde zoekresultaten wissen" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Naar een tekenreeks zoeken terwijl u deze intypt" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Achterwaarts typend-zoeken naar expressie: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Achterwaarts typend-zoeken: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Typend-zoeken naar expressie: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Typend-zoeken: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "*Ongevonden* " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Huidige operatie annuleren" # Dit is een reactie op bovenstaande 'Cancel current operation'. -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Geannuleerd" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "De versie van Info tonen" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info, versie %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Het venster opnieuw schrijven" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Info afsluiten" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" "Commando uitvoeren dat behoort bij de kleinelettervariant van deze toets" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Onbekend commando (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" is ongeldig." -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' is ongeldig." -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Dit cijfer toevoegen aan het huidige numerieke argument" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "" "Een nieuw numeriek argument beginnen (of het huidige met 4 vermenigvuldigen)" @@ -2049,31 +2049,31 @@ msgstr "geen items voor '%s' gevonden; er is niets verwijderd" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "kan %s niet openen om te schrijven: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "recursie is altijd toegestaan" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumenten hebben standaard aanhalingstekens" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "verplaats uw @contents-commando als u de inhoudsopgave na de titelpagina wilt" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2081,50 +2081,50 @@ "verplaats uw @shortcontents- en @contents-commando's als u de inhoudsopgave " "na de titelpagina wilt" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s is geen geldige taalcode" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s is geen geldige regiocode" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s is geen geldige splitsmogelijkheid" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "kan %s niet lezen: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "fout bij sluiten van '@verbatiminclude'-bestand %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: kan %s niet vinden" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "geen pagina om te hernoemen" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "pagina's zonder nieuwe naam aan einde van bestand" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "kan %s niet openen: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "kan hekje in @%s niet beschermen" @@ -2140,11 +2140,11 @@ msgstr "%s: uitvoer is incompatibel met splitsing" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "fout bij sluiten van %s: %s" @@ -2164,7 +2164,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image-bestand '%s' is niet gevonden; '%s' wordt gebruikt" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "geen argument opgegeven voor @U" @@ -2174,114 +2174,114 @@ msgstr "@image-bestand '%s' (voor HTML) is niet gevonden; '%s' wordt gebruikt" # XXX Zet ook elders "ruw" om naar "rauw". -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "rauwe opmaak %s is niet omgezet" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "kan instellingenbestand %s voor HTML-referenties niet openen: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "ontbrekend type" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "onbekend type: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "fout bij sluiten van instellingenbestand %s voor HTML-referenties: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "tekenreeks niet afgesloten in CSS-bestand" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "'--css-include' eindigt in commentaar" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "'@import' is niet afgesloten in CSS-bestand" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS-bestand %s is niet gevonden" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "kan '--include-file'-bestand %s niet openen: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "fout bij sluiten van CSS-bestand %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "geen 'htmlxref.cnf'-item gevonden voor '%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "fout bij sluiten van frames-bestand %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "fout bij sluiten van TOC-frames-bestand %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "verwerker %s van fase %s, prioriteit %s, is gestruikeld" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "een 'title'-commando en '@top' vereisen een titel" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "fout bij sluiten van %s, bestand met doorverwijzende pagina's: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "oude naam van '%s' is een pagina in het document" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "bestand is leeg voor hernoemde pagina '%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "doelpagina (nieuwe naam voor '%s') zit niet in document: %s" # XXX Is het node of nodes? -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "fout bij sluiten van %s, bestand met doorverwijzingen van hernoemde " "pagina's: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "lege paginanaam" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "syntax voor een externe pagina is gebruikt voor '%s'" @@ -2319,7 +2319,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Index-item in @%s met ':' produceert ongeldige Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "item voor index '%s' valt buiten alle pagina's" @@ -2384,289 +2384,284 @@ msgid "menu entry name should not contain `:'" msgstr "menu-itemnaam hoort geen ':' te bevatten" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "lege paginanaam na expansie '%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s '%s' is al eerder gedefinieerd" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "hier was de eerdere definitie van @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "leeg argument in @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "meerdere @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "onjuist of leeg formeel argument van @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "onjuiste syntax voor argument van @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s vereist een naam" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "foute naam voor @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s gevonden vóór sluitaccolade van @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s gevonden vóór sluitaccolade van @%s" # XXX Maybe "closing brace"? And "is missing a" or ":"? -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s: ontbrekende sluitaccolade" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s: afsluitende scheidingstekens ontbreken: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx hoort niet aan begin van @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx hoort na @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s bevat tekst maar geen @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "'@end' verwachtte '%s', maar vond '%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s gevonden vóór @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "geen overeenkomende '%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "verkeerd geplaatste %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "ongepaarde '%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "macro '%s' wordt aangeroepen met te veel argumenten" # XXX Maybe "closing brace"? And "is missing a" or ":"? -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s: ontbrekende sluitaccolade" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" "macro '%s' die gedeclareerd is zonder argumenten wordt aangeroepen met een " "argument" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" "'\\' in @%s-expansie werd gevolgd door '%s' in plaats van een parameternaam " "of '\\'" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "ontbrekende naam voor @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "ontbrekende categorie voor @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "onverwacht argument op @%s-regel: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "lege multitabel" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "overtollig argument van @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "fout argument van @%s" # FIXME: formatter? -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s vereist een argument: de formatteerder voor %c-item" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "commando @%s dat geen argumenten in accolades accepteert hoort niet op een @" "%s-regel" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "accentcommando '@%s' is niet toegestaan als argument van @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s: ontbrekend argument" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "onbekende @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "overtollig argument van @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "fout argument van @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: kan %s niet openen: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "codering '%s' is geen kanonieke Texinfo-codering" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "onbekende coderingsnaam '%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s na het eerste element" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s is alleen zinvol op een '@multitable'-regel" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s hoort niet gerelateerd te zijn aan @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node gevonden vóór @%s, maar delen mogen niet gerelateerd zijn aan pagina's" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "lege menu-itemnaam in '%s'" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "lege paginanaam in menu-item" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s hoort niet voor te komen in @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s hoort alleen voor te komen aan begin van regel" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "macro '%s' is al eerder gedefinieerd" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "hier was de eerdere definitie van '%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "herdefiniëren van Texinfo-commando: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s zonder gerelateerd teken" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" @@ -2674,7 +2669,7 @@ "een @%s gedefinieerd met nul argumenten of meer dan één argument hoort " "aangeroepen te worden met {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2683,433 +2678,433 @@ "macroaanroep is te diep genest (pas eventueel MAX_NESTED_MACROS aan; huidige " "waarde is %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "recursieve aanroep van macro %s is niet toegestaan; gebruik indien nodig " "'@rmacro'" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "na accentcommando '@%s' hoort geen witruimte te komen" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "gebruik '{...}' om een commando als argument mee te geven aan @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s verwacht 'i' of 'j' als argument, niet '%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "na accentcommando '@%s' hoort geen nieuwe regel te komen" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s verwachtte '{...}'" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "ongedefinieerde vlag: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "onjuiste syntax voor @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s is verouderd." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s is verouderd; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s hoort alleen voor te komen aan begin van regel" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s is niet toegestaan in een '@%s'-blok" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s hoort alleen voor te komen in kop- of voetregel" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s is zinloos in een '@%s'-blok" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s in een lege multitabel" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab vóór @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "te veel kolommen in multitabel-item (maximaal %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "@tab buiten een multitabel wordt genegeerd" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s buiten tabel of lijst" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "moet na '@%s' zijn om '@%s' te kunnen gebruiken" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s is niet zinvol buiten '@titlepage'- en '@quotation'-omgevingen" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory na eerste pagina" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "regio %s binnen regio %s is niet toegestaan" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry na eerste pagina" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu in ongeldige context" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s gevonden vóór de eerste @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "uw @top-pagina moet mogelijk ingepakt worden in @ifnottex in plaats van " "@ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s hoort alleen voor te komen in mathematische context" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "onbekend commando '%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "onverwachte @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s is niet zinvol buiten een '@float'-omgeving" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s hoort direct onder '@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "meerdere @%s worden genegeerd" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "commando @%s accepteert geen argumenten" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" "bij commando @%s ontbreekt een paginanaam of een extern handleidingsargument" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "een lege kruisverwijzingsnaam in @%s na expansie '%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "een lege kruisverwijzingstitel in @%s na expansie '%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "ontbrekend bestandsnaamargument van @image" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "bij @%s ontbreekt eerste argument" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "niet-hexadecimale cijfers in argument van @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "minder dan vier hexadecimale cijfers in argument van @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "argument van @U overschrijdt Unicode-maximum 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "overtollige argumenten voor pagina" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "verwachtte @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s hoort alleen een @-commando als argument te accepteren, niet '%s'" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "overblijvend argument op @%s-regel: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "omgevingscommando %s is gebruikt als argument van @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "lege @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "Kolomfractie is geen getal: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "Argument van @sp moet numeriek zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "gereserveerde indexnaam %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "onbekende bronindex in @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "onbekende doelindex in @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" "@%s zou leiden tot het samenvoegen van %s met zichzelf -- wordt genegeerd" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "onbekende index '%s' in @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "afdrukken van een index '%s' samengevoegd met een andere, '%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "afdrukopdracht vóór begin van document: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "Argument van @%s moet 'top' of 'bottom' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Bij @%s is alleen 10 of 11 mogelijk, niet '%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "Argument van @%s moet 'separate' of 'end' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "Argument van @%s moet 'on' of 'off' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "Argument van @paragraphindent moet numeriek, 'none' of 'asis' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "Argument van @firstparagraphindent moet 'none' of 'insert' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "Argument van @exampleindent moet numeriek of 'asis' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "bij @%s werd 'on' of 'off' verwacht, niet '%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "Argument van @kbdinputstyle moet 'code', 'example' of 'distinct' zijn, niet " "'%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "Argument van @allowcodebreaks moet 'true of 'false' zijn, niet '%s'" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "Argument van @urefbreakstyle moet 'after', 'before' of 'none' zijn, niet '%s'" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "verhoging van sectioneringsniveau van @%s, want te laag" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "er is geen hoofdstuksniveaucommando vóór @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "verlaging van sectioneringsniveau van @%s verschijnt na een lager element" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "er is geen sectioneringscommando gerelateerd aan @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s is niet leeg" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s verwijst naar niet-bestaande pagina '%s'" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s-paginanaam '%s' verschilt van %s-naam '%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "naar pagina '%s' wordt niet verwezen" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "pagina '%s' is %s voor '%s' in de sectionering maar niet in het menu" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "pagina %s '%s' in menu '%s' en in sectionering '%s' verschillen" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "pagina '%s' is %s voor '%s' in het menu maar niet in de sectionering" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s-pointer '%s' (voor pagina '%s') verschilt van %s-naam '%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s verwijst naar niet-bestaande '%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "pagina '%s' bevat geen menu-item voor '%s'\n" "ondanks dat de eerste het 'Up'-doel van de laatste is" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "bij '%s' komen 'Up' in menu '%s' en 'Up %s' niet overeen" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s naar '%s', verschilt van %s-naam '%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "lege indexsleutel in @%s" @@ -3663,20 +3658,23 @@ "Transformatie 'insert_nodes_for_sectioning_commands()' leverde geen " "resultaat af. Geen sectie?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: fout bij sluiten van %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: fout bij sluiten van %s, bestand met interne koppelingen: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: kan %s niet openen om te schrijven: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s hoort niet gerelateerd te zijn aan @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/pl.gmo b/po/pl.gmo index 278a065..12a7aa3 100644 Binary files a/po/pl.gmo and b/po/pl.gmo differ diff --git a/po/pl.po b/po/pl.po index 501f1ba..017dd33 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-19 17:05+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -388,42 +388,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Brak elementu menu '%s' w węźle '%s'" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Nie znaleziono wÄ™zÅ‚a '%s'" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Nie podano nazwy programu" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "bÅ‚Ä™dna liczba: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "źle sformuÅ‚owane przypisanie zmiennej: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: brak zmiennej" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "wartość %s nie jest prawidÅ‚owa dla zmiennej %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "WiÄ™cej informacji można uzyskać przez --help.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -439,12 +439,12 @@ "rozpowszechniać.\n" "Nie ma Å»ADNEJ GWARANCJI w zakresie dopuszczalnym przez prawo.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "nie znaleziono wpisów w indeksie dla '%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -455,7 +455,7 @@ "\n" "PrzeglÄ…danie dokumentacji w formacie Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -470,7 +470,7 @@ " -d, --directory=KATALOG dodanie KATALOGU do INFOPATH\n" " -f, --file=PODRĘCZNIK okreÅ›lenie podrÄ™cznika Info do odwiedzenia" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -484,15 +484,15 @@ "Info\n" " -o, --output=PLIK zapis wybranych wÄ™złów do PLIKU" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr " -O, --show-options, --usage przejÅ›cie do wÄ™zÅ‚a opcji linii poleceÅ„" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly tryb przyjazny dla syntezatorów mowy" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -505,7 +505,7 @@ "zakoÅ„czenie\n" " -w, --where, --location wyÅ›wietlenie fizycznego poÅ‚ożenia pliku Info" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -524,7 +524,7 @@ "wzglÄ™dem\n" "poczÄ…tkowo odwiedzonego wÄ™zÅ‚a." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -532,7 +532,7 @@ "\n" "Opis dziaÅ‚ania klawiszy jest dostÄ™pny pod H w Info." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -567,7 +567,7 @@ " info -f ./foo.info pokazanie pliku ./foo.info bez szukania w " "katalogu" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -577,67 +577,67 @@ "bug-texinfo@gnu.org, a ogólne pytania i dyskusjÄ™ na help-texinfo@gnu.org.\n" "Strona domowa texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Nie znaleziono wÄ™zÅ‚a '(%s)%s'" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Nie można znaleźć okna!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Kropka nie wystÄ™puje w węźle z tego okna!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Nie można usunąć ostatniego okna" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Brak menu w tym węźle" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Brak przypisów w tym węźle" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Brak odsyÅ‚aczy w tym węźle" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Brak wskaźnika '%s' dla tego wÄ™zÅ‚a" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Nieznane polecenie Info '%c'; '?' przywoÅ‚uje pomoc" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Typ terminala '%s' nie jest wystarczajÄ…cy do uruchomienia Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "To już jest ostatnia strona tego wÄ™zÅ‚a" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "To już jest pierwsza strona tego wÄ™zÅ‚a" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Tylko jedno okno" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Wynikowe okno byÅ‚oby zbyt maÅ‚e" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Za maÅ‚o miejsca na okno pomocy, proszÄ™ usunąć okno" @@ -1431,188 +1431,188 @@ msgid "Using literal strings for searches" msgstr "Używanie dosÅ‚ownego tekstu przy wyszukiwaniu" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Kontynuacja szukania od koÅ„ca dokumentu" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Kontynuacja szukania od poczÄ…tku dokumentu" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Szukanie podpliku %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Wyszukiwanie nie powiodÅ‚o siÄ™" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Szukanie wyr.reg." -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Szukanie" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " z uwzgl. wielkoÅ›ci liter" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " wstecz" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Wyszukiwany Å‚aÅ„cuch jest zbyt krótki" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Powrót do ostatniego dopasowania z %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Nic wiÄ™cej nie pasuje" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Wyszukanie Å‚aÅ„cucha w tym węźle i podwÄ™zÅ‚ach" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Szukanie poniżej %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "PrzejÅ›cie do nastÄ™pnego dopasowania w poddrzewie Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Brak aktywnego wyszukiwania" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "PrzejÅ›cie do poprzedniego dopasowania w poddrzewie Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Odczytanie Å‚aÅ„cucha i poszukiwanie go uwzglÄ™dniajÄ…c wielkość liter" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Odczytanie Å‚aÅ„cucha i poszukiwanie go" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Odczytanie Å‚aÅ„cucha i poszukiwanie go w tyÅ‚" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Powtórzenie ostatniego poszukiwania w tym samym kierunku" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Brak poprzedniego szukanego Å‚aÅ„cucha" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Powtórzenie ostatniego poszukiwania w odwrotnym kierunku" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Wyczyszczenie wyÅ›wietlonych wyników wyszukiwania" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Interaktywne poszukiwanie Å‚aÅ„cucha w trakcie wpisywania go" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Interaktywne szukanie wyr.reg. wstecz: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Interaktywne szukanie wstecz: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Interaktywne szukanie wyr.reg.: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Interaktywne szukanie: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Bez powodzenia " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Anulowanie bieżącej operacji" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "WyjÅ›cie" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "wyÅ›wietlenie wersji uruchomionego Info" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info wersja %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Odrysowanie ekranu" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "WyjÅ›cie z Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Uruchomienie polecenia przypisanego do wariantu klawisza z maÅ‚Ä… literÄ…" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Nieznane polecenie (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" jest niepoprawne" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' jest niepoprawne" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Dodanie tej cyfry do aktualnego argumentu liczbowego" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "RozpoczÄ™cie (lub pomnożenie przez 4) aktualnego argumentu liczbowego" @@ -2026,32 +2026,32 @@ msgstr "nie znaleziono wpisów dla `%s'; nic nie usuniÄ™to" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "nie można otworzyć %s do zapisu: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "rekurencja jest zawsze dozwolona" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argumenty sÄ… domyÅ›lnie cytowane" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "proszÄ™ przenieść polecenie @contents, jeÅ›li spis treÅ›ci ma być po stronie " "tytuÅ‚owej" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2059,50 +2059,50 @@ "proszÄ™ przenieść polecenia @shortcontents oraz @contents, jeÅ›li spis treÅ›ci " "ma być po stronie tytuÅ‚owej" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s nie jest poprawnym kodem jÄ™zyka" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s nie jest poprawnym kodem regionu" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s nie jest poprawnÄ… opcjÄ… podziaÅ‚u" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "nie można odczytać %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: nie można znaleźć %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "brak wÄ™zÅ‚a do przemianowania" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "wÄ™zÅ‚y bez nowej nazwy na koÅ„cu pliku" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "nie można otworzyć %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "nie można zabezpieczyć znaku hash w @%s" @@ -2118,11 +2118,11 @@ msgstr "%s: wyjÅ›cie niezgodne z podziaÅ‚em na pliki" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "bÅ‚Ä…d podczas zamykania %s: %s" @@ -2142,7 +2142,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "Plik @image `%s' nie znaleziony, użyto `%s'" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "nie podano argumentu dla @U" @@ -2151,112 +2151,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "Plik @image `%s' (dla HTML) nie znaleziony, użyto `%s'" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "format surowy %s nie jest przekonwertowany" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "nie można otworzyć pliku konfiguracyjnego html refs %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "brak typu" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "nieznany typ: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku konfiguracyjnego html refs %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "niedomkniÄ™ty Å‚aÅ„cuch w pliku css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "plik --css-include zakoÅ„czyÅ‚ siÄ™ wewnÄ…trz komentarza" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import nie zakoÅ„czony w pliku css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "nie znaleziono pliku css %s" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "nie można otworzyć pliku --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "brak wpisu htmlxref.cnf dla `%s'" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku ramki %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku ramki TOC %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "obsÅ‚uga %s, etapu %s, priorytet %s nie powiodÅ‚a siÄ™" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "trzeba okreÅ›lić tytuÅ‚ poleceniem title lub @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "bÅ‚Ä…d podczas zamykania pliku przekierowania wÄ™złów %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "stara nazwa `%s' jest wÄ™zÅ‚em dokumentu" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "pusty plik dla przemianowanego wÄ™zÅ‚a `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "wÄ™zeÅ‚ docelowy (nowa nazwa dla `%s') nie istnieje w dokumencie: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "bÅ‚Ä…d podczas zamykania przekierowanego pliku przemianowanego wÄ™zÅ‚a %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "pusta nazwa wÄ™zÅ‚a" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "użyto skÅ‚adni wÄ™zÅ‚a zewnÄ™trznego dla `%s'" @@ -2294,7 +2294,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Wpis indeksu w @%s z : tworzy bÅ‚Ä™dny plik Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "wpis dla indeksu `%s' poza jakimkolwiek wÄ™zÅ‚em" @@ -2359,281 +2359,276 @@ msgid "menu entry name should not contain `:'" msgstr "nazwa wpisu menu nie powinna zawierać `:'" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "pusta nazwa wÄ™zÅ‚a po rozwiniÄ™ciu `%s'" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s `%s' już zostaÅ‚o zdefiniowane" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "oto poprzednia definicja jako @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "pusty argument w @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "wiele @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "niewÅ‚aÅ›ciwy lub pusty argument formalny @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "bÅ‚Ä™dna skÅ‚adnia argumentu @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s wymaga nazwy" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "niewÅ‚aÅ›ciwa nazwa dla @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s wystÄ…piÅ‚o przed nawiasem zamykajÄ…cym @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s wystÄ…piÅ‚o przed nawiasem zamykajÄ…cym @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "w %c%s brakuje klamry zamykajÄ…cej" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "Brak ograniczajÄ…cej sekwencji zamykajÄ…cej @%s: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx nie powinien zaczynać @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx musi wystÄ…pić po @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s zawiera tekst, ale nie ma @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' oczekiwaÅ‚o `%s', ale napotkano `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s wystÄ…piÅ‚o przed @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "brak pasujÄ…cego `%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "źle umieszczone %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "niedopasowane `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makro `%s' wywoÅ‚ane ze zbyt dużą liczbÄ… argumentów" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "Brak klamry zamykajÄ…cej @%s" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makro `%s' zadeklarowane bez argumentów zostaÅ‚o wywoÅ‚ane z argumentem" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "po \\ w @%s wystÄ…piÅ‚o `%s' zamiast nazwy parametru lub \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "brak nazwy dla @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "brak kategorii dla @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "nieoczekiwany argument w linii @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "puste multitable" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "nadmiarowy argument dla @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "zÅ‚y argument dla @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s wymaga argumentu: formatowania dla %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "polecenie @%s, nie przyjmujÄ…ce argumentu w klamrach, nie powinno wystÄ…pić w " "linii @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "polecenie akcentu `@%s' nie jest dozwolone jako argument @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "Brak argumentu @%s" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "nieznany @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "nadmiarowy argument dla @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "niewÅ‚aÅ›ciwy argument dla @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: nie można otworzyć pliku %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "kodowanie `%s' nie jest kanonicznym kodowaniem texinfo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nierozpoznana nazwa kodowania `%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s po pierwszym elemencie" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s ma znaczenie tylko w linii @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s nie powinno być wiÄ…zane z @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node poprzedza @%s, ale części mogÄ… nie być powiÄ…zane z wÄ™zÅ‚ami" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "pusta nazwa wpisu menu w `%s'" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "pusty wÄ™zeÅ‚ we wpisie menu" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s nie powinno wystÄ…pić w @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s powinno wystÄ…pić tylko na poczÄ…tku linii" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro `%s' już zostaÅ‚o zdefiniowane" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "oto poprzednia definicja `%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "ponowna definicja polecenia jÄ™zyka Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s bez powiÄ…zanego znaku" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" @@ -2641,7 +2636,7 @@ "@%s zdefiniowane z zerem lub wiÄ™cej niż jednym argumentem powinno być " "wywoÅ‚ywane z {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2650,429 +2645,429 @@ "za bardzo zagnieżdżone wywoÅ‚anie makra (można to zmienić przez " "MAX_NESTED_MACROS; obecna wartość %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "rekurencyjne wywoÅ‚anie makra %s nie jest dozwolone; w razie potrzeby można " "użyć @rmacro" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "po poleceniu akcentu `@%s' nie może wystÄ…pić znak biaÅ‚y" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" "należy użyć nawiasów klamrowych, aby podać polecenie jako argument dla @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s oczekuje `i' lub `j' jako argumentu, a nie `%s'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "po poleceniu akcentu `@%s' nie może wystÄ…pić nowa linia" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s oczekiwaÅ‚o nawiasów klamrowych" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "niezdefiniowana flaga: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "bÅ‚Ä™dna skÅ‚adnia dla @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s jest przestarzaÅ‚e." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s jest przestarzaÅ‚e; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s powinno wystÄ…pić tylko na poczÄ…tku linii" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s nie jest dozwolone wewnÄ…trz bloku `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s powinno wystÄ…pić tylko w nagłówku lub stopce" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s nic nie znaczy wewnÄ…trz bloku `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s w pustym multitable" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab przed @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "zbyt dużo kolumn w elemencie multitable (maksymalnie %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "zignorowano @tab poza multitable" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s poza tabelÄ… lub listÄ…" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "tylko po `@%s' można użyć `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s nic nie znaczy poza Å›rodowiskami `@titlepage' i `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory po pierwszym węźle" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "region %s wewnÄ…trz regionu %s nie jest dozwolony" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry po pierwszym węźle" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu w bÅ‚Ä™dnym kontekÅ›cie" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s napotkano przed pierwszym @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "może wÄ™zeÅ‚ @top powinien być otoczony @ifnottex, a nie @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s powinno wystÄ…pić tylko w kontekÅ›cie matematycznym" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "nieznane polecenie `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "nieoczekiwane @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s nic nie znaczy poza Å›rodowiskiem `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s powinno być zaraz poniżej `@float'" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "zigorowano wiele @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "polecenie @%s nie może mieć argumentów" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" "brak argumentu bÄ™dÄ…cego wÄ™zÅ‚em lub zewnÄ™trznym podrÄ™cznikiem w poleceniu @%s" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "pusta nazwa odwoÅ‚ania w @%s po rozwiniÄ™ciu `%s'" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "pusty tytuÅ‚ odwoÅ‚ania w @%s po rozwiniÄ™ciu `%s'" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "Po @image brakuje argumentu plikowego" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "brak pierwszego argumentu @%s" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "bÅ‚Ä™dne znaki jako cyfry szesnastkowe w argumencie dla @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "mniej niż cztery cyfry szesnastkowe w argumencie dla @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "argument dla @U przekracza maksimum dla Unicode 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "nadmiarowe argumenty dla wÄ™zÅ‚a" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "oczekiwano @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s powinno mieć tylko polecenie typu @ jako argument, a nie `%s'" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "pozostaÅ‚y argument w linii @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "polecenie Å›rodowiska %s jako argument dla @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "puste @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "szerokość kolumny nie jest liczbÄ…: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "argument @sp musi być liczbÄ…, a nie `%s'" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "zarezerwowana nazwa indeksu %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "nieznany indeks źródÅ‚owy w @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "nieznany indeks docelowy w @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s prowadzi do wÅ‚Ä…czenia %s do sanego siebie, zignorowano" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "nieznany indeks `%s' w @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "wydruk indeksu `%s' wÅ‚Ä…czony w innym, `%s'" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "polecenie printindex przed poczÄ…tkiem dokumentu: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "argumentem @%s musi być `top' lub `bottom', a nie `%s'" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "ObsÅ‚ugiwane sÄ… tylko @%s 10 lub 11, a nie `%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "argumentem @%s musi być `separate' lub `end', a nie `%s'" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "argumentem @%s musi być `on', `off' lub `odd', a nie `%s'" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "argumentem @paragraphindent musi być liczba, `none' lub `asis', a nie `%s'" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "argumentem @firstparagraphindent musi być `none' lub `insert', a nie `%s'" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "argumentem @exampleindent musi być liczba lub `asis', a nie `%s'" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "oczekiwano @%s on lub off, a nie `%s'" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "argumentem @kbdinpustyle musi być `code', `example' lub `distinct', a nie `" "%s'" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "argumentem @allowcodebreaks musi być `true' lub `false', a nie `%s'" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "argumentem @urefbreakstyle musi być `after', `before' lub `none', a nie `%s'" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "zwiÄ™kszanie poziomu sekcji @%s, który jest zbyt maÅ‚y" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "brak polecenia poziomu rozdziaÅ‚u przed @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "zmniejszanie poziomu sekcji @%s, wystÄ™pujÄ…cej po niższym elemencie" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "brak polecenia sekcjonowania zwiÄ…zanego z @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s nie jest pusty" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "odwoÅ‚anie @%s do nie istniejÄ…cego wÄ™zÅ‚a `%s'" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "nazwa wÄ™zÅ‚a wpisu @%s `%s' różni siÄ™ od nazwy %s `%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nie wskazywany wÄ™zeÅ‚ `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "wÄ™zeÅ‚ `%s' to %s dla `%s' w sekcjonowaniu, ale nie w menu" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "wÄ™zeÅ‚ %s `%s' w menu `%s' i w sekcjonowaniu `%s' sÄ… różne" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "wÄ™zeÅ‚ `%s' to %s dla `%s' w menu, ale nie w sekcjonowaniu" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "wskaźnik %s `%s' (dla wÄ™zÅ‚a `%s') różni siÄ™ od nazwy %s `%s'" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "odwoÅ‚anie %s do nie istniejÄ…cego `%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "wÄ™zeÅ‚ `%s' nie ma elementu menu dla `%s' pomimo bycia jego celem W górÄ™" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "dla `%s' wÄ™zeÅ‚ górny w menu `%s' i górny `%s' sÄ… różne" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s do `%s' różne od nazwy %s `%s'" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "pusty klucz indeksu w @%s" @@ -3641,17 +3636,20 @@ "PrzeksztaÅ‚cenie insert_nodes_for_sectioning_commands zwróciÅ‚o pusty wynik. " "Brak sekcji?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: bÅ‚Ä…d podczas zamykania %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: bÅ‚Ä…d podczas zamykania pliku odnoÅ›ników wewnÄ™trznych %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: nie można otworzyć pliku %s do zapisu: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s nie powinno być wiÄ…zane z @top" diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo index 0713814..5799d20 100644 Binary files a/po/pt_BR.gmo and b/po/pt_BR.gmo differ diff --git a/po/pt_BR.po b/po/pt_BR.po index 3ffd680..f8b8df9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-20 08:50-0300\n" "Last-Translator: Jorge Barros de Abreu \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Romanian \n" @@ -394,42 +394,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Nici un articol de meniu `%s' în nod `%s'." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Nu pot gãsi nodul `%s'." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "Seteazã valoarea unei variabile Info" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Încercaþi --help pentru informaþii suplimentare.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -439,12 +439,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "nici o intrare de index a fost gãsitã pentru `%s'\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -452,7 +452,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -461,7 +461,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -469,18 +469,18 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly fii prietenos cu sintetizatoarele de " "vorbire.\n" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -488,7 +488,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -498,13 +498,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -521,7 +521,7 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 #, fuzzy msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" @@ -533,75 +533,75 @@ "întrebãri generale ºi discuþii la help-texinfo@gnu.org.\n" "Texinfo homepage: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Nu pot gãsi nodul `(%s)%s'." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Nu pot gãsi o fereastrã!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Punctul nu apare în interiorul nodului acestei ferestre!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Nu pot ºterge ultima fereastrã." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Nici un meniu în acest nod" -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Nici o notã de subsol în acest nod." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Nici o referinþã la acelaºi pasaj în acest nod." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Nici un pointer `%s' pentru acest nod." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Comandã Info necunoscutã `%c';încercaþi `?' pentru ajutor." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminalul de tip `%s' nu e destul de deºtept sã ruleze Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Sunteþi deja la ultima paginã a acestui nod." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Sunteþi deja la prima paginã a acestui nod." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "O singurã fereastrã." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Fereastra rezultantã ar fi prea micã." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Nu e destul spaþiu pentru o fereastrã de ajutor, ºtergeþi o fereastrã." @@ -1432,194 +1432,194 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "ªterge (kill) pânã la începutul liniei" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Caut subfiºier %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Cãutare eºuatã." -#: info/session.c:4191 +#: info/session.c:4188 #, fuzzy, c-format msgid "%s%s%s [%s]: " msgstr "%s%s pentru ºir [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Cautã" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 #, fuzzy msgid " case-sensitively" msgstr " þinând cont de litere mari/mici" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 #, fuzzy msgid " backward" msgstr "Cautã înapoi" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Caut subfiºier %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Citeºte un ºir ºi cautã-l þinând cont de litere mari/mici" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Citeºte un ºir ºi cautã-l" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Citeºte un ºir ºi cautã-l înapoi" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Repetã ultima cãutare în aceeaºi direcþie" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Nici un ºir cãutat anterior" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Repetã ultima cãutare în direcþie opusã" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Cautã interactiv pentru un ºir pe mãsurã ce este introdus" -#: info/session.c:4877 +#: info/session.c:4874 #, fuzzy msgid "Regexp I-search backward: " msgstr "I-cautã înapoi: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-cautã înapoi: " -#: info/session.c:4880 +#: info/session.c:4877 #, fuzzy msgid "Regexp I-search: " msgstr "I-cautã: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-cautã: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Eºuez " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Renunþã la operaþia curentã" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Ieºi" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "afiºeazã informaþii despre versiune ºi terminã" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Redeseneazã ecranul" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Ieºi din Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Ruleazã comanda legatã de litera micã de pe tastã" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Comandã necunoscutã (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" este invalid" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "`%s' este invalid" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Adaugã aceastã cifrã la argumentul numeric curent" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Începe (sau înmulþeºte cu 4) argumentul numeric curent" @@ -1981,79 +1981,79 @@ msgstr "nici o intrare gãsitã pentru `%s'; n-am ºters nimic" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s nu este un cod de limbã valid conform ISO 639" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s nu este un cod de limbã valid conform ISO 639" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2069,11 +2069,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" @@ -2093,7 +2093,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "Fiºierul @image `%s' nu poate fi citit: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Nici un nume specificat pentru comanda `%c%s'" @@ -2103,113 +2103,113 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "Fiºierul @image `%s' (pentru HTML) nu poate fi citit: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "nume de acþiune inexistent" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s: opþiune nerecunoscutã `--%s'\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-file s-a terminat cu un comentariu" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "nici o intrare de index a fost gãsitã pentru `%s'\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "eroare la închiderea fiºierului de ieºire `%s'" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "Nici un `Prec' sau `Sus' pentru acest nod în acest document." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "nod nereferit `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2248,7 +2248,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "Intrarea pentru index-ul `%s' în afara oricãrui nod" @@ -2313,715 +2313,710 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "macro-ul `%s' definit anterior" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "aici este definiþia anterioarã a lui `%s'" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s necesitã un nume" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s lipseºte paranteza de închidere" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' a aºteptat `%s', dar a vãzut `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "Nici o potrivire %cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "%c nelalocul lui" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "`%c%s' fãrã pereche" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "Macro `%s' chemat pe linia %d cu prea multe argumente" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s lipseºte paranteza de închidere" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Macro `%s' chemat pe linia %d cu prea multe argumente" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ in expansiunea macro urmatã de `%s' în loc de nume parametru" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "nume de acþiune inexistent" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "argumentele pentru @%s ignorate" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: fiºier gol" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s necesitã un argument: formatatorul pentru %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: opþiunea `--%s' nu permite un argument\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s: lipseºte fiºierul argument.\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "Index necunoscut `%s'" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "Argument nepotrivit pentru @%s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "nume de codare nerecunoscut `%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s nu are sens în exteriorul mediului `@titlepage'" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "Nici un meniu în nod `%s'." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: nu am putut deschide --css-file: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "ªterge (kill) pânã la începutul liniei" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "macro-ul `%s' definit anterior" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "aici este definiþia anterioarã a lui `%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "Folosiþi paranteze pentru a da o comandã ca argument lui @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s aºteaptã `i' sau `j' ca argument, nu `%c'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s am aºteptat paranteze" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "marcaj nedefinit: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s este depãsit" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s este depãsit" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "ªterge (kill) pânã la începutul liniei" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s nu are sens în interiorul blocului `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s nu are sens în interiorul blocului `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s: fiºier gol" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "Prea multe coloane în articol multitabel (max %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignor @tab în afara multitabelului" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "Trebuie sã fiþi în mediul `@%s' pentru a folosi `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s nu are sens în exteriorul mediilor `@titlepage' ºi `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "Nu sun permise note de subsol în note de subsol" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@menu vãzut înainte de primul @node, creez nodul `Vârf'" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "probabil cã nodul d-voastrã @top ar trebui împachetat în @ifnottex în loc de " "@ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "Comandã necunoscutã `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "Am aºteptat `%s'" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s nu are sens în exteriorul mediului `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image lipseºte fiºierul argument." -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s: lipseºte fiºierul argument.\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "Am aºteptat `%s'" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "Folosiþi paranteze pentru a da o comandã ca argument lui @%s" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "argumentele pentru @%s ignorate" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "Folosiþi paranteze pentru a da o comandã ca argument lui @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: %s arg trebuie sã fie numeric, nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "Index necunoscut `%s'" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "Index necunoscut `%s' în @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: %s arg trebuie sã fie numeric, nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: --footnote-style arg trebuie sã fie `separate' sau `end', nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: %s arg trebuie sã fie numeric, nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: --paragraph-indent arg trebuie sã fie numeric/`none'/`asis', nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: --paragraph-indent arg trebuie sã fie numeric/`none'/`asis', nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: --paragraph-indent arg trebuie sã fie numeric/`none'/`asis', nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: --footnote-style arg trebuie sã fie `separate' sau `end', nu `%s'.\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: --footnote-style arg trebuie sã fie `separate' sau `end', nu `%s'.\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "referinþa %s cãtre nodul inexistent `%s' (probabil secþionare incorectã?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nod nereferit `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "nod nereferit `%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "Nodului `%s' îi lipseºte articolul pentru `%s' deºi îi este þinta Sus" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3526,17 +3521,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: nu am putut deschide --css-file: %s" diff --git a/po/ru.gmo b/po/ru.gmo index afcd7c0..365d8e5 100644 Binary files a/po/ru.gmo and b/po/ru.gmo differ diff --git a/po/ru.po b/po/ru.po index 939914b..4b0b74d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,10 +7,10 @@ # Yuri Kozlov , 2013, 2015, 2016, 2017. msgid "" msgstr "" -"Project-Id-Version: texinfo 6.3.91\n" +"Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" -"PO-Revision-Date: 2017-05-24 18:58+0300\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" +"PO-Revision-Date: 2017-06-24 09:41+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" @@ -394,42 +394,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Пункт меню «%s» отÑутÑтвует в ноде «%s»" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Ðевозможно найти ноду «%s»" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Ðе задано Ð¸Ð¼Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ñ‹" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "неверный номер: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "неправильное назначение переменной: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: нет переменной Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "значение %s недопуÑтимо Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð¹ %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Попробуйте --help Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð±Ð¾Ð»ÐµÐµ подробного опиÑаниÑ.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -444,12 +444,12 @@ "Это Ñвободное ПО: вы можете продавать и раÑпроÑтранÑÑ‚ÑŒ его.\n" "Ðет ÐИКÐКИХ ГÐРÐÐТИЙ до Ñтепени, разрешённой законом.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "Ð´Ð»Ñ Â«%s» не найдено Ñлементов в именном указателе\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -460,8 +460,7 @@ "\n" "Чтение документации в формате Info.\n" -#: info/info.c:1095 -#, fuzzy +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -469,17 +468,14 @@ " -d, --directory=DIR add DIR to INFOPATH\n" " -f, --file=MANUAL specify Info manual to visit" msgstr "" -"Параметры:\n" +"ЧаÑто иÑпользуемые параметры:\n" " -a, --all иÑпользовать вÑе подходÑщие Ñправочники\n" " -k, --apropos=СТРОКРпоиÑк СТРОКИ во вÑех указателÑÑ…\n" " вÑех Ñправочников\n" " -d, --directory=КÐТ добавить КÐТалог в INFOPATH\n" -" --dribble=ФÐЙЛ запоминать Ð½Ð°Ð¶Ð°Ñ‚Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ñˆ пользователем в " -"ФÐЙЛЕ\n" " -f, --file=СПРÐВОЧÐИК задать открываемый Info-Ñправочник" -#: info/info.c:1102 -#, fuzzy +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -492,35 +488,30 @@ " -n, --node=ИМЯ_ÐОДЫ задать ноды в файле Info, поÑещаемом впервые\n" " -o, --output=ФÐЙЛ запиÑÑŒ выбранных нод в ФÐЙЛ" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" - -#: info/info.c:1112 -#, fuzzy +" -O, --show-options, --usage перейти к ноде Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð°Ð¼Ð¸ командной Ñтроки" + +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly выводить в формате, удобном длÑ\n" " Ñинтезаторов речи" -#: info/info.c:1116 -#, fuzzy +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" " --version display version information and exit\n" " -w, --where, --location print physical location of Info file" msgstr "" -" --strict-node-location (Ð´Ð»Ñ Ð¾Ñ‚Ð»Ð°Ð´ÐºÐ¸) иÑпользовать указатели\n" -" файл Info как еÑÑ‚ÑŒ\n" " --subnodes рекурÑивно выводить пункты меню\n" " -v, --variable ПЕР=ЗÐÐЧ назначить ЗÐÐЧЕÐИЕ ПЕРЕМЕÐÐОЙ Info\n" -" --vi-keys иÑпользовать привÑзки клавиш как в vi и less\n" " --version показать информацию о верÑии и выйти\n" -" -w, --where, --location показать физичеÑкое раÑположение файла Info\n" -" -x, --debug=ÐОМЕР задать уровень отладки (-1 Ð´Ð»Ñ Ð²Ñех).\n" - -#: info/info.c:1122 +" -w, --where, --location показать физичеÑкое раÑположение файла Info" + +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -536,7 +527,7 @@ "результат. Ð’Ñе оÑтальные аргументы раÑÑматриваютÑÑ ÐºÐ°Ðº имена пунктов\n" "меню отноÑительно первой поÑещённой ноды." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -544,8 +535,7 @@ "\n" "Ð”Ð»Ñ Ð²Ñ‹Ð´Ð°Ñ‡Ð¸ Ñправки по привÑзкам клавиш нажмите H в Info." -#: info/info.c:1132 -#, fuzzy +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -564,8 +554,6 @@ "\n" "Примеры:\n" " info показать меню каталога верхнего уровнÑ\n" -" info info показать оÑновную Ñправку о программах Ñ‡Ñ‚ÐµÐ½Ð¸Ñ " -"Info\n" " info info-stnd показать Ñправку определённой программы Info\n" " info emacs начать Ñ Ð½Ð¾Ð´Ñ‹ emacs из каталога верхнего " "уровнÑ\n" @@ -573,10 +561,11 @@ " info emacs -n Files начать Ñ Ð½Ð¾Ð´Ñ‹ Files в руководÑтве emacs\n" " info '(emacs)Files' альтернативный ÑпоÑоб начать Ñ Ð½Ð¾Ð´Ñ‹ Files\n" " info --show-options emacs начать Ñ Ð½Ð¾Ð´Ñ‹, опиÑывающей параметры emacs\n" -" info --subnodes -o out.txt emacs dump entire manual to out.txt\n" +" info --subnodes -o out.txt emacs\n" +" Ñохранить руководÑтво в out.txt\n" " info -f ./foo.info показать файл ./foo.info, не иÑкать каталог" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -586,68 +575,68 @@ "общее обÑуждение и вопроÑÑ‹ направлÑйте по адреÑу help-texinfo@gnu.org.\n" "ДомашнÑÑ Ñтраница Texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Ðевозможно найти ноду «(%s)%s»" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Ðевозможно найти окно!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Точка находитÑÑ Ð²Ð½Ðµ ноды Ñтого окна!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Ðевозможно удалить поÑледнее окно" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Ð’ Ñтой ноде нет меню" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Ð’ Ñтой ноде нет ÑноÑок" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Ð’ Ñтой ноде нет перекрёÑтных ÑÑылок" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Ð”Ð»Ñ Ñтой ноды нет ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Â«%s»" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Команда Info «%c» неизвеÑтна; попробуйте «?» Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ñправки" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "" "Тип терминала «%s» не обладает доÑтаточными возможноÑÑ‚Ñми Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑка Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Ð’Ñ‹ уже находитеÑÑŒ на поÑледней Ñтранице Ñтой ноды" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Ð’Ñ‹ уже находитеÑÑŒ на первой Ñтранице Ñтой ноды" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Только одно окно" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "ПолучившееÑÑ Ð¾ÐºÐ½Ð¾ было бы Ñлишком маленьким" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" "Ðе хватает меÑта Ð´Ð»Ñ Ñправочного окна, пожалуйÑта, удалите какое-нибудь окно" @@ -1437,188 +1426,188 @@ msgid "Using literal strings for searches" msgstr "ИÑпользование обычных Ñтрок при поиÑке" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "ПоиÑк продолжитÑÑ Ñ ÐºÐ¾Ð½Ñ†Ð° документа" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "ПоиÑк продолжитÑÑ Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° документа" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "ПоиÑк подфайла %s…" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Ðе найдено" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "ПоиÑк по регулÑрным выражениÑм" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "ПоиÑк" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " c учётом региÑтра" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " обратный поиÑк" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Слишком ÐºÐ¾Ñ€Ð¾Ñ‚ÐºÐ°Ñ Ñтрока поиÑка" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Переходим обратно к поÑледнему Ñовпадению из %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Больше нет Ñовпадений" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "ИÑкать Ñтроку в Ñтой ноде и поднодах" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "ПоиÑк в %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Перейти к Ñледующему Ñовпадению в поддереве Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Ðет активного поиÑка" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Перейти к предыдущему Ñовпадению в поддереве Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Считать Ñтроку и запуÑтить региÑтрозавиÑимый поиÑк" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Считать Ñтроку и запуÑтить поиÑк" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Считать Ñтроку и запуÑтить поиÑк в обратном направлении" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Повторить поÑледний поиÑк в том же направлении" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Ðет Ñтроки предыдущего поиÑка" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Повторить поÑледний поиÑк в обратном направлении" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "ОчиÑтить показанные ÑÐ¾Ð²Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð¸Ñка" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "ЗапуÑтить интерактивный поиÑк по мере ввода Ñтроки" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Ðаращиваемый обратный поиÑк по регулÑрному выражению: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Ðаращиваемый обратный поиÑк: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Ðаращиваемый поиÑк по регулÑрному выражению: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Ðаращиваемый поиÑк: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Ðе найдено " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Отменить выполнение текущей команды" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Выход" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Показать верÑию запущенной Info" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info, верÑÐ¸Ñ %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "ПерериÑовать Ñкран" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Выйти из Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "ЗапуÑтить команду, привÑзанную к Ñтой клавише в нижнем региÑтре" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° «%s»" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "«%s» неверно" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Добавить цифру к текущему чиÑловому аргументу" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Ðачать (или умножить на 4) текущий чиÑловой аргумент" @@ -2035,32 +2024,32 @@ msgstr "не найдены Ñлементы Ð´Ð»Ñ Â«%s»; ничего не удалено" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "невозможно открыть %s на запиÑÑŒ: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "рекурÑÐ¸Ñ Ñ€Ð°Ð·Ñ€ÐµÑˆÐµÐ½Ð° вÑегда" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "по умолчанию аргументы в кавычках" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "перемеÑтите команду @contents, еÑли хотите видеть Ñодержимое поÑле титульной " "Ñтраницы" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2068,50 +2057,50 @@ "перемеÑтите команды @shortcontents и @contents, еÑли хотите видеть " "Ñодержимое поÑле титульной Ñтраницы" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s не ÑвлÑетÑÑ Ð´Ð¾Ð¿ÑƒÑтимым кодом Ñзыка" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s не ÑвлÑетÑÑ Ð´Ð¾Ð¿ÑƒÑтимым кодом облаÑти" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s не ÑвлÑетÑÑ Ð´Ð¾Ð¿ÑƒÑтимой возможноÑтью разделениÑ" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "невозможно прочитать %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "ошибка при закрытии файла @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: невозможно найти %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "отÑутÑтвует нода Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð¸Ñ" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "ноды без нового имени в конце файла" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "невозможно открыть %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "невозможно защитить Ñ…Ñш-Ñимвол в @%s" @@ -2127,11 +2116,11 @@ msgstr "%s: вывод неÑовмеÑтим Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸ÐµÐ¼" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "ошибка при закрытии %s: %s" @@ -2151,7 +2140,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "файл @image «%s» не найден, иÑпользуетÑÑ Â«%s»" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "не задан аргумент Ð´Ð»Ñ @U" @@ -2160,111 +2149,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "файл @image «%s» (Ð´Ð»Ñ HTML) не найден, иÑпользуетÑÑ Â«%s»" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "неÑтруктурированный формат %s не преобразован" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "невозможно открыть файл наÑтроек ÑÑылок html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "отÑутÑтвует тип" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "нераÑпознанный тип: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "ошибка при закрытии файла наÑтроек ÑÑылок html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "Ð½ÐµÐ·Ð°ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñтрока в файле css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include обрываетÑÑ Ð² комментарии" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import не завершена в файле css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "Файл CSS %s не найден" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "невозможно открыть --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "ошибка при закрытии файла CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "Ñлемент htmlxref.cnf не найден в «%s»" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "ошибка при закрытии файла frame %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "ошибка при закрытии файла TOC frame %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "ошибка обработчика %s на Ñтадии %s Ñ Ð¿Ñ€Ð¸Ð¾Ñ€Ð¸Ñ‚ÐµÑ‚Ð¾Ð¼ %s" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "должен быть задан заголовок командой заголовка или @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "ошибка при закрытии файла ноды Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "Ñтарое Ð¸Ð¼Ñ Â«%s» — Ñто нода документа" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "файл пуÑÑ‚ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¸Ð¼ÐµÐ½ÑƒÐµÐ¼Ð¾Ð¹ ноды «%s»" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "нода Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ (новое Ð¸Ð¼Ñ Ð´Ð»Ñ Â«%s») отÑутÑтвует в документе: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "ошибка при закрытии файла переименуемой ноды Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "пуÑтое Ð¸Ð¼Ñ Ð½Ð¾Ð´Ñ‹" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "ÑинтакÑÐ¸Ñ Ð´Ð»Ñ Ð²Ð½ÐµÑˆÐ½ÐµÐ¹ ноды иÑпользуетÑÑ Ð´Ð»Ñ Â«%s»" @@ -2302,7 +2291,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Пункт в алфавитном указателе @%s Ñ : Ñоздаёт некорректный Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "Ñлементе Ð´Ð»Ñ Ð¸Ð¼ÐµÐ½Ð½Ð¾Ð³Ð¾ ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Â«%s» вне какой-либо ноды" @@ -2367,287 +2356,282 @@ msgid "menu entry name should not contain `:'" msgstr "Ð¸Ð¼Ñ Ñлемента меню не должно Ñодержать «:»" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "пуÑтое Ð¸Ð¼Ñ Ð½Ð¾Ð´Ñ‹ поÑле раÑÐºÑ€Ñ‹Ñ‚Ð¸Ñ Â«%s»" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s «%s» было определено раньше" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "меÑто предыдущего Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "пуÑтой аргумент в @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "неÑколько @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "неверный или пуÑтой формальный аргумент @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "неверный ÑинтакÑÐ¸Ñ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð° @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "команде %c%s нужно указать имÑ" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "некорректное Ð¸Ð¼Ñ Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s перед закрывающей Ñкобкой @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s перед закрывающей Ñкобкой @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s пропущена Ð·Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ñкобка" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s отÑутÑтвует Ð·Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¿Ð¾ÑледовательноÑÑ‚ÑŒ: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx не должен начинатьÑÑ Ñ @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx должен Ñледовать за @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s Ñодержит текÑÑ‚, но не @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "ожидалоÑÑŒ «@end» Ñ Â«%s», вÑтречено «%s»" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s перед @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "нет парной «%cend %s»" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "здеÑÑŒ не должно быть %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "Ð½ÐµÐ¿Ð°Ñ€Ð½Ð°Ñ Â«%c%s»" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "Ð¼Ð°ÐºÑ€Ð¾Ñ Â«%s» вызван Ñ Ð¸Ð·Ð»Ð¸ÑˆÐ½Ð¸Ð¼Ð¸ аргументами" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s пропущена Ð·Ð°ÐºÑ€Ñ‹Ð²Ð°ÑŽÑ‰Ð°Ñ Ñкобка" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Ð¼Ð°ÐºÑ€Ð¾Ñ Â«%s», объÑвленный без аргумента, вызван Ñ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð¾Ð¼" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ в раÑкрытии @%s Ñледует «%s», а не Ð¸Ð¼Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° или \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "пропущено Ð¸Ð¼Ñ Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "пропущена ÐºÐ°Ñ‚ÐµÐ³Ð¾Ñ€Ð¸Ñ Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "неожиданный аргумент на Ñтроке @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "пуÑÑ‚Ð°Ñ Ð¼ÑƒÐ»ÑŒÑ‚Ð¸Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "лишний аргумент Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "некорректный аргумент Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s должна иÑпользоватьÑÑ c аргументом: форматом Ð´Ð»Ñ %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "команды @%s, не принимающей аргументов в Ñкобках, не должно быть в Ñтроке @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° «@%s» недопуÑтима как аргумент @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s пропущен аргумент" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "неизвеÑтный @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "лишний аргумент Ð´Ð»Ñ @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "неверный аргумент Ð´Ð»Ñ @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: невозможно открыть %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "кодировка «%s» не ÑвлÑетÑÑ ÐºÐ°Ð½Ð¾Ð½Ð¸Ñ‡Ð½Ð¾Ð¹ кодировкой texinfo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "Ð¸Ð¼Ñ ÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²ÐºÐ¸ «%s» не раÑпознано" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s поÑле первого Ñлемента" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s имеет ÑмыÑл только в Ñтроке @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s не должен быть ÑвÑзан Ñ @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node Ñтоит до @%s, но чаÑти не могут быть ÑвÑзаны Ñ Ð½Ð¾Ð´Ð°Ð¼Ð¸" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "пуÑтое Ð¸Ð¼Ñ Ñлемента меню в «%s»" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "пуÑтое Ð¸Ð¼Ñ Ð½Ð¾Ð´Ñ‹ в Ñлементе меню" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s не должен поÑвлÑÑ‚ÑŒÑÑ Ð² @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s должен поÑвлÑÑ‚ÑŒÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в начале Ñтроки" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "Ð¼Ð°ÐºÑ€Ð¾Ñ Â«%s» был определён раньше" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "меÑто предыдущего Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Â«%s»" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "переопределение команды Ñзыка Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s без ÑоответÑтвующего Ñимвола" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" "@%s определён Ñ Ð½ÑƒÐ»Ñ‘Ð¼ или более чем одним аргументом, должен вызыватьÑÑ Ñ {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2656,429 +2640,429 @@ "вызов макроÑа вложен Ñлишком глубоко (можно изменить через " "MAX_NESTED_MACROS; текущее значение: %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "рекурÑивный вызов макроÑа %s не допуÑкаетÑÑ; еÑли нужно, иÑпользуйте @rmacro" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "поÑле выделенной команды «@%s» не должно быть пробельного Ñимвола" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" "иÑпользуйте фигурные Ñкобки, чтобы передать @%s команду в качеÑтве аргумента" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s ожидает в качеÑтве аргумента «i» или «j», а не «%s»" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "поÑле выделенной команды «@%s» не должно быть новой Ñтроки" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s подразумевает фигурные Ñкобки" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "неопределенный флаг: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "неверный ÑинтакÑÐ¸Ñ @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "Команда %c%s уÑтарела." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "Команда %c%s уÑтарела; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s должен поÑвлÑÑ‚ÑŒÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в начале Ñтроки" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s не допуÑкаетÑÑ Ð²Ð½ÑƒÑ‚Ñ€Ð¸ блока «@%s»" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s должен поÑвлÑÑ‚ÑŒÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в заголовке или нижнем колонтитуле" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s не имеет ÑмыÑла внутри блока «@%s»" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s в пуÑтой мультитаблице" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab перед @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "Ñлишком много Ñтолбцов в мультитабличном Ñлементе (макÑимум %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "@tab вне мультитаблицы игнорирован" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s вне таблицы или ÑпиÑка" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "должно быть поÑле «@%s», чтобы иÑпользовать «@%s»" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s не имеет ÑмыÑла вне Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Â«@titlepage» или «@quotation»" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory поÑле первой ноды" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "не допуÑкаетÑÑ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ðµ облаÑти %s внутри облаÑти %s" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry поÑле первой ноды" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu в неверном контекÑте" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s вÑтречено перед первой @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "вероÑтно, ваша нода @top должна быть в @ifnottex, а не в @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s должен поÑвлÑÑ‚ÑŒÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в Ñовпадающем контекÑте" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "неизвеÑÑ‚Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° «%s»" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "неожиданный Ñимвол @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s не имеет ÑмыÑла вне Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ Â«@float»" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s должен быть Ñразу поÑле «@float»" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "игнорируетÑÑ Ð¼Ð½Ð¾Ð³Ð¾ÐºÑ€Ð°Ñ‚Ð½Ñ‹Ð¹ @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "команда @%s не допуÑкает аргументов" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "у команда @%s отÑутÑтвует нода или внешний указанный вручную аргумент" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "в @%s указана пуÑтое Ð¸Ð¼Ñ Ð¿ÐµÑ€ÐµÐºÑ€Ñ‘Ñтной ÑÑылки поÑле раÑкрытого «%s»" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" "в @%s указан пуÑтой заголовок перекрёÑтной ÑÑылки поÑле раÑкрытого «%s»" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "поÑле @image пропущен аргумент, задающий файл" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "у @%s пропущен первый аргумент" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "найдены не шеÑтнадцатеричные цифры в аргументе Ð´Ð»Ñ @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" "количеÑтво шеÑтнадцатеричных цифр в аргументе больше четырёх Ð´Ð»Ñ @U : %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "аргумент @U превышает макÑимальное значение 0x10FFFF Юникода: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "лишние аргументы у ноды" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "ожидалÑÑ @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s должна принимать только @-команду в качеÑтве аргумента, а не «%s»" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "оÑтавшийÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚ в Ñтроке @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "команда Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ %s в качеÑтве аргумента Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "пуÑÑ‚Ð°Ñ @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "чаÑÑ‚ÑŒ Ñтолбца не ÑвлÑетÑÑ Ñ‡Ð¸Ñлом: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp аргумент должен быть чиÑловым, а не «%s»" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "зарезервированное Ð¸Ð¼Ñ Ð°Ð»Ñ„Ð°Ð²Ð¸Ñ‚Ð½Ð¾Ð³Ð¾ ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "неизвеÑтный иÑточник алфавитного ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Ð² @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "неизвеÑтное назначение алфавитного ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Ð² @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s ведёт к ÑлиÑнию %s Ñ Ñамим Ñобой, игнорируетÑÑ" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "неизвеÑтный алфавитный указатель «%s» в @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "выводитÑÑ Ð°Ð»Ñ„Ð°Ð²Ð¸Ñ‚Ð½Ñ‹Ð¹ указатель «%s», объединённый в другой — «%s»" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex до начала документа: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s аргумент должен быть «top» или «bottom», а не «%s»" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "ПоддерживаютÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ @%s 10 или 11, а не «%s»" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s аргумент должен быть «separate» или «end», а не «%s»" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s аргумент должен быть «on», «off» или «odd», а не «%s»" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "@paragraphindent аргумент должен быть чиÑловым/«none»/«asis», а не «%s»" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "@firstparagraphindent аргумент должен быть «none» или «insert», а не «%s»" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "@exampleindent аргумент должен быть чиÑловым/«asis», а не «%s»" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "ожидалÑÑ @%s on или off, а не «%s»" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "@kbdinputstyle аргумент должен быть «code»/«example»/«distinct», а не «%s»" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "@allowcodebreaks аргумент должен быть «true» или «false», а не «%s»" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "@urefbreakstyle аргумент должен быть «after»/«before»/«none», а не «%s»" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "повышаетÑÑ ÑƒÑ€Ð¾Ð²ÐµÐ½ÑŒ раздел @%s, так как Ñлишком мал" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "отÑутÑтвует команда chapter-level до @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "понижаетÑÑ ÑƒÑ€Ð¾Ð²ÐµÐ½ÑŒ раздела @%s, поÑвившегоÑÑ Ð¿Ð¾Ñле понижающего Ñлемента" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "отÑутÑтвует команда раздела, ÑвÑÐ·Ð°Ð½Ð½Ð°Ñ Ñ @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s не пуÑÑ‚" # здеÑÑŒ %s может быть `cross' или `menu' -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s ÑÑылаетÑÑ Ð½Ð° неÑущеÑтвующую ноду «%s»" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s Ð¸Ð¼Ñ Ð¿Ð¾ÑвившейÑÑ Ð½Ð¾Ð´Ñ‹ «%s» отличаетÑÑ Ð¾Ñ‚ %s имени «%s»" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "на ноду «%s» нет ÑÑылок" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "нода «%s» ÑоответÑтвует %s Ð´Ð»Ñ Â«%s» в разделах, но не в меню" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "нода %s «%s» в меню «%s» и в разделах «%s» различна" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "нода «%s» ÑоответÑтвует %s Ð´Ð»Ñ Â«%s» в меню, но не в разделах" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "%s указатель «%s» (Ð´Ð»Ñ Ð½Ð¾Ð´Ñ‹ «%s») отличаетÑÑ Ð¾Ñ‚ %s Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ «%s»" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s ÑÑылаетÑÑ Ð½Ð° неÑущеÑтвующий «%s»" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "нода «%s» не имеет пункта меню Ð´Ð»Ñ Â«%s», Ñ…Ð¾Ñ‚Ñ Ð½Ð° неё ÑÑылаетÑÑ Ñ†ÐµÐ»ÑŒ Up" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "Ð´Ð»Ñ Â«%s», верх в меню «%s» и верх «%s» не Ñовпадают" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s на «%s», отличаетÑÑ Ð¾Ñ‚ %s Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ «%s»" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "пуÑтой ключ алфавитного ÑƒÐºÐ°Ð·Ð°Ñ‚ÐµÐ»Ñ Ð² @%s" @@ -3627,20 +3611,23 @@ "Преобразование insert_nodes_for_sectioning_commands не дало результата. Ðет " "раздела?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: ошибка при закрытии %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: ошибка при закрытии файла внутренних ÑÑылок %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: невозможно открыть %s Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s не должен быть ÑвÑзан Ñ @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/rw.gmo b/po/rw.gmo index 0aa2497..790ee1e 100644 Binary files a/po/rw.gmo and b/po/rw.gmo differ diff --git a/po/rw.po b/po/rw.po index c8b918b..a6b39f1 100644 --- a/po/rw.po +++ b/po/rw.po @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: texinfo 4.7.94\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -433,42 +433,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Ibikubiyemo Ikintu in" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Gushaka" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, fuzzy, c-format msgid "%s: no such variable" msgstr "Komandi:" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "i Agaciro Bya IMPINDURAGACIRO" -#: info/info.c:840 +#: info/info.c:842 #, fuzzy, c-format msgid "Try --help for more information.\n" msgstr "Ifashayobora kugirango Birenzeho Ibisobanuro" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -478,12 +478,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -491,7 +491,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -500,7 +500,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -508,16 +508,16 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "-B Kuri" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -525,7 +525,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -535,13 +535,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -558,7 +558,7 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 #, fuzzy msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" @@ -566,77 +566,77 @@ "Texinfo home page: http://www.gnu.org/software/texinfo/" msgstr "org." -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Gushaka" -#: info/info.c:1183 +#: info/info.c:1185 #, fuzzy msgid "Cannot find a window!" msgstr "Gushaka a Idirishya" -#: info/info.c:1184 +#: info/info.c:1186 #, fuzzy msgid "Point doesn't appear within this window's node!" msgstr "Kugaragara muri iyi" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Gusiba i Iheruka Idirishya" -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Ibikubiyemo in iyi" -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Ubusobanuro mpezarupapuro in iyi" -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Kwambukiranya Indango in iyi" -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Mweretsi kugirango iyi" -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Komandi: kugirango Ifashayobora" -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Ubwoko ni OYA Cyiza Kuri Gukoresha" -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "ku i Iheruka Ipaji Bya iyi" -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "ku i Itangira Ipaji Bya iyi" -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Idirishya" -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Idirishya Gitoya" -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "kugirango a Ifashayobora Idirishya Gusiba a Idirishya" @@ -1519,209 +1519,209 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Kuri i Itangiriro Bya i Umurongo" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Kuri i Itangiriro Bya i Umurongo" -#: info/session.c:4138 +#: info/session.c:4135 #, fuzzy, c-format msgid "Searching subfile %s ..." msgstr "Byanze" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Byanze" -#: info/session.c:4191 +#: info/session.c:4188 #, fuzzy, c-format msgid "%s%s%s [%s]: " msgstr "%s%sforIkurikiranyanyuguti" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 #, fuzzy msgid "Regexp search" msgstr "Gushaka" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Gushaka" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 #, fuzzy msgid " backward" msgstr "Gushaka usubira inyuma" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%sforIkurikiranyanyuguti" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Byanze" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 #, fuzzy msgid "Read a string and search for it case-sensitively" msgstr "a Ikurikiranyanyuguti Na Gushaka kugirango" -#: info/session.c:4629 +#: info/session.c:4626 #, fuzzy msgid "Read a string and search for it" msgstr "a Ikurikiranyanyuguti Na Gushaka kugirango" -#: info/session.c:4635 +#: info/session.c:4632 #, fuzzy msgid "Read a string and search backward for it" msgstr "a Ikurikiranyanyuguti Na Gushaka subira inyuma kugirango" -#: info/session.c:4643 +#: info/session.c:4640 #, fuzzy msgid "Repeat last search in the same direction" msgstr "Iheruka Gushaka in i Icyerekezo" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 #, fuzzy msgid "No previous search string" msgstr "Ibanjirije Gushaka Ikurikiranyanyuguti" -#: info/session.c:4688 +#: info/session.c:4685 #, fuzzy msgid "Repeat last search in the reverse direction" msgstr "Iheruka Gushaka in i Ihindurakerekezo Icyerekezo" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 #, fuzzy msgid "Search interactively for a string as you type it" msgstr "kugirango a Ikurikiranyanyuguti Nka Ubwoko" -#: info/session.c:4877 +#: info/session.c:4874 #, fuzzy msgid "Regexp I-search backward: " msgstr "Gushaka subira inyuma" -#: info/session.c:4878 +#: info/session.c:4875 #, fuzzy msgid "I-search backward: " msgstr "Gushaka subira inyuma" -#: info/session.c:4880 +#: info/session.c:4877 #, fuzzy msgid "Regexp I-search: " msgstr "Gushaka" -#: info/session.c:4881 +#: info/session.c:4878 #, fuzzy msgid "I-search: " msgstr "Gushaka" -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "" -#: info/session.c:5274 +#: info/session.c:5271 #, fuzzy msgid "Cancel current operation" msgstr "KIGEZWEHO" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Kuvamo" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "Kugaragaza Verisiyo Ibisobanuro Na Gusohoka" -#: info/session.c:5288 +#: info/session.c:5285 #, fuzzy, c-format msgid "GNU Info version %s" msgstr "ni ku Verisiyo Bivuye" -#: info/session.c:5293 +#: info/session.c:5290 #, fuzzy msgid "Redraw the display" msgstr "i Kugaragaza" -#: info/session.c:5330 +#: info/session.c:5327 #, fuzzy msgid "Quit using Info" msgstr "ikoresha" -#: info/session.c:5346 +#: info/session.c:5343 #, fuzzy msgid "Run command bound to this key's lowercase variant" msgstr "Komandi: Kuri iyi Inyuguti nto" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Komandi:" -#: info/session.c:5360 +#: info/session.c:5357 #, fuzzy, c-format msgid "\"%s\" is invalid" msgstr "\"%s\"ni Sibyo" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "`%s'ni Sibyo" -#: info/session.c:5679 +#: info/session.c:5676 #, fuzzy msgid "Add this digit to the current numeric argument" msgstr "iyi Kuri i KIGEZWEHO Bikurikije umubare" -#: info/session.c:5686 +#: info/session.c:5683 #, fuzzy msgid "Start (or multiply by 4) the current numeric argument" msgstr "Gutangira Cyangwa Gukuba ku 4. i KIGEZWEHO Bikurikije umubare" @@ -2075,79 +2075,79 @@ msgstr "Oya Ibyinjijwe Byabonetse kugirango Cyasibwe" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%sni OYA a Byemewe Ururimi ITEGEKONGENGA" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%sni OYA a Byemewe Ururimi ITEGEKONGENGA" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, fuzzy, perl-format msgid "%s is not a valid split possibility" msgstr "%sni OYA a Byemewe Ururimi ITEGEKONGENGA" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "Kurema bushyinguro" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "Gushaka" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, fuzzy, perl-format msgid "could not protect hash character in @%s" msgstr "%s:OYA Gufungura IDOSIYE" @@ -2164,11 +2164,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "Ikosa Kuri" @@ -2188,7 +2188,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@Ishusho IDOSIYE" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Izina: kugirango Komandi:" @@ -2198,114 +2198,114 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@Ishusho IDOSIYE kugirango OYA" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "Gukuraho... IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "Ibuze Igikorwa Izina:" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s:Ihitamo" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "Gukuraho... IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d:--IDOSIYE in Icyo wongeraho" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, fuzzy, perl-format msgid "CSS file %s not found" msgstr "%cendMakoro OYA Byabonetse" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "Cyangwa kugirango iyi muri iyi Inyandiko" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "Ibikubiyemo in" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, fuzzy, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "Cyangwa kugirango iyi muri iyi Inyandiko" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, fuzzy, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 #, fuzzy msgid "empty node name" msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2345,7 +2345,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "kugirango Umubarendanga Hanze Bya" @@ -2411,715 +2411,710 @@ msgid "menu entry name should not contain `:'" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, fuzzy, perl-format msgid "empty node name after expansion `%s'" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "Makoro" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "ni i Ibanjirije Insobanuro Bya" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, fuzzy, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, fuzzy, perl-format msgid "bad syntax for @%s argument: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, fuzzy, perl-format msgid "%c%s requires a name" msgstr "%c%sa Izina:" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, fuzzy, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, fuzzy, perl-format msgid "@%s seen before @%s closing brace" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%sIbuze Gufunga" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, fuzzy, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "%c%sIbuze Gufunga" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, fuzzy, perl-format msgid "@itemx should not begin @%s" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, fuzzy, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@Ikitezwe:" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, fuzzy, perl-format msgid "@%s seen before @end %s" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "ku Umurongo Na:" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%sIbuze Gufunga" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "ku Umurongo Na:" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ in Makoro ku Bya Izina:" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "in" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, fuzzy, perl-format msgid "missing category for @%s" msgstr "in" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s:ubusa IDOSIYE" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, fuzzy, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%si kugirango" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, fuzzy, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s:Ibuze IDOSIYE" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "Umubarendanga" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "Gushaka" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, fuzzy, perl-format msgid "unrecognized encoding name `%s'" msgstr "Imisobekere: Izina:" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%sOYA Hanze" -#: tp/Texinfo/Parser.pm:3386 -#, fuzzy, perl-format -msgid "@%s should not be associated with @top" -msgstr "%s:OYA Gufungura IDOSIYE" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, fuzzy, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 #, fuzzy msgid "empty node name in menu entry" msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, fuzzy, perl-format msgid "macro `%s' previously defined" msgstr "Makoro" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, fuzzy, perl-format msgid "here is the previous definition of `%s'" msgstr "ni i Ibanjirije Insobanuro Bya" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, fuzzy, perl-format msgid "@%s without associated character" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, fuzzy, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "Ingirwadusodeko Kuri a Komandi: Nka Kuri" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%sCyangwa Nka OYA" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, fuzzy, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%sIkitezwe: Ingirwadusodeko" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, fuzzy, perl-format msgid "undefined flag: %s" msgstr "kidasobanuye Ibendera" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 #, fuzzy msgid "bad syntax for @value" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%sni" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%sni" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%sOYA Mo Imbere Funga" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, fuzzy, perl-format msgid "@%s should only appear in heading or footing" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, fuzzy, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%sOYA Mo Imbere Funga" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s:ubusa IDOSIYE" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 #, fuzzy msgid "@tab before @item" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "Inkingi in Ikintu KININI" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 #, fuzzy msgid "ignoring @tab outside of multitable" msgstr "Isunika Hanze Bya" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, fuzzy, perl-format msgid "@%s outside of table or list" msgstr "(Hanze Bya" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "in Kuri Gukoresha" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, fuzzy, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%sOYA Hanze Na" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 #, fuzzy msgid "@dircategory after first node" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "Mo Imbere Ubusobanuro mpezarupapuro OYA" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 #, fuzzy msgid "@direntry after first node" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@Ibikubiyemo Mbere Itangira" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 #, fuzzy msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "Hejuru: in" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, fuzzy, perl-format msgid "@%s should only appear in math context" msgstr "%s:OYA Gufungura IDOSIYE" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "Komandi:" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "Ikitezwe:" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%sOYA Hanze" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, fuzzy, perl-format msgid "ignoring multiple @%s" msgstr "IDOSIYE" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, fuzzy, perl-format msgid "command @%s does not accept arguments" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, fuzzy, perl-format msgid "command @%s missing a node or external manual argument" msgstr "%s:Ibuze IDOSIYE" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, fuzzy, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, fuzzy, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 #, fuzzy msgid "@image missing filename argument" msgstr "@Ishusho Ibuze Izina ry'idosiye:" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s:Ibuze IDOSIYE" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, fuzzy, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "@Ikintu OYA in Kuri" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 #, fuzzy msgid "superfluous arguments for node" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "Ikitezwe:" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "Ingirwadusodeko Kuri a Komandi: Nka Kuri" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "Ingirwadusodeko Kuri a Komandi: Nka Kuri" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, fuzzy, perl-format msgid "empty @%s" msgstr "Kuri" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s:%sBikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "Umubarendanga" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, fuzzy, perl-format msgid "unknown destination index in @%s: %s" msgstr "Umubarendanga" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "Umubarendanga in" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s:%sBikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "%s:--Ubusobanuro mpezarupapuro IMISUSIRE Cyangwa OYA" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s:%sBikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "%s:--Igika Ikurura Bikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "%s:--Igika Ikurura Bikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "%s:--Igika Ikurura Bikurikije umubare OYA" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, fuzzy, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "%s:--Ubusobanuro mpezarupapuro IMISUSIRE Cyangwa OYA" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "%s:--Ubusobanuro mpezarupapuro IMISUSIRE Cyangwa OYA" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "%s:--Ubusobanuro mpezarupapuro IMISUSIRE Cyangwa OYA" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, fuzzy, perl-format msgid "@%s not empty" msgstr "%s:ubusa IDOSIYE" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%sIndango Kuri" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, fuzzy, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "Kuri" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, fuzzy, perl-format msgid "unreferenced node `%s'" msgstr "%sIndango Kuri" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%sIndango Kuri" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "Ibikubiyemo Ikintu kugirango Intego" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, fuzzy, perl-format msgid "empty index key in @%s" msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango" @@ -3567,20 +3562,24 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, fuzzy, perl-format msgid "%s: error on closing %s: %s\n" msgstr "Ikosa Kuri" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, fuzzy, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "Ikosa Ibisohoka IDOSIYE" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s:OYA Gufungura IDOSIYE" + +#, fuzzy +#~ msgid "@%s should not be associated with @top" +#~ msgstr "%s:OYA Gufungura IDOSIYE" #, fuzzy #~ msgid "%s: option '--%s' doesn't allow an argument\n" diff --git a/po/sl.gmo b/po/sl.gmo index 78b1325..abd6ee7 100644 Binary files a/po/sl.gmo and b/po/sl.gmo differ diff --git a/po/sl.po b/po/sl.po index 2702fe8..435b593 100644 --- a/po/sl.po +++ b/po/sl.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: texinfo 4.13\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2012-08-10 18:31+0100\n" "Last-Translator: Klemen KoÅ¡ir \n" "Language-Team: Slovenian \n" @@ -395,42 +395,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "V vozliÅ¡Äu `%s' ni predmetov menijev `%s'." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Ni mogoÄe najti vozliÅ¡Äa `%s'." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "Nastavi vrednost spremenljivke Info" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Za veÄ podrobnosti poskusite --help.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -445,12 +445,12 @@ "To je prosta programska oprema; lahko jo spreminjate in razÅ¡irjate.\n" "Je BREZ KAKRÅ NEKOLI GARANCIJE, v obsegu, ki ga dovoljuje zakonodaja.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "Za `%s' ni najdenih nobenih vnosov kazal\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -461,7 +461,7 @@ "\n" "Preberite dokumentacijo v obliki Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -477,7 +477,7 @@ "IMENU_DATOTEKE.\n" " -f, --file=IME_DATOTEKE doloÄi datoteko podrobnosti za ogled." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -491,16 +491,16 @@ " -n, --node=IME_VOZLIÅ ÄŒA doloÄi vozliÅ¡Äa v prvi obiskani datoteki Info .\n" " -o, --output=IME_DATOTEKE izpiÅ¡i izbrana vozliÅ¡Äa v IME_DATOTEKE." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly bodi prijazen do sintetizatorjev govora." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -513,7 +513,7 @@ " --version prikaži podrobnosti razliÄice in konÄaj.\n" " -w, --where, --location izpiÅ¡i fiziÄno mesto datoteke Info." -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -530,7 +530,7 @@ "Vsi preostali argumenti so obravnavani kot imena predmetov menijiev,\n" "glede na zaÄetno obiskano vozliÅ¡Äe." -#: info/info.c:1129 +#: info/info.c:1131 #, fuzzy msgid "" "\n" @@ -539,7 +539,7 @@ "\n" "Za povzetek tipkovnih bližnjic, vnesite h znotraj Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -570,7 +570,7 @@ "txt\n" " info -f ./foo.info prikaži datoteko /foo.info brez iskanja mape" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -580,75 +580,75 @@ "sploÅ¡na vpraÅ¡anja in razprave na help-texinfo@gnu.org.\n" "DomaÄa stran texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Ni mogoÄe najti vozliÅ¡Äa `(%s)%s'." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Ni mogoÄe najti okna!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "ToÄka se ne prikaže znotraj vozliÅ¡Äa okna!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Zadnjega okna ni mogoÄe izbrisati." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "V tem vozliÅ¡Äu ni menijev." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "V tem vozliÅ¡Äu ni sprotnih opomb." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "V tem vozliÅ¡Äu ni navzkrižnih sklicev." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Za to vozliÅ¡Äe ni kazalcev `%s'." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Neznan ukaz Info `%c'; za pomoÄ poskusite `?'." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Vrsta terminala `%s' ni dovolj napredna za zagon Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Ste že na zadnji strani tega vozliÅ¡Äa." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Ste že na prvi strani tega vozliÅ¡Äa." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Samo eno okno." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "KonÄno okno bi bilo premajhno." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Za okno pomoÄi ni dovolj prostora, izbriÅ¡ite okno." @@ -1444,191 +1444,191 @@ msgid "Using literal strings for searches" msgstr "Uporaba znakovnih nizov za iskanja" -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Iskanje se nadaljuje od konca dokumenta." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Iskanje se nadaljuje od zaÄetka dokumenta." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Iskanje poddatoteke %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Iskanje je spodletelo." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Iskanje logiÄnega izraza" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Iskanje" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " loÄevanje velikosti Ärk" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " vzvratno" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Iskanje poddatoteke %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Preberi niz in ga iÅ¡Äi obÄutljivo na velikost Ärk" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Preberi niz in ga poiÅ¡Äi" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Preberi niz in ga poiÅ¡Äi v smeri nazaj" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Ponovi zadnje iskanje v isti smeri" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Brez niza predhodnega iskanja" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Ponovi zadnje iskanje v obratni smeri" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Ko se vpisuje niz, ga iÅ¡Äi vzajemno" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Vzvratno I-iskanje logiÄnega izraza: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-iskanje vzvratno: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "I-iskanje logiÄnega izraza: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-iskanje: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Spodletelo " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "PrekliÄi trenutno opravilo" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "KonÄaj" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "prikaži podrobnosti razliÄice in konÄaj" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Osveži zaslon" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "KonÄaj z uporabo Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Zaženi ukaz, doloÄen tej izvedbi tipke z malimi Ärkami" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Neznan ukaz (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" je neveljaven" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "`%s' je neveljaven" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Dodaj to Å¡tevko trenutnemu Å¡tevilskemu argumentu" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "ZaÄni (ali zmnoži s 4) trenutni Å¡tevilski argument" @@ -2032,80 +2032,80 @@ msgstr "za `%s' ni najdenih nobenih vnosov; niÄ ni izbrisano" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 #, fuzzy msgid "arguments are quoted by default" msgstr "@quote-arg je zastarel; argumenti so privzeto navedeni" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s ni veljavna koda jezika ISO 639" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s ni veljavna koda jezika ISO 639" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2121,11 +2121,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" @@ -2145,7 +2145,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "datoteka @image `%s' je neberljiva: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Za ukaz `%c%s' ni navedenega nobenega imena vozliÅ¡Äa" @@ -2155,113 +2155,113 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image datoteka `%s' (za HTML) ni berljiva: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "manjka ime dejanja" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s: neprepoznana možnost `--%s'\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-file se je konÄala v komentarju" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "Za `%s' ni najdenih nobenih vnosov kazal\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "napaka med konÄanjem datoteke vnosa `%s'" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "Brez `Pred' ali `Gor' za to vozliÅ¡Äe znotraj tega dokumenta." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "nesklicevano vozliÅ¡Äe `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2300,7 +2300,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "Vnos za kazalo `%s' je zunaj vseh vozliÅ¡Ä" @@ -2366,717 +2366,712 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "makro `%s' je bil predhodno doloÄen" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "tukaj je predhodna doloÄitev `%s'" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "Slab argument k @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s potrebuje ime" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "Slab argument k @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s manjka zaklepaj" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' priÄakovan `%s', toda viden je `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "Ni ujemajoÄega `%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "NapaÄno postavljen %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "NeujemajoÄ `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "Makro `%s' je klican v vrstici %d s preveÄ argumenti" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s manjka zaklepaj" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Makro `%s' je klican v vrstici %d s preveÄ argumenti" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ v razÅ¡iritvi makra, ki mu namesto imena parametra sledi `%s'" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "manjka ime dejanja" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "Slab argument k @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: prazna datoteka" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "Slab argument k @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "Slab argument k @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s potrebuje argument: oblikovalnik za %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: možnost `--%s' ne dovoljuje argumenta\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s: manjka argument datoteke.\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "Neznano kazalo `%s'" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Slab argument k @%s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "Slab argument k @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "neprepoznano ime kodiranja `%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s ni smiselen zunaj okolja `@titlepage'" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "V vozliÅ¡Äu `%s' ni menijev." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: ni mogoÄe odpreti --css-file: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "UniÄi do zaÄetka vrstice" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro `%s' je bil predhodno doloÄen" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "tukaj je predhodna doloÄitev `%s'" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "ÄŒe želite dati ukaz kot argument v @%s, uporabite oklepaje" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s priÄakuje `i' ali `j' kot argument, ne `%c'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s priÄakovani so oklepaji" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "nedoloÄena zastavica: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s je zastarel" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s je zastarel" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "UniÄi do zaÄetka vrstice" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s ni smiselno znotraj bloka `@%s'" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s ni smiselno znotraj bloka `@%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s: prazna datoteka" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "PreveÄ stolpcev v predmetu veÄih razpredelnic (najveÄ %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "prezrtje @tab izven veÄih razpredelnic" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "Mora biti v okolju `@%s' za uporabo `@%s'" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s ni smiselen zunaj okolij `@titlepage' in `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "Sprotne opombe znotraj sprotnih opomb niso dovoljene" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@menu je bil viden pred prvim @node, ki je ustvarilo vozliÅ¡Äe `Top'" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "Morda bi vaÅ¡e vozliÅ¡Äe @top moralo biti ovito v @ifnottex namesto @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "Neznan ukaz `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "PriÄakovan `%s'" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s ni smiselno zunaj okolja `@float'" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image manjka argument imena datoteke" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s: manjka argument datoteke.\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "Slab argument k @%s: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "PriÄakovan `%s'" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "ÄŒe želite dati ukaz kot argument v @%s, uporabite oklepaje" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "Slab argument k @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "ÄŒe želite dati ukaz kot argument v @%s, uporabite oklepaje" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: %s argument mora biti Å¡tevilski, ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "Neznano kazalo `%s'" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "Neznano kazalo `%s' v @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: %s argument mora biti Å¡tevilski, ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Podprt je samo @%s 10 ali 11, ne `%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: --footnote-style argument mora biti `separate' ali `end', ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: %s argument mora biti Å¡tevilski, ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: --paragraph-indent argument mora biti Å¡tevilski/`none'/`asis', ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: --paragraph-indent argument mora biti Å¡tevilski/`none'/`asis', ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: --paragraph-indent argument mora biti Å¡tevilski/`none'/`asis', ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, fuzzy, perl-format msgid "expected @%s on or off, not `%s'" msgstr "PriÄakuje se @%s on ali off, namesto \"%s\"" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: --footnote-style argument mora biti `separate' ali `end', ne `%s'.\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: --footnote-style argument mora biti `separate' ali `end', ne `%s'.\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "%s sklicevanje na neobstojeÄe vozliÅ¡Äe `%s' (morda nepravilno ustvarjanje " "odsekov?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nesklicevano vozliÅ¡Äe `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "nesklicevano vozliÅ¡Äe `%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "VozliÅ¡Äu `%s' manjka predmet menija za `%s', kljub temu, da je njegov " "Zgornji cilj" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3587,17 +3582,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, fuzzy, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: prezrtje drugega notranjega izhoda povezav `%s'.\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: ni mogoÄe odpreti --css-file: %s" diff --git a/po/sv.gmo b/po/sv.gmo index e1d5e67..213211d 100644 Binary files a/po/sv.gmo and b/po/sv.gmo differ diff --git a/po/sv.po b/po/sv.po index 2d954ca..8e689ba 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: texinfo 4.11.93\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2008-03-09 20:35+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -430,42 +430,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Ingen menypost \"%s\" i noden \"%s\"." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Kan inte hitta noden \"%s\"." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "Ställ in värdet pÃ¥ en Info-variabel" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Prova --help för mer information.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -484,12 +484,12 @@ "vidaredistribuera det. Det finns INGEN GARANTI, i den omfattning som\n" "medges av gällande lag.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "inga indexposter för \"%s\" hittades\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -500,7 +500,7 @@ "\n" "Läs dokumentation i Info-format.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -516,7 +516,7 @@ " FILNAMN.\n" " -f, --file=FILNAMN ange den Info-fil som ska besökas." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -530,16 +530,16 @@ " -n, --node=NODNAMN ange noder i den först besökta Info-filen.\n" " -o, --output=FILNAMN skriv ut valda noder till FILNAMN." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly var vänlig mot talsyntesprogram." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -553,7 +553,7 @@ " --version visa versionsinformation och avsluta.\n" " -w, --where, --location skriv ut den fysiska platsen för Info-filen." -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -570,13 +570,13 @@ "Alla Ã¥terstÃ¥ende argument betraktas som namnen pÃ¥ menyposter relativa till\n" "den först besökta noden." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -602,7 +602,7 @@ " info --subnodes -o ut.txt emacs dumpa hela manualen till ut.txt\n" " info -f ./foo.info visa filen ./foo.info, sök inte i katalogen" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -613,75 +613,75 @@ "och synpunkter pÃ¥ översättningen till tp-sv@listor.tp-sv.se.\n" "Hemsida för texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Kan inte hitta noden \"(%s)%s\"." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Kan inte hitta ett fönster!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Punkten finns inte inom detta fönsters nod!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Kan inte ta bort det sista fönstret." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Ingen meny i denna nod." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Inga fotnoter i denna nod." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Inga korsreferenser i denna nod." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Ingen \"%s\"-pekare för denna nod." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Okänt Info-kommando \"%c\". Prova \"?\" för hjälp." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Terminaltypen \"%s\" är inte tillräckligt smart för att köra Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Du är redan pÃ¥ sista sidan för denna nod." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Du är redan pÃ¥ första sidan för denna nod." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Endast ett fönster." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Resulterande fönstret skulle bli för litet." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1479,22 +1479,22 @@ msgid "Using literal strings for searches" msgstr "Använder ordagranna strängar i sökningar." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Sökningen fortsatte frÃ¥n slutet av dokumentet." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Sökningen fortsatte frÃ¥n början av dokumentet." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Söker i underfilen %s..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Sökningen misslyckades." @@ -1518,24 +1518,24 @@ # messages themselves. Yes, this will result in many more messages, but # those will be translatable, while the current design isn't. # -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Sökning med reguljära uttryck" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Sök" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " skiljandes pÃ¥ VERSALER/gemener" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " baklänges" @@ -1558,150 +1558,150 @@ # messages themselves. Yes, this will result in many more messages, but # those will be translatable, while the current design isn't. # -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Söker i underfilen %s..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Läs en sträng och sök efter den skiftlägeskänsligt" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Läs en sträng och sök efter den" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Läs en sträng och sök baklänges efter den" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Upprepa den senaste sökningen i samma riktning" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Ingen tidigare söksträng" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Upprepa den senaste sökningen i omvänd riktning" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Sök interaktivt efter en sträng allteftersom du skriver den" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "I-sök med reguljärt uttryck baklänges: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-sök baklänges: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "I-sök med reguljärt uttryck: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-sök: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Misslyckas " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Avbryt pÃ¥gÃ¥ende Ã¥tgärd" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Avsluta" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "visa versionsinformation och avsluta" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Rita om displayen" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Avsluta användandet av Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Kör kommando som är knutet till denna tangents gemena variant" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Okänt kommando (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" är ogiltigt" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "\"%s\" är ogiltigt" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Lägg till denna siffra till det aktuella numeriska argumentet" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Börja (eller multiplicera med 4) det numeriska argumentet" @@ -2122,80 +2122,80 @@ msgstr "inga poster hittades för \"%s\"; ingenting togs bort" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 #, fuzzy msgid "arguments are quoted by default" msgstr "@quote-arg är förÃ¥ldrat; argument är citerade som standard" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s är inte en giltig landskod enligt ISO 639" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s är inte en giltig landskod enligt ISO 639" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2211,11 +2211,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" @@ -2235,7 +2235,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image-filen \"%s\" är oläslig: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "Inget nodnamn angivet för kommandot \"%c%s\"" @@ -2245,113 +2245,113 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image-filen \"%s\" (för HTML) är oläslig: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "Ã¥tgärdsnamn saknas" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s: okänd flagga \"--%s\"\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-fil slutade med kommentar" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "inga indexposter för \"%s\" hittades\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "fel vid stängning av utdatafilen \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "Inget \"Prev\" eller \"Up\" för denna nod inom detta dokument." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "orefererad nod \"%s\"" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2390,7 +2390,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "Posten för index \"%s\" är utanför alla noder" @@ -2466,721 +2466,716 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "makrot \"%s\" är redan definierat" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "här är den tidigare definitionen av \"%s\"" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "Felaktigt argument till @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s kräver ett namn" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "Felaktigt argument till @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s saknar avslutande klammer" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "\"@end\" förväntade \"%s\", men sÃ¥g \"%s\"" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "Inget matchande \"%cend %s\"" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "Felplacerat %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "Ensamt \"%c%s\"" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "Makrot \"%s\" anropades pÃ¥ rad %d med för mÃ¥nga argument" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s saknar avslutande klammer" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "Makrot \"%s\" anropades pÃ¥ rad %d med för mÃ¥nga argument" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ i makroutökning följdes av \"%s\" istället för parameternamn" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "Ã¥tgärdsnamn saknas" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "Felaktigt argument till @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: tom fil" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "Felaktigt argument till @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "Felaktigt argument till @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s kräver ett argument: formateraren för %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: flaggan \"--%s\" tillÃ¥ter inget argument\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s: filargument saknas.\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "Okänt index \"%s\"" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "Felaktigt argument till @%s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "Felaktigt argument till @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "okänt kodningsnamn \"%s\"" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s är inte meningsfullt utanför \"@titlepage\"-omgivning" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "Ingen meny i noden \"%s\"." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: kunde inte öppna --css-fil: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "Döda till början pÃ¥ raden" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makrot \"%s\" är redan definierat" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "här är den tidigare definitionen av \"%s\"" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "Använd klamrar för att ge ett komamndo som ett argument till @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s förväntar \"i\" eller \"j\" som argument, inte \"%c\"" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s förväntade klamrar" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "odefinierad flagga: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s är förÃ¥ldrat" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s är förÃ¥ldrat" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "Döda till början pÃ¥ raden" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s är inte meningsfullt inuti \"@%s\"-block" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s är inte meningsfullt inuti \"@%s\"-block" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s: tom fil" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "För mÃ¥nga kolumner i multitabellsobjekt (max %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "ignorerar @tab utanför multitabell" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "MÃ¥ste vara i \"@%s\"-omgivning för att använda \"@%s\"" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" "@%s är inte meningsfullt utanför \"@titlepage\"- och \"@quotation\"-omgivning" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "Fotnoter inuti fotnoter är inte tillÃ¥tet" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@menu sÃ¥gs innan första @node, skapar \"Top\"-nod" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "din @top-nod ska kanske packas i @ifnottex istället för @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "Okänt kommando \"%s\"" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "\"%s\" förväntades" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s är inte meningsfullt utanför \"@float\"-omgivning" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image saknar filnamnsargument" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s: filargument saknas.\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "Felaktigt argument till @%s: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "\"%s\" förväntades" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "Använd klamrar för att ge ett komamndo som ett argument till @%s" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "Felaktigt argument till @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "Använd klamrar för att ge ett komamndo som ett argument till @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: argumentet %s mÃ¥ste vara numeriskt, inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "Okänt index \"%s\"" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "Okänt index \"%s\" i @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: argumentet %s mÃ¥ste vara numeriskt, inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Endast @%s 10 eller 11 stöds, inte \"%s\"" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" "%s: argumentet --footnote-style mÃ¥ste vara \"separate\" eller \"end\", inte " "\"%s\".\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: argumentet %s mÃ¥ste vara numeriskt, inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "%s: argumentet --paragraph-indent mÃ¥ste vara numeriskt/\"none\"/\"asis\", " "inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "%s: argumentet --paragraph-indent mÃ¥ste vara numeriskt/\"none\"/\"asis\", " "inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" "%s: argumentet --paragraph-indent mÃ¥ste vara numeriskt/\"none\"/\"asis\", " "inte \"%s\".\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, fuzzy, perl-format msgid "expected @%s on or off, not `%s'" msgstr "Förväntade @%s on eller off, inte \"%s\"" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" "%s: argumentet --footnote-style mÃ¥ste vara \"separate\" eller \"end\", inte " "\"%s\".\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "%s: argumentet --footnote-style mÃ¥ste vara \"separate\" eller \"end\", inte " "\"%s\".\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" "%s-referens till ickeexisterande noden \"%s\" (kanske felaktig " "avsnittsindelning?)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "orefererad nod \"%s\"" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "orefererad nod \"%s\"" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "Noden \"%s\" saknar menypost för \"%s\" trots att den är dess Upp-mÃ¥l" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3694,17 +3689,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: kunde inte öppna --css-fil: %s" diff --git a/po/texinfo.pot b/po/texinfo.pot index 5850f90..20297bc 100644 --- a/po/texinfo.pot +++ b/po/texinfo.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: GNU texinfo 6.4\n" +"Project-Id-Version: GNU texinfo 6.4dev\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -380,42 +380,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -425,12 +425,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -438,7 +438,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -447,7 +447,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -455,15 +455,15 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -471,7 +471,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -481,13 +481,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -504,74 +504,74 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" "Texinfo home page: http://www.gnu.org/software/texinfo/" msgstr "" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" @@ -1332,188 +1332,188 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "" +#: info/session.c:4874 +msgid "Regexp I-search backward: " +msgstr "" + +#: info/session.c:4875 +msgid "I-search backward: " +msgstr "" + #: info/session.c:4877 -msgid "Regexp I-search backward: " +msgid "Regexp I-search: " msgstr "" #: info/session.c:4878 -msgid "I-search backward: " -msgstr "" - -#: info/session.c:4880 -msgid "Regexp I-search: " -msgstr "" - -#: info/session.c:4881 msgid "I-search: " msgstr "" -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "" -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" +#: info/session.c:5354 +#, c-format +msgid "Unknown command (%s)" +msgstr "" + #: info/session.c:5357 #, c-format -msgid "Unknown command (%s)" -msgstr "" - -#: info/session.c:5360 -#, c-format msgid "\"%s\" is invalid" msgstr "" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "" @@ -1845,79 +1845,79 @@ msgstr "" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -1933,11 +1933,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "" @@ -1957,7 +1957,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "" @@ -1966,111 +1966,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2108,7 +2108,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "" @@ -2171,704 +2171,699 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3270,17 +3265,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "" diff --git a/po/tr.gmo b/po/tr.gmo index d77a37c..e60943c 100644 Binary files a/po/tr.gmo and b/po/tr.gmo differ diff --git a/po/tr.po b/po/tr.po index 41f432a..6373e24 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-18 23:48+0300\n" "Last-Translator: Mehmet Kececi \n" "Language-Team: Turkish \n" @@ -390,42 +390,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "'%s' düğümünde '%s' menü öğesi yok" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "'%s' düğümü bulunamadı" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Program adı verilmedi" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "geçersiz numara: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "kusurlu deÄŸiÅŸken ataması: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: böyle bir deÄŸiÅŸken yok" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "%s deÄŸeri %s deÄŸiÅŸkeni için geçerli deÄŸil" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Daha fazla bilgi için --help seçeneÄŸini kullanın.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -440,12 +440,12 @@ "Bu özgür yazılımdır: deÄŸiÅŸtirip dağıtma özgürlüğüne sahipsiniz.\n" "Yasaların elverdiÄŸi ölçüde HİÇBÄ°R GARANTÄ° yoktur.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "'%s' için indeks girdisi yok.\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -456,7 +456,7 @@ "\n" "Info biçemindeki belgeleri okuyun.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -471,7 +471,7 @@ " -d, --directory=DÄ°Z DÄ°Z'i INFO YOLU'na ekler\n" " -f, --file=DOSYAADI ziyaret edilecek Info dosyasını belirler" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -485,17 +485,17 @@ "belirler\n" " -o, --output=DOSYAADI Seçili düğümlerden DOSYAADI'na çıktı alır" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" " -O, --seçenekleri-göster,--kullanım komut satırı seçenekleri düğümüne " "gidin" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly konuÅŸma sentezcilerine dostça davranır" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -507,7 +507,7 @@ " --version sürüm bilgisini gösterir ve çıkar\n" " -w, --where, --location Info dosyasının fiziksel konumunu yazdırır" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -523,7 +523,7 @@ "Kalan tüm argümanlar, ilk ziyaret edilen düğüme göreceli menü\n" "ögesi isimleri olarak iÅŸlem görür." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -531,7 +531,7 @@ "\n" "TuÅŸ baÄŸlantılarının bir özeti için Info içinden H tuÅŸlayın." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -565,7 +565,7 @@ " tüm elkitabını out.txt'e çıkartır\n" " info -f ./foo.info dir aramadan ./foo.info dosyasını gösterir" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -575,67 +575,67 @@ "genel soru ve tartışmaları help-texinfo@gnu.org'a gönderiniz.\n" "Texinfo anasayfası: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "'(%s)%s' düğümü bulunamadı" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Bir pencere bulunamadı!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Orası bu pencerenin düğümü gibi görünmüyor!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Son pencere silinemez" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Bu düğümde menü yok" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Bu düğümde dipnot yok" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Bu düğümde çapraz baÅŸvuru yok" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Bu düğüm için '%s' yer gösterici yok" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Info komutu '%c' bilinmiyor; yardım almak için '?' deneyin" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "'%s' terminal türü Info çalıştırmak için yeterince akıllı deÄŸil" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Zaten bu düğümün son sayfasındasınız" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Zaten bu düğümün ilk sayfasındasınız" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Sadece bir pencere" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Pencere çok küçük olacaktı" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "Bir yardım penceresi için yer yok, lütfen bir pencere silin" @@ -1427,188 +1427,188 @@ msgid "Using literal strings for searches" msgstr "Aramalarda yazılı dizge kullanılıyor" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Arama, belgenin sonundan sürdürülüyor" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Arama, belgenin başından sürdürülüyor" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "%s altdosyası aranıyor ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Arama baÅŸarısız" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Düzenli ifade arama" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Ara" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " büyük/küçük harf duyarlı ÅŸekilde" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " geriye doÄŸru" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Arama dizgesi çok kısa" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "%s'den son karşılaÅŸmaya geri dönüyor" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Daha fazla eÅŸleÅŸme yok" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Bu düğümü ve alt düğümleri bir dizi için ara" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "%s altdosyası aranıyor:" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Info alt-aÄŸacında bir sonraki eÅŸleÅŸmeye git" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Etkin arama yok" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Info alt-aÄŸacındaki önceki eÅŸleÅŸmeye git" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Bir dizge okur ve onu büyük/küçük harf duyarlı ÅŸekilde arar" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Bir dizge okur ve (onu) arar" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Bir dizge okur ve (onu) geriye doÄŸru arar" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Son aramayı aynı yönde yineler" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Daha önceden arama dizgesi yok" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Son aramayı ters yönde yineler" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Görüntülenen eÅŸleÅŸmiÅŸ aramaları sil" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Bir dizgeyi siz yazarken etkileÅŸimli ÅŸekilde arar" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Düzenli ifade I-arama, geriye doÄŸru: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-arama, geriye doÄŸru: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Düzenli ifade I-arama: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-arama: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "BaÅŸarılamıyor " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Mevcut iÅŸlemi iptal eder" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Çık" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Çalışan Ino'nun sürüm bilgisini görüntüler" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info sürüm %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Görüntüyü yeniden çizer" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Info'dan çıkar" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Bu tuÅŸun küçük harfine atanmış komutu yürütür" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Bilinmeyen komut (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" geçersiz" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "'%s' geçersiz" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Mevcut sayısal argümana bu sayıyı ekle" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Mevcut sayısal argümanı baÅŸlat (veya 4'le çarp)" @@ -2022,32 +2022,32 @@ msgstr "`%s' için girdi bulunamadı; hiçbir ÅŸey silinmedi" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "%s yazmak için açılamıyor: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "yinelemeye her zaman izin verilir" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "argümanlar öntanımlı olarak tırnak içine alınıyor" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "baÅŸlık sayfasının ardındaki içeriÄŸi istiyorsanız @contents komutunu hareket " "ettir" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2055,50 +2055,50 @@ "baÅŸlık sayfasından sonra içeriÄŸi istiyorsanız @shortcontents ve @contents " "komutlarınızı hareket ettirin" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s geçerli bir dil kodu deÄŸildir" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s geçerli bir bölge kodu deÄŸildir" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s geçerli bir bölme olasılığı deÄŸildir" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "%s okunamıyor: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "%s @verbatiminclude dosyasını kapatmada hata: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: %s bulunamıyor" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "yeniden adlandırılacak düğüm yok" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "dosya sonunda yeni adı olmayan düğümler" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "%s açılamıyor: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "@%s içindeki sayı karakteri korunamıyor" @@ -2114,11 +2114,11 @@ msgstr "%s: çıktı bölmeyle uyumsuz" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "%s'i kapatmada hata: %s" @@ -2138,7 +2138,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image dosyası `%s' bulunamıyor, `%s' kullanılacak" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "@U için argüman belirtlimedi" @@ -2147,113 +2147,113 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image dosyası `%s' (HTML için) bulunamadı, `%s' kullanılacak" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "ham biçem %s dönüştürülmedi" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s html baÅŸvuru ayar dosyası açılamıyor: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "kayıp tür" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "bilinmeyen tür: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "%s html baÅŸvuru ayar dosyasını kapatmada hata: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "css dosyasında dizge kapatılmadı" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include yorum içinde sonlandı" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "css dosyasında @import bitmedi" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "CSS dosyası %s bulunamadı" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "--include-file %s açılamadı: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "CSS dosyası %s'i kapatmada hata: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "`%s' için htmlxref.cnf girdisi bulunamadı" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "çerçeve dosyası %s'i kapatmada hata: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "TOC çerçeve dosyası %s'i kapatmada hata: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "evre %s öncelik %3$s'in kotarıcısı %s baÅŸarısız" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "baÅŸlık komutu ya da @top ile bir baÅŸlık belirlemelisiniz" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "yeniden yönlendirme düğüm dosyası %s'i kapatmada hata: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "`%s'nin önceki adı bu belgenin bir düğümüdür" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "yeniden adlandırılmış `%s' düğüm dosyası boÅŸ" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "hedef düğüm (`%s'nin yeni adı) belgede yok: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "yeniden adlandırılmış düğüm yeniden yönlendirme dosyası %s'i kapatmada hata: " "%s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "boÅŸ düğüm adı" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "`%s' için kullanılan bir harici düğümün sözdizimi" @@ -2291,7 +2291,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "@%s 'deki : içeren dizin girdisi geçersiz Info üretiyor: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "`%s' indeks girdisi tüm düğümlerin dışında" @@ -2356,287 +2356,282 @@ msgid "menu entry name should not contain `:'" msgstr "menü girdi adı `:' içermemeli" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "`%s' açılımından sonra boÅŸ düğüm adı" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s `%s' daha önce tanımlanmış" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "iÅŸte @%s olarak önceki tanım" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "@%s'de boÅŸ argüman" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "çok sayıda @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "hatalı ya da boÅŸ @%s resmi argümanı: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "@%s argümanı için hatalı sözdizimi: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s bir isim gerektirir" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "@%s için kötü isim" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s, @%s'in kapama küme parantezinden önce görüldü" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s, @%s'in kapama küme parantezinden önce görüldü" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s Kapanış parantezi eksik" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s kayıp kapanış sınır belirteci sıralı ögeleri: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx baÅŸlamamalı @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx, @item'dan sonra gelmeli" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s'in metni var fakat @item'ı yok" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' `%s' beklerdi, `%s' gördü" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s, @end'den önce görüldü %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "eÅŸleÅŸen `%cend %s' yok" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "yanlış yerleÅŸtirilmiÅŸ %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "eÅŸleÅŸmeyen `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "makro `%s' çok sayıda arg.la çaÄŸrıldı" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s kapanış parantezi eksik" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "makro `%s' argümansız tanımlandı, argümanla kullanıldı" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "@%s açılımındaki \\ parametre adı ya da \\ yerine `%s'i izliyor" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "@%s için kayıp isim" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "@%s için kayıp kategori" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "@%s satırında beklenmedik argüman: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "boÅŸ çoklutablo" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "@%s'e fazladan argüman" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "@%s'ye hatalı argüman" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s bir argüman gerektirir: %c öğesi için biçimlendirici" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "@%s komutu küme parantezi içinde argüman kabul etmiyor @%s satırında olmamalı" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "vurgu komutu `@%s'in @%s argümanı olmasına izin verilmiyor" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s kayıp argüman" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "bilinmeyen @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "@%s %s'e fazladan argüman: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "@%s'e hatalı argüman: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: %s açılamıyor: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "`%s' kodlaması kanonik bir texinfo kodlaması deÄŸil" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "tanınmayan kodlama adı `%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "ilk unsurdan sonra @%s" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s yalnızca bir @multitable satırında anlamlıdır" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s @top ile ilintili olmamalı" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node @%s'den önce geliyor, fakat parçaları düğümlerle iliÅŸkili olmayabilir" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "`%s' de boÅŸ menü girdi adı" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "menü girdisinde boÅŸ düğüm adı" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s @%s'de görülmemeli" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s sadece bir satırın başında görünmelidir" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "makro `%s' daha önce tanımlanmış" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "iÅŸte `%s' nin önceki tanımı" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "Texinfo dil komutu yeniden tanımlanıyor: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "iliÅŸkili karakteri olmayan @%s" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "sıfırla tanımlanmış @%s ya da birden çok argüman {} ile çaÄŸrılmalı" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2645,427 +2640,427 @@ "makro çaÄŸrısı çok içiçe (geçersiz kılmak için MAX_NESTED_MACROS'u atayın; " "mevcut deÄŸer %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "%s makrosunun özyineli çaÄŸrısına izin verilmiyor; gerekirse @rmacro kullanın" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "`@%s' aksan komutundan sonra beyaz boÅŸluk gelmemeli" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "@%s'e argüman olarak bir komut vermek için küme parantezleri kullanın" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s argüman olarak `i' ya da `j' gerektirir, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "`@%s' aksan komutundan sonra yeni satır gelmemelidir" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s küme parantezi bekledi" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "tanımlanmamış bayrak: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "@value için bozuk sözdizimi" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s kullanımdan kalkmış." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s kullanımdan kalkmış; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s sadece bir satırın başında görünmelidir" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "`@%s' bloÄŸu içinde @%s'e izin verilmez" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s yalnızca alt ya da üst kısımda görülmelidir" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "`@%s' bloÄŸu içinde @%s anlamlı deÄŸil" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "boÅŸ @multitable'de @%s" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@item'den önce @tab" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "çok-tablolu ögede, çok fazla sütun (maks %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "çok-tablolunun dışındaki @tab yoksayılıyor" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "tablo ya da liste dışında @%s" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "`@%s' kullanmak için `@%s' den sonra ol(un)malıdır" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "`@titlepage' ve `@quotation' çevreleri dışında @%s anlamlı deÄŸil" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "ilk düğümden sonra @dircategory" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "%s bölgesi içinde %s bölgesine izin verilmez" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "ilk düğümden sonra @direntry" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu geçersiz baÄŸlamda" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "ilk @node öncesinde @%s görüldü" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "belki de sizin @top düğümünüz, @ifinfo'dan ziyade @ifnottex içine " "sarılmalıdır?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s yalnızca matematik baÄŸlamında görünmelidir" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "bilinmeyen komut `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "beklenmedik @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "`@float' çevresi dışında @%s anlamlı deÄŸil" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s, `@float'ın hemen altında olmalıdır" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "çok sayıda @%s yok sayılıyor" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "@%s komutu argüman kabul etmez" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "@%s komutunda bir düğüm ya da harici manüel argüman eksik" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "@%s'de `%s' açılımından sonra boÅŸ çapraz baÅŸvuru adı" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "@%s'de `%s' açılımından sonra boÅŸ çapraz baÅŸvuru baÅŸlığı" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image eksik dosyaadı argümanı" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s'de eksik ilk argüman" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "@U için olan argümanda hex olmayan rakamlar: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "@U için olan argümanda dörtten az sayıda hex rakam: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "@U için olan argüman Unicode maksimumu olan 0x10FFF'yi aşıyor: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "düğüm için çok fazla argüman" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "@end beklenirdi %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "" "@%s bağımsız deÄŸiÅŸken olarak yalnızca bir @-command kabul etmelidir, `%s' " "deÄŸil" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "@%s satırında kalan argüman: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "@%s'e argüman olarak çevre komutu %s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "boÅŸ @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "sütun kesiri numara deÄŸil: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "@sp arg sayısal olmalıdır `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "ayrılmış dizin adı %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "@%s'de bilinmeyen kaynak dizini: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "@%s'de bilinmeyen hedef dizini: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s, %s'in kendi içine kaynaÅŸmasına yol açar, yok sayılıyor" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "@printindex içinde bilinmeyen indeks `%s'" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "`%s' içine birleÅŸtirilmiÅŸ bir diÄŸer `%s' dizini yazdırılıyor" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "Belge baÅŸlangıcından önce printindex: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "@%s arg `top' ya da `bottom' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Yalnızca @%s 10 ya da 11 destekleniyor, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "@%s arg `separate' ya da `end' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "'%s arg `on', `off' ya da `odd' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "@paragrafindent arg sayısal/'none'/`asis' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "@firstparagraphindent arg `none' ya da `insert' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "@exampleindent arg sayısal/`asis' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s açık ya da kapalı bekleniyordu, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "@kbdinputstyle arg `code'/`example'/`distinct' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "@allowcodebreaks arg `true' ya da `false' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "@urefbreakstyle arg `after'/`before'/`none' olmalıdır, `%s' deÄŸil" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "@%s'in çok düşük olan bölüm düzeyi yükseltiliyor" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "@%s'den önce kısım düzeyi komutu yok" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" "daha düşük düzeyde bir unsurdan sonra görülen @%s'in bölüm düzeyi düşürülüyor" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "@%s ile ilintili bir bölümleme komutu yok" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s boÅŸ deÄŸil" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "varolmayan düğüm `%s'e @%s referansı" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s girdi düğüm adı `%s', %s adından farklı `%s'" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "baÅŸvurulmamış düğüm `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "düğüm `%s' `%3$s' için bölümlemede %s fakat menüde deÄŸil" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "düğüm %s `%3$s' menüsündeki `%s' ve bölümlemedeki `%4$s' farklı" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "düğüm `%s' menüdeki `%s' için %s fakat bölümlemede deÄŸil" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "`%s' %s göstergesi (düğüm `%s' için) `%s' %s adından farklı" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "varolmayan düğüm `%s'e %s referansı" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "düğüm `%s', Yukarı hedefi olmasına karşın, `%s' için eksik menü öğesi " "içeriyor" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "`%s' için, menü `%s' deki yukarı ve `%s' yukarısı eÅŸleÅŸmiyor" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "`%s'e @%s, `%s' %s adından farklı" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "@%s'de boÅŸ dizin anahtarı" @@ -3615,20 +3610,23 @@ "insert_nodes_for_sectioning_commands dönüşümü sonuç geri döndürmüyor. Bölüm " "yok mu?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: %s'i kapatmada hata: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: %s dahili baÄŸlantı dosyasını kapatmada hata: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: %s yazmak için açılamıyorı: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s @top ile ilintili olmamalı" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/uk.gmo b/po/uk.gmo index a7c389f..f4e6eab 100644 Binary files a/po/uk.gmo and b/po/uk.gmo differ diff --git a/po/uk.po b/po/uk.po index e93d453..12c294f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.92\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-06-18 21:12+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -393,42 +393,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Меню вузла «%2$s» не міÑтить пункту «%1$s»" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, c-format msgid "Cannot find node '%s'" msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ вузол «%s»" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "Ðе вказано назви програми" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "некоректний номер: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "помилкове Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ виразі Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½Ð½Ð¾Ñ—: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: немає такої змінної" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %s Ñ” некоректним Ð´Ð»Ñ Ð·Ð¼Ñ–Ð½Ð½Ð¾Ñ— %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Спробуйте --help, щоб отримати більше інформації.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -444,12 +444,12 @@ "його.\n" "Ðе надаєтьÑÑ ÐІЯКИХ ГÐРÐÐТІЙ у рамках, передбачених законом.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "не знайдено пунктів покажчика Ð´Ð»Ñ Â«%s»\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -460,7 +460,7 @@ "\n" "ПереглÑд документації у форматі Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -475,7 +475,7 @@ " -d, --directory=ТЕКРдодати ТЕКУ до INFOPATH\n" " -f, --file=ФÐЙЛ вказати файл Info Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ³Ð»Ñду" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -489,16 +489,16 @@ "Info\n" " -o, --output=ФÐЙЛ зберегти обрані вузли до ФÐЙЛÐ" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" " -O, --show-options, --usage перейти до вузла параметрів командного Ñ€Ñдка" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly зручний Ð´Ð»Ñ Ñинтезаторів Ð¼Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð²Ñ–Ð´" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -510,7 +510,7 @@ " --version показати інформацію про верÑÑ–ÑŽ та вийти\n" " -w, --where, --location вивеÑти фізичне Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ Info" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -527,7 +527,7 @@ "Будь-Ñкі залишкові аргументи вважаютьÑÑ Ð½Ð°Ð·Ð²Ð°Ð¼Ð¸ пунктів\n" "меню, відноÑними щодо початкового вузла." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -536,7 +536,7 @@ "Щоб отримати короткий звіт про Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´ клавішам - натиÑніть H " "уÑередині Info." -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -570,7 +570,7 @@ " info -f ./foo.info проÑто показати файл ./foo.info, без пошуку у " "каталозі" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -580,67 +580,67 @@ "загальні Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð¹ Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð´Ð¾ help-texinfo@gnu.org.\n" "Ð”Ð¾Ð¼Ð°ÑˆÐ½Ñ Ñторінка texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, c-format msgid "Cannot find node '(%s)%s'" msgstr "Ðе вдаєтьÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ вузол «(%s)%s»" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Ðе вдаєтьÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ вікно!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Пункт не перебуває у вузлі цього вікна!" -#: info/info.c:1185 +#: info/info.c:1187 msgid "Cannot delete the last window" msgstr "Ðеможливо вилучити єдине вікно" -#: info/info.c:1186 +#: info/info.c:1188 msgid "No menu in this node" msgstr "Цей вузол не має меню" -#: info/info.c:1187 +#: info/info.c:1189 msgid "No footnotes in this node" msgstr "Цей вузол не має виноÑок" -#: info/info.c:1188 +#: info/info.c:1190 msgid "No cross references in this node" msgstr "Цей вузол не міÑтить перехреÑних поÑилань" -#: info/info.c:1189 +#: info/info.c:1191 #, c-format msgid "No '%s' pointer for this node" msgstr "Ðемає вказівника «%s» Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ вузла" -#: info/info.c:1190 +#: info/info.c:1192 #, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Ðевідома команда «%c»; Ñпробуйте «?», щоб отримати довідку" -#: info/info.c:1191 +#: info/info.c:1193 #, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Термінал «%s» недоÑтатньо потужний Ð´Ð»Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Info" -#: info/info.c:1192 +#: info/info.c:1194 msgid "You are already at the last page of this node" msgstr "Ви вже на оÑтанній Ñторінці цього вузла" -#: info/info.c:1193 +#: info/info.c:1195 msgid "You are already at the first page of this node" msgstr "Ви вже на першій Ñторінці цього вузла" -#: info/info.c:1194 +#: info/info.c:1196 msgid "Only one window" msgstr "Є лише одне вікно" -#: info/info.c:1195 +#: info/info.c:1197 msgid "Resulting window would be too small" msgstr "Отримане вікно буде занадто малим" -#: info/info.c:1196 +#: info/info.c:1198 msgid "Not enough room for a help window, please delete a window" msgstr "" "ÐедоÑтатньо міÑÑ†Ñ Ð´Ð»Ñ Ð²Ñ–ÐºÐ½Ð° довідки, будь лаÑка, приберіть одне з вікон" @@ -1439,188 +1439,188 @@ msgid "Using literal strings for searches" msgstr "Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ викориÑтовуватимутьÑÑ Ð·Ð²Ð¸Ñ‡Ð°Ð¹Ð½Ñ– Ñ€Ñдки" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "Пошук продовжено з ÐºÑ–Ð½Ñ†Ñ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°" -#: info/session.c:4121 +#: info/session.c:4118 msgid "Search continued from the beginning of the document" msgstr "Пошук продовжено з початку документа" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Пошук підфайлу %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, c-format msgid "Search failed" msgstr "Помилка пошуку" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Пошук за формальним виразом" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Пошук" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " з врахуваннÑм регіÑтру" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " назад" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "РÑдок пошуку Ñ” надто коротким" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "ПовертаємоÑÑ Ð´Ð¾ оÑтаннього відповідника від %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "Це був оÑтанній результат" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "Шукати Ñ€Ñдок у цьому вузлі Ñ– уÑÑ–Ñ… підлеглих вузлах" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, c-format msgid "Search under %s: " msgstr "Пошук у %s: " -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Перейти до наÑтупного відповідника у піддереві Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Ðемає активного пошуку" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Перейти до попереднього відповідника у піддереві Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Прочитати Ñ€Ñдок та знайти його, враховуючи регіÑÑ‚Ñ€" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Прочитати Ñ€Ñдок та знайти його" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Прочитати Ñ€Ñдок та знайти його у попередньому текÑÑ‚Ñ–" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Повторити попередній пошук у тому ж напрÑмі" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Ðема попереднього Ñ€Ñдку пошуку" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Повторити пошук у зворотньому напрÑмі" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Явно показані результати пошуку" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Шукати Ñ€Ñдок інтерактивно, поки ви його набираєте" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "I-пошук назад за формальним виразом: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "I-пошук назад: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "I-пошук за формальним виразом: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "I-пошук: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Ðевдалий " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "СкаÑувати поточну операцію" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Завершено" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Показати верÑÑ–ÑŽ запущеного екземплÑра Info" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info верÑÑ–Ñ— %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Оновити зображеннÑ" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Вийти з Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "ЗапуÑтити команду, призначену цій клавіші у нижньому регіÑтрі" -#: info/session.c:5357 +#: info/session.c:5354 #, c-format msgid "Unknown command (%s)" msgstr "Ðевідома команда (%s)" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "невірна поÑлідовніÑÑ‚ÑŒ \"%s\"" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "«%s» Ñ” некоректним" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Додати цю цифру до поточного чиÑлового аргументу" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Ініціювати (чи помножити на 4) поточний чиÑловий аргумент" @@ -2038,31 +2038,31 @@ msgstr "у `%s' запиÑів не знайдено; нічого не вилучено" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñу: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "рекурÑÑ–ÑŽ дозволено завжди" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "типово, аргументи подаютьÑÑ Ñƒ лапках" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "переÑуньте команду @contents, Ñкщо піÑÐ»Ñ Ñ‚Ð¸Ñ‚ÑƒÐ»ÑŒÐ½Ð¾Ñ— Ñторінки має бути текÑÑ‚" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2070,50 +2070,50 @@ "переÑуньте команди @shortcontents Ñ– @contents, Ñкщо піÑÐ»Ñ Ñ‚Ð¸Ñ‚ÑƒÐ»ÑŒÐ½Ð¾Ñ— Ñторінки " "має бути текÑÑ‚" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s не Ñ” коректним кодом мови" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s не Ñ” коректним кодом регіону" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "%s не Ñ” коректною можливіÑÑ‚ÑŽ поділу" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "не вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ð·Ð°ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ñ„Ð°Ð¹Ð»Ð° @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: не вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "немає вузла Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "вузли без нової назви наприкінці файла" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "не вдалоÑÑ ÐµÐºÑ€Ð°Ð½ÑƒÐ²Ð°Ñ‚Ð¸ Ñимвол решітки у @%s" @@ -2129,11 +2129,11 @@ msgstr "%s: виведені дані неÑуміÑні із поділом" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ñпроби закрити %s: %s" @@ -2153,7 +2153,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "не знайдено файл @image «%s», викориÑтовуємо «%s»" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "не вказано аргументу @U" @@ -2162,114 +2162,114 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "не знайдено файл @image «%s» (Ð´Ð»Ñ HTML), викориÑтовуємо «%s»" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "формат необроблених даних %s не перетворено" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ файл налаштувань поÑилань html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "пропущено тип" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "нерозпізнаний тип: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ð·Ð°ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ñ„Ð°Ð¹Ð»Ð° налаштувань поÑилань html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "незавершений Ñ€Ñдок у файлі css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "--css-include завершуєтьÑÑ ÐºÐ¾Ð¼ÐµÐ½Ñ‚Ð°Ñ€ÐµÐ¼" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "незавершений Ð·Ð°Ð¿Ð¸Ñ @import у файлі css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "Файл CSS %s не знайдено" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ --include-файл %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ñпроби закрити файл CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "не знайдено запиÑу htmlxref.cnf Ð´Ð»Ñ Â«%s»" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ñпроби закрити файл фрейма %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ñпроби закрити файл фрейма зміÑту %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "помилка обробника %s на етапі %s, пріоритетніÑÑ‚ÑŒ %s" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "Ñлід вказати заголовок за допомогою команди title або @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "помилка під Ñ‡Ð°Ñ Ñпроби закрити файл переÑпрÑÐ¼Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÑƒÐ·Ð»Ð° %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "Ñтарою назвою Ð´Ð»Ñ Â«%s» Ñ” вузол документа" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "файл перейменованого вузла «%s» Ñ” порожнім" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" "вузол Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (нова назва Ð´Ð»Ñ Â«%s») перебуває за межами документа: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" "помилка під Ñ‡Ð°Ñ Ñпроби Ð·Ð°ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ñ„Ð°Ð¹Ð»Ð° переÑпрÑÐ¼ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð¾Ð³Ð¾ вузла, " "%s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ Ð½Ð°Ð·Ð²Ð° вузла" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "ÑинтакÑÐ¸Ñ Ð´Ð»Ñ Ð·Ð¾Ð²Ð½Ñ–ÑˆÐ½ÑŒÐ¾Ð³Ð¾ вузла викориÑтано Ð´Ð»Ñ Â«%s»" @@ -2307,7 +2307,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð¿Ð¾ÐºÐ°Ð¶Ñ‡Ð¸ÐºÐ° у @%s з : призводить до некоректного Info: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "пункт покажчика «%s» ззовні будь-Ñкого вузла" @@ -2372,282 +2372,277 @@ msgid "menu entry name should not contain `:'" msgstr "у назві пункту меню не повинно бути «:»" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ Ð½Ð°Ð·Ð²Ð° вузла піÑÐ»Ñ Ñ€Ð¾Ð·Ð³Ð¾Ñ€Ñ‚Ð°Ð½Ð½Ñ Â«%s»" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s «%s» визначено раніше" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "попереднє Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñк @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "порожній аргумент у @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "декілька @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "помилковий або порожній формальний аргумент @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "помилковий ÑинтакÑÐ¸Ñ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ñƒ @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s вимагає вказати назву" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "помилкова назва @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s розташовано до кінцевої дужки @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s розташовано до кінцевої дужки @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s не має завершальної фігурної дужки" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "у @%s не виÑтачає кінцевої поÑлідовноÑÑ‚Ñ–-роздільника: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx не може починатиÑÑ Ð· @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx Ñлід викориÑтовувати піÑÐ»Ñ @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s міÑтить текÑÑ‚ без @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "`@end' очікує `%s', натоміÑÑ‚ÑŒ отримано `%s'" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s розташовано до @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "не знайдено відповідного `%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "неправильно розташоване %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "«%c%s» без відповідника" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "Ð¼Ð°ÐºÑ€Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Â«%s» викликано з надмірною кількіÑÑ‚ÑŽ аргументів" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s не має завершальної фігурної дужки" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" "Ð¼Ð°ÐºÑ€Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Â«%s» оголошено без аргументу, з Ñким його Ñлід викликати" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "за \\ у розгортанні @%s Ñлідує «%s» заміÑÑ‚ÑŒ назви параметра або \\" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "не виÑтачає назви @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "не виÑтачає категорії Ð´Ð»Ñ @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "неочікуваний аргумент у Ñ€Ñдку @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "порожнє Ñередовище multitable" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "зайвий аргумент @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "помилковий аргумент до @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s потребує аргументу: форматер Ð´Ð»Ñ %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "команда @%s, що не приймає аргументів у дужках, не повинна розташовуватиÑÑ Ñƒ " "Ñ€Ñдку @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "команду акцентуваннÑ, «@%s», не можна викориÑтовувати у аргументі @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "не виÑтачає аргументу @%s" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "невідома команда @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "зайвий аргумент @%s, %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "помилковий аргумент @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "ÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Â«%s» не Ñ” канонічним кодуваннÑм texinfo" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "невідома назва ÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ `%s'" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s піÑÐ»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ елемента" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s має ÑÐµÐ½Ñ Ð»Ð¸ÑˆÐµ у Ñ€Ñдку @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s не повинно бути пов’Ñзано з @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "@node передує @%s, але чаÑтини не можна пов’Ñзувати з вузлами" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ Ð½Ð°Ð·Ð²Ð° пункту меню у «%s»" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ Ð½Ð°Ð·Ð²Ð° вузла у пункті меню" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s не повинно бути у @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s не повинно бути на початку Ñ€Ñдка" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "Ð¼Ð°ÐºÑ€Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ `%s' вже було визначене" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "попереднє Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ `%s' тут" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "Ð¿ÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¸ мови Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s без пов’Ñзаного Ñимволу" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" @@ -2655,7 +2650,7 @@ "команду @%s, визначену без аргументів або з понад одним аргументом, Ñлід " "викликати з дужками, {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2664,433 +2659,433 @@ "виклик Ð¼Ð°ÐºÑ€Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²ÐºÐ»Ð°Ð´ÐµÐ½Ð¾ надто глибоко (вÑтановіть більше Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ " "MAX_NESTED_MACROS; поточне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ â€” %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" "не можна рекурÑивно викликати Ð¼Ð°ÐºÑ€Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %s; Ñкщо потрібно, " "ÑкориÑтайтеÑÑ @rmacro" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "піÑÐ»Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¸ Ð°ÐºÑ†ÐµÐ½Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Â«@%s» має бути Ñимвол пробілу" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "викориÑтовуйте дужки, щоб передати команду Ñк аргумент до @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s потрібен аргумент «i» або «j», але не «%s»" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "піÑÐ»Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð¸ Ð°ÐºÑ†ÐµÐ½Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Â«@%s» має бути Ñимвол розриву Ñ€Ñдка" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s потрібні дужки" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "невідомий прапорець: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "помилковий ÑинтакÑÐ¸Ñ Ð´Ð»Ñ @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s Ñ” заÑтарілим." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s Ñ” заÑтарілим; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s не повинно бути на початку Ñ€Ñдка" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s не можна викориÑтовувати вÑередині блоку «@%s»" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s має бути розташовано лише у верхньому або нижньому колонтитулі" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s не має ÑенÑу уÑередині блоку `%s'" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s у порожньому multitable" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab перед @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "занадто багато Ñтовпчиків у об’єкті multitable (макÑимум %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "пропуÑкаєтьÑÑ @tab зовні multitable" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s поза межами таблиці або ÑпиÑку" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "має бути розташовано піÑÐ»Ñ Â«@%s», щоб можна було кориÑтуватиÑÑ Â«@%s»" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s не має ÑенÑу ззовні оточень `@titlepage' та `@quotation'" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory піÑÐ»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ вузла" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "не можна викориÑтовувати регіон %s вÑередині регіону %s" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry піÑÐ»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ вузла" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu у некоректному контекÑÑ‚Ñ–" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s розташовано перед першим @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "мабуть, ваш вузол @top повинен бути обгорнутий у @ifnottex заміÑÑ‚ÑŒ @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s має викориÑтовуватиÑÑ Ð»Ð¸ÑˆÐµ у контекÑÑ‚Ñ– формул" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "невідома команда «%s»" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "неочікуване @" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s не має ÑенÑу ззовні Ñередовища «@float»" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s має бути розташовано одразу під «@float»" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "ігноруємо зайві @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "команді @%s не передаютьÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð¸" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "у команді @%s не виÑтачає аргументу вузла або зовнішнього підручника" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" "у @%s виÑвлено порожню назву перехреÑного поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð¿Ñ–ÑÐ»Ñ Ñ€Ð¾Ð·Ð³Ð¾Ñ€Ñ‚Ð°Ð½Ð½Ñ Â«%s»" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" "у @%s виÑвлено порожній заголовок перехреÑного поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð¿Ñ–ÑÐ»Ñ Ñ€Ð¾Ð·Ð³Ð¾Ñ€Ñ‚Ð°Ð½Ð½Ñ " "«%s»" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "не вказано аргумент назви файлу Ð´Ð»Ñ @image" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "у @%s не виÑтачає першого аргументу" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "нешіÑтнадцÑткові цифри у аргументі @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "менше за 4 шіÑтнадцÑткові цифри у аргументі @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" "аргумент @U перевищує за розміром макÑимальний розмір Ð´Ð»Ñ Unicode, 0x10FFFF: " "%s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "зайві аргументи Ð´Ð»Ñ Ð²ÑƒÐ·Ð»Ð°" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "мало бути @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s приймає Ñк аргумент лише @-команди, але не «%s»" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "залишковий аргумент у Ñ€Ñдку @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "команда Ñередовища %s Ñк аргумент @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "порожній Ð·Ð°Ð¿Ð¸Ñ @%s" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "чаÑтка Ñтовпчика не Ñ” чиÑлом: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "аргументом @sp має бути чиÑло, а не «%s»" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "зарезервована назва індекÑу %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "невідомий Ñ–Ð½Ð´ÐµÐºÑ Ð´Ð¶ÐµÑ€ÐµÐ»Ð° у @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "невідомий Ñ–Ð½Ð´ÐµÐºÑ Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñƒ @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "@%s призведе до Ð¾Ð±â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ %s з Ñамим Ñобою, ігноруємо" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "невідомий Ñ–Ð½Ð´ÐµÐºÑ Â«%s» у @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "друкуємо покажчик «%s» об’єднаний з іншим, «%s»" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "printindex до початку документа: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "аргументом @%s має бути «top» або «bottom», але не «%s»" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "ПідтримуютьÑÑ Ð»Ð¸ÑˆÐµ @%s 10 чи 11, а не `%s'" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "аргументом @%s має бути «separate» або «end», але не «%s»" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "аргументом @%s має бути «on», «off» або «odd», але не «%s»" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" "аргументом @paragraphindent має бути чиÑло, «none» або «asis», але не «%s»" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" "аргументом @firstparagraphindent має бути «none» або «insert», але не «%s»" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "аргументом @exampleindent має бути чиÑло або «asis», але не «%s»" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "@%s мало бути on або off, але не «%s»" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "аргументом @kbdinputstyle має бути «code»/«example»/«distinct», але не «%s»" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "аргументом @allowcodebreaks має бути «true» або «false», але не «%s»" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" "аргументом @urefbreakstyle має бути «after»/«before»/«none», але не «%s»" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "піднімаємо рівень розділу @%s; зараз рівень Ñ” надто низьким" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "немає команди Ñ€Ñ–Ð²Ð½Ñ Ð³Ð»Ð°Ð²Ð¸ перед @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "знижуємо рівень розділу @%s, Ñкий вкладено у розділ нижчого рівнÑ" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "з @%s не пов’Ñзано жодної команди ÑÑ‚Ñ€ÑƒÐºÑ‚ÑƒÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñ–Ð²" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s не Ñ” порожнім" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s поÑилаєтьÑÑ Ð½Ð° відÑутній вузол «%s»" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "назва вузла запиÑу @%s, «%s», відрізнÑєтьÑÑ Ð²Ñ–Ð´ назви %s, «%s»" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "вузол, на Ñкий нема поÑилань `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "вузол «%s» Ñ” вузлом %s Ð´Ð»Ñ Â«%s» у Ñтруктурі розділів, але не у меню" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" "виÑвлено відмінноÑÑ‚Ñ– у запиÑах вузла %s «%s» у меню «%s» Ñ– у Ñтруктурі " "розділів «%s»" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "вузол «%s» Ñ” вузлом %s Ð´Ð»Ñ Â«%s» у меню, але не у Ñтруктурі розділів" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "вказівник %s, «%s», (Ð´Ð»Ñ Ð²ÑƒÐ·Ð»Ð° «%s») відрізнÑєтьÑÑ Ð²Ñ–Ð´ назви %s, «%s»" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s поÑилаєтьÑÑ Ð½Ð° відÑутній «%s»" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "вузол `%s' не має пункту меню Ð´Ð»Ñ `%s', хоча й Ñ” його горішнім вузлом" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "Ð´Ð»Ñ Â«%s», вгору меню «%s» Ñ– вгору «%s» відрізнÑÑŽÑ‚ÑŒÑÑ Ð¾Ð´Ð¸Ð½ від одного" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s до «%s», відрізнÑєтьÑÑ Ð²Ñ–Ð´ назви %s, «%s»" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "порожній ключ індекÑу у @%s" @@ -3663,20 +3658,23 @@ "ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ insert_nodes_for_sectioning_commands не дало ніÑких " "результатів. Ðемає розділу?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: помилка під Ñ‡Ð°Ñ Ñпроби закрити %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: помилка під Ñ‡Ð°Ñ Ñпроби закрити файл внутрішніх поÑилань %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: не вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñу даних: %s\n" + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s не повинно бути пов’Ñзано з @top" #~ msgid "" #~ " -R, --raw-escapes output \"raw\" ANSI escapes (default).\n" diff --git a/po/vi.gmo b/po/vi.gmo index 77d8c76..6f1ce22 100644 Binary files a/po/vi.gmo and b/po/vi.gmo differ diff --git a/po/vi.po b/po/vi.po index 79f6a82..70dec81 100644 --- a/po/vi.po +++ b/po/vi.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: texinfo 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-24 06:41+0700\n" "Last-Translator: Trần Ngá»c Quân \n" "Language-Team: Vietnamese \n" @@ -394,42 +394,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "Không có mục trình Ä‘Æ¡n “%s†trong nút “%sâ€." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "Không thể tìm thấy nút thông tin “%sâ€." -#: info/info.c:437 +#: info/info.c:439 #, fuzzy, c-format msgid "No program name given" msgstr "ChÆ°a Ä‘Æ°a ra tên chÆ°Æ¡ng trình." -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "con số không hợp lệ: %s\n" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "gán biến sai dạng: %s" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "%s: không có biến nhÆ° thế" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, c-format msgid "value %s is not valid for variable %s" msgstr "giá trị %s là không hợp lệ vá»›i biến %s" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "Hãy thá»­ lệnh trợ giúp “--help†để xem thông tin thêm.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -444,12 +444,12 @@ "Äây là phần má»m tá»± do: bạn có quyá»n thay đổi và phát hành lại nó.\n" "KHÔNG CÓ BẢO HÀNH GÃŒ CẢ, vá»›i Ä‘iá»u kiện được pháp luật cho phép.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, c-format msgid "no index entries found for '%s'\n" msgstr "không tìm thấy chỉ mục cho “%sâ€\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -460,7 +460,7 @@ "\n" "Äá»c tài liệu hÆ°á»›ng dẫn theo định dạng Info.\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -476,7 +476,7 @@ " --dribble=TẬP_TIN lÆ°u các cú bấm phím vào TẬP-TIN này.\n" " -f, --file=TẬP_TIN chỉ định phần hÆ°á»›ng dẫn Info muốn xem." -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -490,17 +490,17 @@ "đầu tiên.\n" " -o, --output=TẬP_TIN xuất các nút đã chá»n vào tập tin này." -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" " -b, --speech-friendly thân thiện vá»›i thiết bị tổng hợp tiếng nói." -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -517,7 +517,7 @@ " -w, --where, --location in vị trí vật lý của tập tin Info.\n" " -x, --debug=SỠđặt mức gỡ lá»—i (-1 là tất cả).\n" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -534,7 +534,7 @@ "Bất cứ đối số còn lại nào được xá»­ lý nhÆ° tên của mục trình Ä‘Æ¡n\n" "tÆ°Æ¡ng đối vá»›i nút đầu tiên được thăm." -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." @@ -542,7 +542,7 @@ "\n" "Äể xem bản tóm tắt các tổ hợp phím, hãy gõ “H†bên trong Info." -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -575,7 +575,7 @@ " info -f ./foo.info hiển thị tập tin “./foo.infoâ€, không tìm kiếm " "thÆ° mục" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -586,75 +586,75 @@ "Thông báo lá»—i dịch cho: .\n" "Trang chủ texinfo: http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "Không thể tìm thấy nút thông tin “(%s)%sâ€." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "Không tìm thấy cá»­a sổ!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "Äiểm không xuất hiện bên trong cái nút thông tin của cá»­a sổ này." -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "Không thể xóa cá»­a sổ cuối cùng." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "Không có trình Ä‘Æ¡n trong nút thông tin này." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "Không có cÆ°á»›c chú trong nút thông tin này." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "Không có tham chiếu chéo trong nút thông tin này." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "Không có con trỠ“%s†cho nút này." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "Không nhận ra lệnh Info “%câ€; hãy thá»­ lệnh “?†để xem trợ giúp." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "Thiết bị cuối kiểu “%s†không đủ khéo để chạy Info." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "Bạn ở trang cuối cùng của nút thông tin này." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "Bạn ở trang đầu tiên của nút thông tin này." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "Chỉ má»™t cá»­a sổ." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "Cá»­a sổ kết quả quá nhá»." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "Không đủ chá»— cho cá»­a sổ trợ giúp: hãy xóa má»™t cá»­a sổ." @@ -1449,191 +1449,191 @@ msgid "Using literal strings for searches" msgstr "Dùng chuá»—i nghÄ©a chữ khi tìm kiếm." -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "Tiến trình tìm kiếm đã tiếp tục từ cuối của tài liệu." -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "Tiến trình tìm kiếm đã tiếp tục từ đầu của tài liệu." -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "Äang tìm kiếm tập tin phụ %s…" -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "Gặp lá»—i khi tìm kiếm." -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "Tìm kiếm dùng biểu thức chính quy" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "Tìm kiếm" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr " phân biết chữ hoa/thÆ°á»ng " -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr " ngược" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "%s%s%s: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "Chuá»—i tìm kiếm quá ngắn" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "Trở lại đến chá»— khá»›p cuối từ %s" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "No more matches" msgstr "Không tìm thấy thêm nữa." -#: info/session.c:4577 +#: info/session.c:4574 #, fuzzy msgid "Search this node and subnodes for a string" msgstr "Tìm má»™t chuá»—i trong nút này và nút con." #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "Äang tìm kiếm tập tin phụ %s…" -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "Äi đến chá»— khá»›p kế tiếp trong cây-con Info" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "Không có tìm kiếm nào hiện Ä‘ang hoạt Ä‘á»™ng" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "Äi đến chá»— khá»›p kế trÆ°á»›c trong cây-con Info" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Äá»c chuá»—i và tìm kiếm nó, có phân biệt HOA/thÆ°á»ng" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Äá»c chuá»—i và tìm kiếm nó" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Äá»c chuá»—i và tìm kiếm theo hÆ°á»›ng ngược" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "Làm lại việc tìm kiếm cuối vá»›i cùng hÆ°á»›ng" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "Không có chuá»—i tìm kiếm trÆ°á»›c" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "Làm lại việc tìm kiếm cuối, vá» ngược phía hÆ°á»›ng" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "Xóa trình bày khá»›p mẫu" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "Tìm kiếm tÆ°Æ¡ng tác chuá»—i Ä‘ang gõ" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "Tìm kiếm ngược I dùng biểu thức chính quy: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "Tìm kiếm ngược I: " -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "Tìm kiếm I dùng biểu thức chính quy: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "Tìm kiếm I: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "Äang thất bại " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "Hủy thao tác Ä‘ang chạy" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "Thoát" -#: info/session.c:5286 +#: info/session.c:5283 msgid "Display version of Info being run" msgstr "Hiển thị thông tin phiên bản của Info Ä‘ang chạy" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "GNU Info phiên bản %s" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "Vẽ lại màn hình" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "Thoát khá»i Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "Chạy lệnh đã đóng kết đến biến thế chữ thÆ°á»ng của phím này" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "Lệnh lạ (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "“%s†không hợp lệ" -#: info/session.c:5361 +#: info/session.c:5358 #, c-format msgid "'%s' is invalid" msgstr "“%s†không hợp lệ" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "Thêm chữ số này vào đối số thuá»™c số hiện tại" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "Bắt đầu (hoặc nhân vá»›i 4) đối số thuá»™c số hiện tại)" @@ -2051,31 +2051,31 @@ msgstr "không tìm thấy mục nhập cho “%s†nên không xóa gì" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "không thể mở “%s†để ghi: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "luôn cho phép đệ qui" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "các đối số được trích dẫn theo mặc định" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" "di chuyển lệnh @contents của bạn nếu bạn muốn các ná»™i dung sau trang tiêu Ä‘á»" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" @@ -2083,50 +2083,50 @@ "di chuyển lệnh @shortcontents và @contents của bạn nếu bạn muốn các ná»™i dung " "sau trang tiêu Ä‘á»" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, perl-format msgid "%s is not a valid language code" msgstr "%s không phải mã ngôn ngữ hợp lệ" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, perl-format msgid "%s is not a valid region code" msgstr "%s không phải mã vùng hợp lệ" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "“%s†không phải là khả năng chia tách (split) hợp lệ" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "không thể Ä‘á»c %s: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "gặp lá»—i khi đóng tập tin @verbatiminclude %s: %s" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "@%s: không tìm thấy %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "không có nút nào được đổi tên" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "các nút không có tên má»›i tại cuối tập tin" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "không thể mở %s: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "không thể bảo vệ ký tá»± băm trong @%s" @@ -2142,11 +2142,11 @@ msgstr "%s: kết xuất không tÆ°Æ¡ng thích vá»›i split (chia tách)" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, perl-format msgid "error on closing %s: %s" msgstr "gặp lá»—i khi đóng %s: %s" @@ -2166,7 +2166,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "không tìm thấy tập tin @image “%sâ€, Ä‘ang dùng “%sâ€" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 msgid "no argument specified for @U" msgstr "chÆ°a chỉ định đối số cho @U" @@ -2175,111 +2175,111 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "Tập tin @image “%s†(cho HTML) không Ä‘á»c được, dùng “%sâ€" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "định dạng thô %s không được chuyển đổi" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "không thể mở tập tin cấu hình dùng để tham chiếu html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 msgid "missing type" msgstr "thiếu kiểu" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, perl-format msgid "unrecognized type: %s" msgstr "không nhận ra kiểu: %s" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, perl-format msgid "error on closing html refs config file %s: %s" msgstr "gặp lá»—i khi đóng tập tin cấu hình tham chiếu cho html %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "chuá»—i chÆ°a được đóng trong tập tin css" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "“--css-include†kết thúc tại phần ghi chú" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "@import chÆ°a hoàn thiện trong tập tin css" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "không tìm thấy tập tin CSS %s" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, perl-format msgid "could not open --include-file %s: %s" msgstr "không thể mở --include-file %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, perl-format msgid "error on closing CSS file %s: %s" msgstr "gặp lá»—i khi đóng tập tin CSS %s: %s" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "không tìm thấy mục htmlxref.cnf dành cho “%sâ€" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, perl-format msgid "error on closing frame file %s: %s" msgstr "gặp lá»—i khi đóng tập tin khung (frame) %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "gặp lá»—i khi đóng tập tin khung (frame) TOC %s: %s" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "bá»™ tiếp hợp %s của trạng thái %s mức Æ°u tiên %s gặp lá»—i" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "phải chỉ định má»™t tiêu Ä‘á» cùng vá»›i lệnh title hay @top" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, perl-format msgid "error on closing redirection node file %s: %s" msgstr "gặp lá»—i khi đóng tập tin nút chuyển hÆ°á»›ng %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, perl-format msgid "old name for `%s' is a node of the document" msgstr "tên cÅ© dành cho “%s†là má»™t nút tài liệu" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, perl-format msgid "file empty for renamed node `%s'" msgstr "tập tin trống rá»—ng cho nút được đổi tên “%sâ€" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "nút đích (tên má»›i cho “%sâ€) không ở trong tài liệu: %s" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "gặp lá»—i khi đóng tập tin nút chuyển hÆ°á»›ng được đổi tên %s: %s" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "tên nút rá»—ng" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "cú pháp cho nút mở rá»™ng được dùng cho “%sâ€" @@ -2317,7 +2317,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "Mục chỉ số trong @%s vá»›i: sản sinh Info không hợp lệ: %s" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, perl-format msgid "entry for index `%s' outside of any node" msgstr "mục nhập cho chỉ mục “%s†nằm ở ngoài má»i nút" @@ -2383,289 +2383,284 @@ msgid "menu entry name should not contain `:'" msgstr "tên mục trình Ä‘Æ¡n không được chứa dấu hai chấm “:â€" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "tên nút trống rá»—ng sau phần mở rá»™ng “%sâ€" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, perl-format msgid "@%s `%s' previously defined" msgstr "@%s “%s†đã định nghÄ©a từ trÆ°á»›c" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, perl-format msgid "here is the previous definition as @%s" msgstr "ở đây có định nghÄ©a trÆ°á»›c nhÆ° là @%s" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, perl-format msgid "empty argument in @%s" msgstr "đối số trống rá»—ng trong @%s" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "nhiá»u @%s" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "đối số có dạng thức sai hoặc trống rá»—ng @%s: %s" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "cú pháp sai cho đối số @%s: %s" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s cần đến tên" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "tên sai cho @%s" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "@end %s có vẻ trÆ°á»›c dấu ngoặc ôm đóng @%s" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "@%s có vẻ trÆ°á»›c dấu ngoặc ôm đóng @%s" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, perl-format msgid "%c%s missing closing brace" msgstr "%c%s: thiếu dấu ngoặc móc đóng" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "@%s thiếu dãy giá»›i hạn đóng: %s}" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "@itemx không được bắt đầu bằng @%s" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "@itemx phải theo sau @item" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "@%s có ná»™i dung nhÆ°ng không có @item" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "“@end†cần “%sâ€, nhÆ°ng lại nhận được “%sâ€" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "@%s có vẻ trÆ°á»›c @end %s" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, perl-format msgid "no matching `%cend %s'" msgstr "“%cend %s†không đủ cặp" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, perl-format msgid "misplaced %c" msgstr "%c không đúng chá»—" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, perl-format msgid "unmatched `%c%s'" msgstr "“%c%s†chÆ°a khá»›p cặp" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, perl-format msgid "macro `%s' called with too many args" msgstr "vÄ© lệnh “%s†được gá»i vá»›i quá nhiá»u đối số" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, perl-format msgid "@%s missing closing brace" msgstr "@%s thiếu dấu ngoặc móc đóng" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "" "vÄ© lệnh “%s†được khai báo không có đối số nhÆ°ng lại được gá»i cùng vá»›i đối số" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "“\\†trong phần mở rá»™ng @%s theo sau “%s†thay vì tên tham số hay “\\â€" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, perl-format msgid "missing name for @%s" msgstr "thiếu tên cho @%s" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "thiếu category cho @%s" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "gặp đối số bất thÆ°á»ng trên dòng @%s: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 msgid "empty multitable" msgstr "Ä‘a-bảng rá»—ng" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, perl-format msgid "superfluous argument to @%s" msgstr "đối số không cần thiết cho @%s" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, perl-format msgid "bad argument to @%s" msgstr "đối số sai cho @%s" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s cần thiết má»™t đối số: bá»™ định dạng cho %citem" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" "lệnh @%s không chấp nhận đối số trong dấu ngoặc ôm không thể ở dòng @%s" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "lệnh nhấn mạnh accen “@%s†không cho phép đối số @%s" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, perl-format msgid "@%s missing argument" msgstr "@%s thiếu đối số" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, perl-format msgid "unknown @end %s" msgstr "không hiểu @end %s" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "đối số không cần thiết cho @%s %s: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, perl-format msgid "bad argument to @%s: %s" msgstr "đối số sai cho @%s: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "@%s: không thể mở %s: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "bảng mã “%s†không phải là bảng mã “canonical texinfoâ€" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "không nhận ra tên bảng mã “%sâ€" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "@%s sau phần tá»­ thứ nhất" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "@%s chỉ có nghÄ©a khi ở dòng @multitable" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "@%s không được tổ hợp cùng vá»›i @top" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" "@node đứng trÆ°á»›c @%s, nhÆ°ng bá»™ phận của nó không được tổ hợp cùng vá»›i các nút" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, perl-format msgid "empty menu entry name in `%s'" msgstr "tên mục trình Ä‘Æ¡n trống rá»—ng trong “%sâ€" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "tên nút trống trong mục trình Ä‘Æ¡n" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "@%s không được xuất hiện trong @%s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "@end %s chỉ nên xuất hiện ở đầu má»™t dòng" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "vÄ© lệnh “%s†được định nghÄ©a trÆ°á»›c" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "đây là lá»i định nghÄ©a trÆ°á»›c của “%sâ€" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "định nghÄ©a lại lệnh ngôn ngữ Texinfo: @%s" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "@%s mà không tổ hợp cùng ký tá»±" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" "@%s được định nghÄ©a vá»›i không hay nhiá»u hÆ¡n má»™t đối số mà nó được gá»i vá»›i {}" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " @@ -2674,287 +2669,287 @@ "vÄ© lệnh gá»i lồng nhau quá sâu (đặt MAX_NESTED_MACROS để đè lên giá trị này; " "giá trị hiện tại %d)" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "gá»i đệ qui macro %s là không được phép; dùng @rmacro nếu thấy cần" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "lệnh nhấn mạnh “@%s†không cho phép có khoảng trắng Ä‘i theo" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "dùng dấu ngoặc móc {} để Ä‘Æ°a ra lệnh dạng đối số tá»›i @%s" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s cần “i†hay “j†làm đối số, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "lệnh nhấn mạnh “@%s†không cho phép có dòng má»›i Ä‘i theo sau" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, perl-format msgid "@%s expected braces" msgstr "@%s cần dấu ngoặc móc {}" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "chÆ°a định nghÄ©a cá»: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "cú pháp sai đối vá»›i @value" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, perl-format msgid "%c%s is obsolete." msgstr "%c%s quá cÅ©." -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s quá cÅ©; %s" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "@%s chỉ nên xuất hiện đầu tại đầu dòng" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s không được phép nằm bên trong khối “@%sâ€" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "@%s chỉ được phép xuất hiện tại phần đầu hoặc chân" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s không có nghÄ©a bên trong khối “@%sâ€" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, perl-format msgid "@%s in empty multitable" msgstr "@%s trong multitable trống rá»—ng" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "@tab trÆ°á»›c @item" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, perl-format msgid "too many columns in multitable item (max %d)" msgstr "quá nhiá»u cá»™t trong mục Ä‘a bảng (tối Ä‘a là %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "Ä‘ang bá» qua @tab bên ngoài Ä‘a bảng" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "@%s nằm ngoài bảng hay danh sách" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "phải sau “@%s†để dùng “@%sâ€" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "@%s không có nghÄ©a bên ngoài môi trÆ°á»ng “@titlepage†và “@quotationâ€" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "@dircategory sau nút đầu tiên" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, perl-format msgid "region %s inside region %s is not allowed" msgstr "vùng %s nằm trong vùng %s là không hợp lệ" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "@direntry sau nút đầu tiên" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "@menu trong ngữ cảnh không hợp lệ" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, perl-format msgid "@%s seen before first @node" msgstr "@%s có vẻ trÆ°á»›c @node" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "" "có lẽ nút “@top†(đỉnh) của bạn nên được bao bá»c bằng @ifnottex thay cho " "@ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "@%s chỉ được phép xuất hiện trong ngữ cảnh toán há»c" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, perl-format msgid "unknown command `%s'" msgstr "không hiểu lệnh “%sâ€" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 msgid "unexpected @" msgstr "gặp @ bất thÆ°á»ng" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s không có nghÄ©a nếu ở bên ngoài môi trÆ°á»ng “@float†(dấu chấm Ä‘á»™ng)" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "@%s phải dÆ°á»›i “@floatâ€" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "bá» qua nhiá»u @%s" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "lệnh @%s không chấp nhận đối số" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "lệnh @%s thiếu má»™t nút hay tham số thủ công mở rá»™ng" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "trong @%s tên tham chiếu chéo sau phần mở rá»™ng “%sâ€" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "trong @%s tiêu Ä‘á» tham chiếu chéo trống rá»—ng sau “%s†mở rá»™ng" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image thiếu đối số tên tập tin" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, perl-format msgid "@%s missing first argument" msgstr "@%s thiếu đối số đầu tiên" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "chữ số không phải dạng thập lục phân trong đối số cho @U: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "có ít hÆ¡n bốn chữ số dạng thập lục trong đối số cho @U: %s" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "đối số cho @U vượt quá mức tối Ä‘a Unicode 0x10FFFF: %s" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "các đối số thừa cho nút" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, perl-format msgid "expected @end %s" msgstr "cần @end %s" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "@%s chỉ có thể cấp nhận @-command là đối số, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "đối số còn lại trên dòng @%s: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, perl-format msgid "environment command %s as argument to @%s" msgstr "lệnh môi trÆ°á»ng %s nhÆ° là tham số cho @%s" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "@%s rá»—ng" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "số lượng cá»™t không phải là má»™t con số: %s" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "đối số @sp phải là má»™t con số, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "đã đảo ngược tên chỉ mục %s" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, perl-format msgid "unknown source index in @%s: %s" msgstr "không hiểu chỉ mục nguồn trong @%s: %s" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "không hiểu chỉ mục đích trong @%s: %s" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" "@%s dẫn Ä‘Æ°á»ng đến má»™t hòa trá»™n của %s trong chính bản thân nó, Ä‘ang bá» qua" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, perl-format msgid "unknown index `%s' in @printindex" msgstr "không hiểu chỉ mục “%s†trong @printindex" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "Ä‘ang in bảng mục lục “%s†đã hòa trá»™n vá»›i má»™t cái khác, “%sâ€" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "in mục lục trÆ°á»›c khi tài liệu bắt đầu: @printindex %s" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "" @@ -2963,12 +2958,12 @@ " * bottom đáy\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "Chỉ há»— trợ @%s 10 hay 11, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "" @@ -2977,12 +2972,12 @@ " * end cuối\n" "không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "@%s Ä‘.số phải là “onâ€, “off†hoặc “oddâ€, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "" @@ -2992,7 +2987,7 @@ " * asis nhÆ° thế\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "" @@ -3001,7 +2996,7 @@ " * insert chèn\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "" @@ -3011,18 +3006,18 @@ " * asis nhÆ° thế\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "cần @%s bật hay tắt, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" "Ä‘.số @kbdinputstyle phải là “codeâ€/“exampleâ€/“distinctâ€, không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "" @@ -3031,7 +3026,7 @@ " * false sai\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "" @@ -3041,89 +3036,89 @@ " * none: không\n" "chứ không phải “%sâ€" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "nâng mức chÆ°Æ¡ng của @%s là quá thấp" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "không có lệnh chapter-level trÆ°á»›c @%s" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "Ä‘ang hạ thấp mức chÆ°Æ¡ng của @%s xuất hiện sau má»™t phần tá»­ ở thấp hÆ¡n" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "không có lệnh chÆ°Æ¡ng nào tổ hợp cùng vá»›i @%s" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "@%s không trống rá»—ng" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "@%s tham chiếu đến nút chÆ°a tồn tại “%sâ€" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "@%s tên nút mục trình Ä‘Æ¡n “%s†khác biệt vá»›i %s tên “%sâ€" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "nút chÆ°a được tham chiếu “%sâ€" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" "nút “%s†là %s dành cho “%s†trong phần chÆ°Æ¡ng nhÆ°ng không có trong trình Ä‘Æ¡n" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "nút %s “%s†trong trình Ä‘Æ¡n “%s†và trong chÆ°Æ¡ng “%s†khác nhau" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "nút “%s†là %s cho “%s†trong trình Ä‘Æ¡n nhÆ°ng mà không ở trong chÆ°Æ¡ng" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "con trá» %s “%s†(cho nút “%sâ€) khác vá»›i %s tên “%sâ€" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s tham chiếu đến nÆ¡i mà chÆ°a có “%sâ€" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" "nút “%s†không có mục trình Ä‘Æ¡n cho “%sâ€, không kể nút này là đích Lên của nó" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "cho “%sâ€, nhảy lên trong trình Ä‘Æ¡n “%s†và lên “%s†không khá»›p" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "@%s thành “%sâ€, khác vá»›i %s tên “%sâ€" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "khóa chỉ mục trống rá»—ng trong @%s" @@ -3695,17 +3690,17 @@ "sá»± biến đổi insert_nodes_for_sectioning_commands không trả vá» kết quả. Không " "có chÆ°Æ¡ng nào à?" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "%s: lá»—i đóng tập tin %s: %s\n" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: gặp lá»—i khi đóng tập tin liên kết ná»™i tại %s: %s\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: không thể mở “%s†để ghi: %s\n" @@ -3722,6 +3717,9 @@ #~ " --restore=TẬP_TIN Ä‘á»c các cú bấm phím đầu tiên từ TẬP_TIN " #~ "này.\n" #~ " -O, --show-options, --usage Ä‘i tá»›i nút chứa các tùy chá»n dòng lệnh." + +#~ msgid "@%s should not be associated with @top" +#~ msgstr "@%s không được tổ hợp cùng vá»›i @top" #~ msgid "%s: option '--%s' doesn't allow an argument\n" #~ msgstr "%s: tùy chá»n “--%s†không cho phép đối số\n" diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo index 3425b49..0917254 100644 Binary files a/po/zh_CN.gmo and b/po/zh_CN.gmo differ diff --git a/po/zh_CN.po b/po/zh_CN.po index ea952c5..5d96935 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 4.13\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2009-05-21 15:08中国标准时间\n" "Last-Translator: Ji ZhengYu \n" "Language-Team: Chinese (simplified) \n" @@ -393,42 +393,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "节点“%2$sâ€ä¸­æ²¡æœ‰èœå•é¡¹â€œ%1$sâ€ã€‚" -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "无法找到节点“%sâ€ã€‚" -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "设定 Info å˜é‡çš„值" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "å°è¯• --更多的求助信æ¯ã€‚\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -443,12 +443,12 @@ "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "找ä¸åˆ°å«æœ‰â€œ%sâ€çš„索引\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -459,7 +459,7 @@ "\n" "以 Info æ ¼å¼é˜…读文档。\n" -#: info/info.c:1095 +#: info/info.c:1097 #, fuzzy msgid "" "Frequently-used options:\n" @@ -474,7 +474,7 @@ " --dribble=FILENAME 将用户的击键æ¡ç›®åœ¨ FILENAME 中。\n" " -f, --file=FILENAME 指定想æµè§ˆçš„ Info 文件。" -#: info/info.c:1102 +#: info/info.c:1104 #, fuzzy msgid "" " -h, --help display this help and exit\n" @@ -487,16 +487,16 @@ " -n, --node=NODENAME 在首个æµè§ˆè¿‡çš„ Info 文件中指定节点。\n" " -o, --output=FILENAME 将选中的节点全输出至 FILENAME。" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 #, fuzzy msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr " -b, --speech-friendly 对å‘音器兼容。" -#: info/info.c:1116 +#: info/info.c:1118 #, fuzzy msgid "" " --subnodes recursively output menu items\n" @@ -509,7 +509,7 @@ " --version 显示版本信æ¯å¹¶é€€å‡ºã€‚\n" " -w, --where, --location æ‰“å° Info 文件在系统中的ä½ç½®ã€‚" -#: info/info.c:1122 +#: info/info.c:1124 #, fuzzy msgid "" "\n" @@ -526,7 +526,7 @@ "任何åŽç»­å‚数都被认为是与åˆå§‹æµè§ˆ\n" "节点有关的èœå•é¡¹å称。" -#: info/info.c:1129 +#: info/info.c:1131 #, fuzzy msgid "" "\n" @@ -535,7 +535,7 @@ "\n" "在帮助信æ¯ä¸­æŒ‰ h 获å–有关按键绑定的内容。" -#: info/info.c:1132 +#: info/info.c:1134 #, fuzzy msgid "" "\n" @@ -563,7 +563,7 @@ " info --subnodes -o out.txt emacs 将整个手册页输出至 out.txt\n" " info -f ./foo.info 显示文件 ./foo.info,而ä¸æ˜¯æŸ¥æ‰¾ç›®å½•" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" "general questions and discussion to help-texinfo@gnu.org.\n" @@ -573,75 +573,75 @@ "一般的问题和讨论请å‘é€åˆ° help-texinfo@gnu.org。\n" "Texinfo 主页:http://www.gnu.org/software/texinfo/" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "无法找到节点“(%s)%sâ€ã€‚" -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "无法找到一个窗å£ï¼" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "光标没有出现在该窗å£çš„节点之中ï¼" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "无法删除最åŽçš„窗å£ã€‚" -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "该节点中没有èœå•ã€‚" -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "该节点中没有脚注。" -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "该节点中没有交å‰å¼•ç”¨ã€‚" -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "该节点中没有“%sâ€æŒ‡é’ˆ" -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "未知的 Info 命令“%câ€ï¼›è¯·ä»¥â€œ?â€èŽ·å¾—帮助。" -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "终端类型“%sâ€çš„能力ä¸è¶³ä»¥æ”¯æŒ Info çš„è¿è¡Œã€‚" -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "您已ç»åœ¨è¯¥èŠ‚点的最åŽä¸€ä¸ªé¡µé¢ä¸­äº†ã€‚" -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "您已ç»åœ¨è¯¥èŠ‚点的第一页中了。" -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "åªæœ‰ä¸€ä¸ªçª—å£ã€‚" -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "结果窗å£å°†ä¼šå¤ªå°ã€‚" -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "没有足够的空间用于求助窗å£ï¼Œè¯·åˆ é™¤ä¸€ä¸ªçª—å£ã€‚" @@ -1432,191 +1432,191 @@ msgid "Using literal strings for searches" msgstr "使用普通字符串æ¥æŸ¥å¯»" -#: info/session.c:4116 +#: info/session.c:4113 #, fuzzy msgid "Search continued from the end of the document" msgstr "从文档底部继续查寻。" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "从此文档的开头继续查找。" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "正在æœç´¢å­æ–‡ä»¶ %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "æœç´¢å¤±è´¥ã€‚" -#: info/session.c:4191 +#: info/session.c:4188 #, c-format msgid "%s%s%s [%s]: " msgstr "%s%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "正则表达å¼æŸ¥æ‰¾" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "æœç´¢" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 msgid " case-sensitively" msgstr "大å°å†™æ•æ„Ÿ" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 msgid " backward" msgstr "å‘åŽæœç´¢" -#: info/session.c:4197 +#: info/session.c:4194 #, fuzzy, c-format msgid "%s%s%s: " msgstr "%s%s%s [%s]: " -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "正在æœç´¢å­æ–‡ä»¶ %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "读å–一个字符串并以大å°å†™æ•æ„Ÿçš„æ–¹å¼æœç´¢å®ƒ" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "读å–一个字符串并æœç´¢å®ƒ" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "读å–一个字符串并å‘åŽæœç´¢å®ƒ" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "以相åŒçš„æ–¹å‘é‡å¤æœ€åŽçš„æœç´¢" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "没有上次æœç´¢å­—符串" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "以相åçš„æ–¹å‘é‡å¤æœ€åŽçš„æœç´¢" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "在你输入的åŒæ—¶äº¤äº’å¼åœ°æœç´¢å­—符串" -#: info/session.c:4877 +#: info/session.c:4874 msgid "Regexp I-search backward: " msgstr "å‘åŽå¢žé‡æœç´¢æ­£åˆ™è¡¨è¾¾å¼: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "å‘åŽå¢žé‡æœç´¢ï¼š" -#: info/session.c:4880 +#: info/session.c:4877 msgid "Regexp I-search: " msgstr "增é‡æœç´¢æ­£åˆ™è¡¨è¾¾å¼: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "增é‡æœç´¢ï¼š" -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "失败 " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "å–消当å‰æ“作" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "退出" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "显示版本信æ¯å¹¶é€€å‡º" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "é‡ç”»æ˜¾ç¤º" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "退出 Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "è¿è¡Œåˆ°ç»‘定到本按键的å°å†™ç‰ˆæœ¬çš„命令" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "未知的命令 (%s)。" -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "“%sâ€ä¸ºéžæ³•" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "“%sâ€æ˜¯æ— æ•ˆçš„" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "将本数字添加到当å‰æ•°å€¼å‚数中" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "å¼€å¯(或乘以 4)当å‰æ•°å€¼å‚æ•°" @@ -2025,80 +2025,80 @@ msgstr "找ä¸åˆ°å…³äºŽâ€œ%sâ€çš„æ¡ç›®ï¼›æœªåˆ é™¤" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, fuzzy, perl-format msgid "could not open %s for writing: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 #, fuzzy msgid "arguments are quoted by default" msgstr "ä¸èµžæˆä½¿ç”¨ @quote-argï¼›å‚数是默认引用的" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s 在 ISO 639 语言编ç ä¸­æ˜¯æ— æ•ˆçš„" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s 在 ISO 639 语言编ç ä¸­æ˜¯æ— æ•ˆçš„" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, fuzzy, perl-format msgid "could not read %s: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, fuzzy, perl-format msgid "@%s: could not find %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, fuzzy, perl-format msgid "could not open %s: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2114,11 +2114,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" @@ -2138,7 +2138,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image 文件“%sâ€ä¸å¯è¯»ï¼š%s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "没有为“%c%sâ€å‘½ä»¤æŒ‡å®šèŠ‚å称" @@ -2148,113 +2148,113 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image 文件“%sâ€(对 HTML)ä¸å¯è¯»ï¼š%s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, fuzzy, perl-format msgid "could not open html refs config file %s: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "é—æ¼åŠ¨ä½œå称" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s:ä¸èƒ½è¯†åˆ«çš„选项“--%sâ€\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 #, fuzzy msgid "--css-include ended in comment" msgstr "%s:%d: --css-file 以注释结尾" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "找ä¸åˆ°å«æœ‰â€œ%sâ€çš„索引\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "关闭输出文件“%sâ€æ—¶å‡ºé”™" -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "在本文档中没有本节点的“上一个â€æˆ–“上层â€èŠ‚点。" -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "未引用的节点“%sâ€" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2293,7 +2293,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "关于索引“%sâ€çš„æ¡ç›®è¶…出了所有节点" @@ -2357,706 +2357,701 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "å®â€œ%sâ€å·²åœ¨å‰é¢å®šä¹‰" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "这里是“%sâ€å‰é¢çš„定义" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "@%s çš„å‚数错误" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s 需è¦ä¸€ä¸ªåå­—" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, fuzzy, perl-format msgid "bad name for @%s" msgstr "@%s çš„å‚数错误" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s é—æ¼é—­åˆèŠ±æ‹¬å·" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "“@endâ€éœ€è¦â€œ%sâ€ï¼Œä½†çœ‹åˆ°â€œ%sâ€" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "没有匹é…的“%cend %sâ€" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "错误放置的 %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "未匹é…的“%c%sâ€" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "在第 %2$d 行中以过多的å‚数调用å®â€œ%1$sâ€" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s é—æ¼é—­åˆèŠ±æ‹¬å·" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "在第 %2$d 行中以过多的å‚数调用å®â€œ%1$sâ€" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, fuzzy, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "\\ 以带有“%sâ€çš„å®å±•å¼€å¼ä»£æ›¿å‚æ•°å称" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "é—æ¼åŠ¨ä½œå称" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, fuzzy, perl-format msgid "unexpected argument on @%s line: %s" msgstr "@%s 的错误å‚æ•°: %s" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s:空文件" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "@%s çš„å‚数错误" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "@%s çš„å‚数错误" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "%s 需è¦ä¸€ä¸ªå‚æ•°: %citem çš„æ ¼å¼åŒ–å‚æ•°" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s:选项“--%sâ€ä¸æŽ¥å—å‚æ•°\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s:é—æ¼æ–‡ä»¶å‚数。\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "未知的索引“%sâ€" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, fuzzy, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "@%s 的错误å‚æ•°: %s" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "@%s 的错误å‚æ•°: %s" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, fuzzy, perl-format msgid "@%s: could not open %s: %s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, perl-format msgid "unrecognized encoding name `%s'" msgstr "ä¸èƒ½è¯†åˆ«çš„ç¼–ç å称“%sâ€" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, fuzzy, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "“@titlepageâ€çŽ¯å¢ƒå˜é‡å¤–çš„ @%s 是没有æ„义的" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "节点“%sâ€ä¸­æ²¡æœ‰èœå•ã€‚" -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, fuzzy, perl-format msgid "@%s should not appear in @%s" msgstr "%s: 无法打开 --css-file: %s" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "剪切至本行开头" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "å®â€œ%sâ€å·²åœ¨å‰é¢å®šä¹‰" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "这里是“%sâ€å‰é¢çš„定义" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "使用花括å·å°†ä¸€ä¸ªå‘½ä»¤ç”¨ä½œ @%s çš„å‚æ•°" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s çš„å‚数应为“iâ€æˆ–“jâ€ï¼Œè€Œä¸æ˜¯â€œ%câ€" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s 需è¦èŠ±æ‹¬å·" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "未定义的标识: %s" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s 已过时" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s 已过时" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "剪切至本行开头" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "在“@%2$sâ€å—中“@%1$sâ€æ˜¯æ²¡æœ‰æ„义的" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "在“@%2$sâ€å—中“@%1$sâ€æ˜¯æ²¡æœ‰æ„义的" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s:空文件" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "在多列表格项目中å«æœ‰å¤ªå¤šçš„列 (最大为 %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "忽略多列表格外的 @tab" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, fuzzy, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "必须在“@%sâ€çŽ¯å¢ƒå˜é‡ä¸­ä½¿ç”¨â€œ@%sâ€" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "在“@titlepageâ€å’Œâ€œ@quotationâ€çŽ¯å¢ƒå˜é‡å¤– @%s æ— æ„义" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "脚注内的脚注是ä¸å…许的" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "在第一个节点之å‰é‡åˆ° @menu,正在创建“顶â€èŠ‚点" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "您的 @top 节点å¯èƒ½åº”该包å«åœ¨ @ifnottex 而ä¸æ˜¯ @ifinfo 中?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "未知的命令“%sâ€" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "应为“%sâ€" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "“@floatâ€çŽ¯å¢ƒå˜é‡å¤–çš„ @%s 是没有æ„义的" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image é—æ¼æ–‡ä»¶åå‚æ•°" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s:é—æ¼æ–‡ä»¶å‚数。\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, fuzzy, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "@%s 的错误å‚æ•°: %s" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "应为“%sâ€" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "使用花括å·å°†ä¸€ä¸ªå‘½ä»¤ç”¨ä½œ @%s çš„å‚æ•°" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, fuzzy, perl-format msgid "remaining argument on @%s line: %s" msgstr "@%s 的错误å‚æ•°: %s" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "使用花括å·å°†ä¸€ä¸ªå‘½ä»¤ç”¨ä½œ @%s çš„å‚æ•°" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s:%s å‚数必须为数值,而ä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "未知的索引“%sâ€" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "@printindex 中的未知索引“%sâ€" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s:%s å‚数必须为数值,而ä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "ä»…æ”¯æŒ @%s 10 或 11,而ä¸æ˜¯â€œ%sâ€" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "%s:--footnote-style çš„å‚数必须为“separateâ€æˆ–“endâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s:%s å‚数必须为数值,而ä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "%s:--paragraph-indent çš„å‚数必须为数值/“noneâ€/“asisâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "%s:--paragraph-indent çš„å‚数必须为数值/“noneâ€/“asisâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "%s:--paragraph-indent çš„å‚数必须为数值/“noneâ€/“asisâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, fuzzy, perl-format msgid "expected @%s on or off, not `%s'" msgstr "应当 @%s å¼€å¯æˆ–关闭,而ä¸æ˜¯â€œ%sâ€" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "%s:--footnote-style çš„å‚数必须为“separateâ€æˆ–“endâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "%s:--footnote-style çš„å‚数必须为“separateâ€æˆ–“endâ€ï¼Œè€Œä¸æ˜¯â€œ%sâ€ã€‚\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%s 引用到ä¸å­˜åœ¨çš„节点“%sâ€(也许字段ä¸æ­£ç¡®ï¼Ÿ)" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "未引用的节点“%sâ€" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "未引用的节点“%sâ€" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, fuzzy, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "尽管节点“%sâ€æ˜¯â€œ%sâ€çš„上层节点,但缺少相关的èœå•é¡¹" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3545,17 +3540,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, fuzzy, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "%s: 忽略二次内部连接输出“%sâ€ã€‚\n" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: 无法打开 --css-file: %s" diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo index 2072ca4..a10e1f7 100644 Binary files a/po/zh_TW.gmo and b/po/zh_TW.gmo differ diff --git a/po/zh_TW.po b/po/zh_TW.po index ebc57fc..7f8e94a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: texinfo 4.1\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2002-03-08 04:56+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -387,42 +387,42 @@ msgid "No menu item '%s' in node '%s'" msgstr "¿ï³æ¶µ¥Ø `%s' ¤£¦b¸`ÂI `%s' ¤¤." -#: info/info.c:415 info/info.c:1181 +#: info/info.c:417 info/info.c:1183 #, fuzzy, c-format msgid "Cannot find node '%s'" msgstr "§ä¤£¨ì `%s' ¸`ÂI." -#: info/info.c:437 +#: info/info.c:439 #, c-format msgid "No program name given" msgstr "" -#: info/info.c:635 +#: info/info.c:637 #, c-format msgid "invalid number: %s\n" msgstr "" -#: info/info.c:815 +#: info/info.c:817 #, c-format msgid "malformed variable assignment: %s" msgstr "" -#: info/info.c:822 info/infokey.c:540 +#: info/info.c:824 info/infokey.c:540 #, c-format msgid "%s: no such variable" msgstr "" -#: info/info.c:828 info/infokey.c:542 +#: info/info.c:830 info/infokey.c:542 #, fuzzy, c-format msgid "value %s is not valid for variable %s" msgstr "³]©w Info Åܼƪº¼Æ­È" -#: info/info.c:840 +#: info/info.c:842 #, c-format msgid "Try --help for more information.\n" msgstr "¸Õ¸Õ --help ¥H¨ú±o§ó¦hªº¸ê°T.\n" -#: info/info.c:859 install-info/install-info.c:2239 tp/texi2any.pl:888 +#: info/info.c:861 install-info/install-info.c:2239 tp/texi2any.pl:888 #, c-format, perl-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -432,12 +432,12 @@ "There is NO WARRANTY, to the extent permitted by law.\n" msgstr "" -#: info/info.c:1035 +#: info/info.c:1037 #, fuzzy, c-format msgid "no index entries found for '%s'\n" msgstr "§ä¤£¨ì¥]§t `%s' ªº¯Á¤Þ¶µ¥Ø\n" -#: info/info.c:1089 +#: info/info.c:1091 #, c-format msgid "" "Usage: %s [OPTION]... [MENU-ITEM...]\n" @@ -445,7 +445,7 @@ "Read documentation in Info format.\n" msgstr "" -#: info/info.c:1095 +#: info/info.c:1097 msgid "" "Frequently-used options:\n" " -a, --all use all matching manuals\n" @@ -454,7 +454,7 @@ " -f, --file=MANUAL specify Info manual to visit" msgstr "" -#: info/info.c:1102 +#: info/info.c:1104 msgid "" " -h, --help display this help and exit\n" " --index-search=STRING go to node pointed by index entry STRING\n" @@ -462,15 +462,15 @@ " -o, --output=FILE output selected nodes to FILE" msgstr "" -#: info/info.c:1108 +#: info/info.c:1110 msgid " -O, --show-options, --usage go to command-line options node" msgstr "" -#: info/info.c:1112 +#: info/info.c:1114 msgid " -b, --speech-friendly be friendly to speech synthesizers" msgstr "" -#: info/info.c:1116 +#: info/info.c:1118 msgid "" " --subnodes recursively output menu items\n" " -v, --variable VAR=VALUE assign VALUE to Info variable VAR\n" @@ -478,7 +478,7 @@ " -w, --where, --location print physical location of Info file" msgstr "" -#: info/info.c:1122 +#: info/info.c:1124 msgid "" "\n" "The first non-option argument, if present, is the menu entry to start from;\n" @@ -488,13 +488,13 @@ "items relative to the initial node visited." msgstr "" -#: info/info.c:1129 +#: info/info.c:1131 msgid "" "\n" "For a summary of key bindings, type H within Info." msgstr "" -#: info/info.c:1132 +#: info/info.c:1134 msgid "" "\n" "Examples:\n" @@ -511,7 +511,7 @@ " info -f ./foo.info show file ./foo.info, not searching dir" msgstr "" -#: info/info.c:1147 install-info/install-info.c:616 tp/texi2any.pl:876 +#: info/info.c:1149 install-info/install-info.c:616 tp/texi2any.pl:876 #, fuzzy msgid "" "Email bug reports to bug-texinfo@gnu.org,\n" @@ -522,75 +522,75 @@ "µ{¦¡¯äÂÎ, ½Ð¥H¹q¤l¶l¥ó (­^¤å) ¦^³ø¦Ü bug-texinfo@gnu.org,\n" "¤@¯ë°ÝÃD»P°Q½×, ½Ð¥H¹q¤l¶l¥ó (­^¤å) ±H¨ì help-texinfo@gnu.org.\n" -#: info/info.c:1182 +#: info/info.c:1184 #, fuzzy, c-format msgid "Cannot find node '(%s)%s'" msgstr "§ä¤£¨ì `(%s)%s' ¸`ÂI." -#: info/info.c:1183 +#: info/info.c:1185 msgid "Cannot find a window!" msgstr "§ä¤£¨ì¤À¹jµøµ¡!" -#: info/info.c:1184 +#: info/info.c:1186 msgid "Point doesn't appear within this window's node!" msgstr "´å¼Ð¦ì¸m¤£¦b¥»¤À¹jµøµ¡ªº¸`ÂI¤º!" -#: info/info.c:1185 +#: info/info.c:1187 #, fuzzy msgid "Cannot delete the last window" msgstr "µLªk§R°£¤W¤@­Ó¤À¹jµøµ¡." -#: info/info.c:1186 +#: info/info.c:1188 #, fuzzy msgid "No menu in this node" msgstr "¥»¸`ÂI¨S¦³¿ï³æ." -#: info/info.c:1187 +#: info/info.c:1189 #, fuzzy msgid "No footnotes in this node" msgstr "¥»¸`ÂI¨S¦³µù¸}." -#: info/info.c:1188 +#: info/info.c:1190 #, fuzzy msgid "No cross references in this node" msgstr "¥»¸`ÂI¨S¦³¥æ¤¬°Ñ·Ó." -#: info/info.c:1189 +#: info/info.c:1191 #, fuzzy, c-format msgid "No '%s' pointer for this node" msgstr "¥»¸`ÂI¨S¦³ `%s' pointer." -#: info/info.c:1190 +#: info/info.c:1192 #, fuzzy, c-format msgid "Unknown Info command '%c'; try '?' for help" msgstr "¥¼ª¾ªº Info ©R¥O `%c'; ¸Õ¸Õ `?' ¥H¨ú±o¨D§U¸ê°T." -#: info/info.c:1191 +#: info/info.c:1193 #, fuzzy, c-format msgid "Terminal type '%s' is not smart enough to run Info" msgstr "²×ºÝ¾÷Ãþ«¬ `%s' µLªk¤ä´©°õ¦æ Info ©Ò»Ýªº»Ý¨D." -#: info/info.c:1192 +#: info/info.c:1194 #, fuzzy msgid "You are already at the last page of this node" msgstr "±z¤w¦b¥»¸`ÂIªº³Ì«á¤@­¶." -#: info/info.c:1193 +#: info/info.c:1195 #, fuzzy msgid "You are already at the first page of this node" msgstr "±z¤w¦b¥»¸`ÂIªº²Ä¤@­¶." -#: info/info.c:1194 +#: info/info.c:1196 #, fuzzy msgid "Only one window" msgstr "¥u¦³¤@­Ó¤À¹jµøµ¡." -#: info/info.c:1195 +#: info/info.c:1197 #, fuzzy msgid "Resulting window would be too small" msgstr "²£¥Íªº¤À¹jµøµ¡·|¤Ó¤p." -#: info/info.c:1196 +#: info/info.c:1198 #, fuzzy msgid "Not enough room for a help window, please delete a window" msgstr "³Ñ¤UªºªÅ¶¡¤Ó¤p, µLªk®e¯Ç¨D§U¤À¹jµøµ¡, ½Ð§R°£¤@­Ó¤À¹jµøµ¡." @@ -1407,194 +1407,194 @@ msgid "Using literal strings for searches" msgstr "" -#: info/session.c:4116 +#: info/session.c:4113 msgid "Search continued from the end of the document" msgstr "" -#: info/session.c:4121 +#: info/session.c:4118 #, fuzzy msgid "Search continued from the beginning of the document" msgstr "§R°£¦Ü¥»¦æ¶}ÀY, ¨Ã¸m¤J°Å¶Kï" -#: info/session.c:4138 +#: info/session.c:4135 #, c-format msgid "Searching subfile %s ..." msgstr "·j´M¤lÀÉ®× %s ..." -#: info/session.c:4174 info/session.c:4437 info/session.c:4550 +#: info/session.c:4171 info/session.c:4434 info/session.c:4547 #, fuzzy, c-format msgid "Search failed" msgstr "·j´M¥¢±Ñ." -#: info/session.c:4191 +#: info/session.c:4188 #, fuzzy, c-format msgid "%s%s%s [%s]: " msgstr "%s%s [%s]: " -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Regexp search" msgstr "" -#: info/session.c:4192 info/session.c:4198 +#: info/session.c:4189 info/session.c:4195 msgid "Search" msgstr "·j´M¦r¦ê" -#: info/session.c:4193 info/session.c:4199 +#: info/session.c:4190 info/session.c:4196 #, fuzzy msgid " case-sensitively" msgstr ", ¥H°Ï¤À¤j¤p¼gªº¤è¦¡" -#: info/session.c:4194 info/session.c:4200 +#: info/session.c:4191 info/session.c:4197 #, fuzzy msgid " backward" msgstr "¦V«á·j´M¦r¦ê" -#: info/session.c:4197 +#: info/session.c:4194 #, c-format msgid "%s%s%s: " msgstr "" -#: info/session.c:4217 +#: info/session.c:4214 msgid "Search string too short" msgstr "" -#: info/session.c:4408 +#: info/session.c:4405 #, c-format msgid "Going back to last match from %s" msgstr "" -#: info/session.c:4437 info/session.c:4550 +#: info/session.c:4434 info/session.c:4547 #, c-format msgid "No more matches" msgstr "" -#: info/session.c:4577 +#: info/session.c:4574 msgid "Search this node and subnodes for a string" msgstr "" #. TRANSLATORS: %s is the title of a node. -#: info/session.c:4584 +#: info/session.c:4581 #, fuzzy, c-format msgid "Search under %s: " msgstr "·j´M¤lÀÉ®× %s ..." -#: info/session.c:4599 +#: info/session.c:4596 msgid "Go to next match in Info sub-tree" msgstr "" -#: info/session.c:4603 info/session.c:4615 +#: info/session.c:4600 info/session.c:4612 #, c-format msgid "No active search" msgstr "" -#: info/session.c:4611 +#: info/session.c:4608 msgid "Go to previous match in Info sub-tree" msgstr "" -#: info/session.c:4624 +#: info/session.c:4621 msgid "Read a string and search for it case-sensitively" msgstr "Ū¨ú¤@­Ó¦r¦ê, µM«á¥H°Ï¤À¤j¤p¼g¤è¦¡·j´M" -#: info/session.c:4629 +#: info/session.c:4626 msgid "Read a string and search for it" msgstr "Ū¨ú¤@­Ó¦r¦ê, µM«á·j´M" -#: info/session.c:4635 +#: info/session.c:4632 msgid "Read a string and search backward for it" msgstr "Ū¨ú¤@­Ó¦r¦ê, µM«á¦V«á·j´M" -#: info/session.c:4643 +#: info/session.c:4640 msgid "Repeat last search in the same direction" msgstr "¥H¦P¼Ëªº·j´M¤è¦V­«ÂФW¦¸ªº·j´M" -#: info/session.c:4651 info/session.c:4696 +#: info/session.c:4648 info/session.c:4693 msgid "No previous search string" msgstr "¨S¦³«e¤@¦¸ªº·j´M¦r¦ê" -#: info/session.c:4688 +#: info/session.c:4685 msgid "Repeat last search in the reverse direction" msgstr "¥H¬Û¤Ïªº·j´M¤è¦V­«ÂФW¦¸ªº·j´M" -#: info/session.c:4735 +#: info/session.c:4732 msgid "Clear displayed search matches" msgstr "" -#: info/session.c:4751 info/session.c:4757 +#: info/session.c:4748 info/session.c:4754 msgid "Search interactively for a string as you type it" msgstr "¥H¤¬°Ê¤è¦¡, Ãä¿é¤J¦r¦êÃä·j´M" -#: info/session.c:4877 +#: info/session.c:4874 #, fuzzy msgid "Regexp I-search backward: " msgstr "¤Ï¦V¤¬°Ê·j´M: " -#: info/session.c:4878 +#: info/session.c:4875 msgid "I-search backward: " msgstr "¤Ï¦V¤¬°Ê·j´M: " -#: info/session.c:4880 +#: info/session.c:4877 #, fuzzy msgid "Regexp I-search: " msgstr "¤¬°Ê·j´M: " -#: info/session.c:4881 +#: info/session.c:4878 msgid "I-search: " msgstr "¤¬°Ê·j´M: " -#: info/session.c:4906 info/session.c:4909 +#: info/session.c:4903 info/session.c:4906 msgid "Failing " msgstr "¥¢±Ñ " -#: info/session.c:5274 +#: info/session.c:5271 msgid "Cancel current operation" msgstr "¨ú®ø¥Ø«eªº§@·~" -#: info/session.c:5281 +#: info/session.c:5278 msgid "Quit" msgstr "µ²§ô" -#: info/session.c:5286 +#: info/session.c:5283 #, fuzzy msgid "Display version of Info being run" msgstr "Åã¥Üª©¥»¸ê°T, µM«áÂ÷¶}" -#: info/session.c:5288 +#: info/session.c:5285 #, c-format msgid "GNU Info version %s" msgstr "" -#: info/session.c:5293 +#: info/session.c:5290 msgid "Redraw the display" msgstr "­«Ã¸µe­±" -#: info/session.c:5330 +#: info/session.c:5327 msgid "Quit using Info" msgstr "µ²§ô¨Ï¥Î Info" -#: info/session.c:5346 +#: info/session.c:5343 msgid "Run command bound to this key's lowercase variant" msgstr "" -#: info/session.c:5357 +#: info/session.c:5354 #, fuzzy, c-format msgid "Unknown command (%s)" msgstr "¥¼ª¾ªº©R¥O (%s)." -#: info/session.c:5360 +#: info/session.c:5357 #, c-format msgid "\"%s\" is invalid" msgstr "\"%s\" ¤£¦Xªk" -#: info/session.c:5361 +#: info/session.c:5358 #, fuzzy, c-format msgid "'%s' is invalid" msgstr "\"%s\" ¤£¦Xªk" -#: info/session.c:5679 +#: info/session.c:5676 msgid "Add this digit to the current numeric argument" msgstr "±N¥»¼Æ¦r¥[¦Ü¥Ø«eªº¼Æ­È¤Þ¼Æ" -#: info/session.c:5686 +#: info/session.c:5683 msgid "Start (or multiply by 4) the current numeric argument" msgstr "¶}©l¥Ø«eªº¼Æ­È¤Þ¼Æ (©Î¬O­¼¥H 4)" @@ -1943,79 +1943,79 @@ msgstr "§ä¤£¨ì `%s' ªº¶µ¥Ø; ¥¼§R°£¥ô¦ó¶µ¥Ø" #: tp/DebugTexinfo/DebugTree.pm:63 tp/Texinfo/Convert/Converter.pm:849 -#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1198 -#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6575 -#: tp/Texinfo/Convert/HTML.pm:6599 tp/Texinfo/Convert/HTML.pm:6980 -#: tp/Texinfo/Convert/HTML.pm:7039 tp/Texinfo/Convert/HTML.pm:7118 -#: tp/Texinfo/Convert/HTML.pm:7195 tp/Texinfo/Convert/IXIN.pm:293 +#: tp/Texinfo/Convert/Converter.pm:887 tp/Texinfo/Convert/Converter.pm:1211 +#: tp/Texinfo/Convert/DocBook.pm:326 tp/Texinfo/Convert/HTML.pm:6577 +#: tp/Texinfo/Convert/HTML.pm:6601 tp/Texinfo/Convert/HTML.pm:6982 +#: tp/Texinfo/Convert/HTML.pm:7041 tp/Texinfo/Convert/HTML.pm:7120 +#: tp/Texinfo/Convert/HTML.pm:7197 tp/Texinfo/Convert/IXIN.pm:293 #: tp/Texinfo/Convert/Info.pm:302 tp/Texinfo/Convert/TexinfoXML.pm:456 #, perl-format msgid "could not open %s for writing: %s" msgstr "" -#: tp/Texinfo/Common.pm:864 +#: tp/Texinfo/Common.pm:865 msgid "recursion is always allowed" msgstr "" -#: tp/Texinfo/Common.pm:865 +#: tp/Texinfo/Common.pm:866 msgid "arguments are quoted by default" msgstr "" -#: tp/Texinfo/Common.pm:868 +#: tp/Texinfo/Common.pm:869 msgid "" "move your @contents command if you want the contents after the title page" msgstr "" -#: tp/Texinfo/Common.pm:871 +#: tp/Texinfo/Common.pm:872 msgid "" "move your @shortcontents and @contents commands if you want the contents " "after the title page" msgstr "" -#: tp/Texinfo/Common.pm:1095 +#: tp/Texinfo/Common.pm:1096 #, fuzzy, perl-format msgid "%s is not a valid language code" msgstr "%s ¤£¬O¤@­Ó¦Xªkªº ISO 639 »y¨¥½X" -#: tp/Texinfo/Common.pm:1100 +#: tp/Texinfo/Common.pm:1101 #, fuzzy, perl-format msgid "%s is not a valid region code" msgstr "%s ¤£¬O¤@­Ó¦Xªkªº ISO 639 »y¨¥½X" -#: tp/Texinfo/Common.pm:1118 +#: tp/Texinfo/Common.pm:1119 #, perl-format msgid "%s is not a valid split possibility" msgstr "" -#: tp/Texinfo/Common.pm:1141 +#: tp/Texinfo/Common.pm:1142 #, perl-format msgid "could not read %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:1160 +#: tp/Texinfo/Common.pm:1162 #, fuzzy, perl-format msgid "error on closing @verbatiminclude file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Common.pm:1166 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Common.pm:1168 tp/Texinfo/Parser.pm:3097 #, perl-format msgid "@%s: could not find %s" msgstr "" -#: tp/Texinfo/Common.pm:1626 +#: tp/Texinfo/Common.pm:1628 msgid "no node to be renamed" msgstr "" -#: tp/Texinfo/Common.pm:1637 +#: tp/Texinfo/Common.pm:1639 msgid "nodes without a new name at the end of file" msgstr "" -#: tp/Texinfo/Common.pm:1647 tp/Texinfo/Parser.pm:862 +#: tp/Texinfo/Common.pm:1649 tp/Texinfo/Parser.pm:859 #, perl-format msgid "could not open %s: %s" msgstr "" -#: tp/Texinfo/Common.pm:2167 +#: tp/Texinfo/Common.pm:2169 #, perl-format msgid "could not protect hash character in @%s" msgstr "" @@ -2031,11 +2031,11 @@ msgstr "" #: tp/Texinfo/Convert/Converter.pm:870 tp/Texinfo/Convert/Converter.pm:903 -#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7006 -#: tp/Texinfo/Convert/HTML.pm:7065 tp/Texinfo/Convert/IXIN.pm:914 +#: tp/Texinfo/Convert/DocBook.pm:362 tp/Texinfo/Convert/HTML.pm:7008 +#: tp/Texinfo/Convert/HTML.pm:7067 tp/Texinfo/Convert/IXIN.pm:914 #: tp/Texinfo/Convert/Info.pm:165 tp/Texinfo/Convert/Info.pm:191 #: tp/Texinfo/Convert/Info.pm:219 tp/Texinfo/Convert/Info.pm:282 -#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:2057 +#: tp/Texinfo/Convert/TexinfoXML.pm:475 tp/Texinfo/Parser.pm:1976 #, fuzzy, perl-format msgid "error on closing %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." @@ -2055,7 +2055,7 @@ msgid "@image file `%s' not found, using `%s'" msgstr "@image ÀÉ®× `%s' µLªkŪ¨ú: %s" -#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5227 +#: tp/Texinfo/Convert/DocBook.pm:1098 tp/Texinfo/Parser.pm:5117 #, fuzzy msgid "no argument specified for @U" msgstr "`%c%s' ©R¥O¤¤¥¼«ü©w¸`ÂI¦WºÙ" @@ -2065,112 +2065,112 @@ msgid "@image file `%s' (for HTML) not found, using `%s'" msgstr "@image ÀÉ®× `%s' µLªkŪ¨ú: %s" -#: tp/Texinfo/Convert/HTML.pm:2437 +#: tp/Texinfo/Convert/HTML.pm:2439 #, perl-format msgid "raw format %s is not converted" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4680 +#: tp/Texinfo/Convert/HTML.pm:4682 #, perl-format msgid "could not open html refs config file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4708 +#: tp/Texinfo/Convert/HTML.pm:4710 #, fuzzy msgid "missing type" msgstr "%c%s ¿òº|¥k¤j¬A¸¹" -#: tp/Texinfo/Convert/HTML.pm:4711 +#: tp/Texinfo/Convert/HTML.pm:4713 #, fuzzy, perl-format msgid "unrecognized type: %s" msgstr "%s: ¥¼ª¾ªº¿ï¶µ `--%s'\n" -#: tp/Texinfo/Convert/HTML.pm:4728 +#: tp/Texinfo/Convert/HTML.pm:4730 #, fuzzy, perl-format msgid "error on closing html refs config file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Convert/HTML.pm:5013 +#: tp/Texinfo/Convert/HTML.pm:5015 msgid "string not closed in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5015 +#: tp/Texinfo/Convert/HTML.pm:5017 msgid "--css-include ended in comment" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5017 +#: tp/Texinfo/Convert/HTML.pm:5019 msgid "@import not finished in css file" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5043 +#: tp/Texinfo/Convert/HTML.pm:5045 #, perl-format msgid "CSS file %s not found" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:5049 +#: tp/Texinfo/Convert/HTML.pm:5051 #, fuzzy, perl-format msgid "could not open --include-file %s: %s" msgstr "µLªk¶}±Ò¦Ü `%s' ªººÞ¹D." -#: tp/Texinfo/Convert/HTML.pm:5059 +#: tp/Texinfo/Convert/HTML.pm:5061 #, fuzzy, perl-format msgid "error on closing CSS file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Convert/HTML.pm:5873 tp/Texinfo/Convert/HTML.pm:5877 +#: tp/Texinfo/Convert/HTML.pm:5875 tp/Texinfo/Convert/HTML.pm:5879 #, fuzzy, perl-format msgid "no htmlxref.cnf entry found for `%s'" msgstr "§ä¤£¨ì¥]§t `%s' ªº¯Á¤Þ¶µ¥Ø\n" -#: tp/Texinfo/Convert/HTML.pm:6570 +#: tp/Texinfo/Convert/HTML.pm:6572 #, fuzzy, perl-format msgid "error on closing frame file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Convert/HTML.pm:6594 +#: tp/Texinfo/Convert/HTML.pm:6596 #, fuzzy, perl-format msgid "error on closing TOC frame file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Convert/HTML.pm:6709 +#: tp/Texinfo/Convert/HTML.pm:6711 #, perl-format msgid "handler %s of stage %s priority %s failed" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6914 +#: tp/Texinfo/Convert/HTML.pm:6916 msgid "must specify a title with a title command or @top" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7125 +#: tp/Texinfo/Convert/HTML.pm:7127 #, fuzzy, perl-format msgid "error on closing redirection node file %s: %s" msgstr "µLªk«Ø¥ß¿é¥XÀÉ®× `%s'." -#: tp/Texinfo/Convert/HTML.pm:7150 +#: tp/Texinfo/Convert/HTML.pm:7152 #, fuzzy, perl-format msgid "old name for `%s' is a node of the document" msgstr "¦b¥»¤å¥ó¤¤, ¥»¸`ÂI¨S¦³ `¤W¤@­Ó (Prev)' ¸`ÂI©Î `¤W¤@¼h (Up)' ¸`ÂI." -#: tp/Texinfo/Convert/HTML.pm:7156 +#: tp/Texinfo/Convert/HTML.pm:7158 #, fuzzy, perl-format msgid "file empty for renamed node `%s'" msgstr "¥¼³Q°Ñ·Óªº¸`ÂI `%s'" -#: tp/Texinfo/Convert/HTML.pm:7170 +#: tp/Texinfo/Convert/HTML.pm:7172 #, perl-format msgid "target node (new name for `%s') not in document: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7202 +#: tp/Texinfo/Convert/HTML.pm:7204 #, perl-format msgid "error on closing renamed node redirection file %s: %s" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7240 +#: tp/Texinfo/Convert/HTML.pm:7242 msgid "empty node name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:7242 tp/Texinfo/Parser.pm:3510 +#: tp/Texinfo/Convert/HTML.pm:7244 tp/Texinfo/Parser.pm:3410 #, perl-format msgid "syntax for an external node used for `%s'" msgstr "" @@ -2209,7 +2209,7 @@ msgid "Index entry in @%s with : produces invalid Info: %s" msgstr "" -#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2574 +#: tp/Texinfo/Convert/Plaintext.pm:1299 tp/Texinfo/Parser.pm:2493 #, fuzzy, perl-format msgid "entry for index `%s' outside of any node" msgstr "¯Á¤Þ `%s' ªº¶µ¥Ø¤£¦b¥ô¦óªº¸`ÂI¤º" @@ -2273,706 +2273,701 @@ msgid "menu entry name should not contain `:'" msgstr "" -#: tp/Texinfo/Parser.pm:1095 +#: tp/Texinfo/Parser.pm:1014 #, perl-format msgid "empty node name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1103 +#: tp/Texinfo/Parser.pm:1022 #, fuzzy, perl-format msgid "@%s `%s' previously defined" msgstr "¥¨¶° `%s' ¤w©w¸q¹L" -#: tp/Texinfo/Parser.pm:1109 +#: tp/Texinfo/Parser.pm:1028 #, fuzzy, perl-format msgid "here is the previous definition as @%s" msgstr "³o¸Ì¬O `%s' ¤§«eªº©w¸q" -#: tp/Texinfo/Parser.pm:1128 tp/Texinfo/Parser.pm:3497 +#: tp/Texinfo/Parser.pm:1047 tp/Texinfo/Parser.pm:3397 #, fuzzy, perl-format msgid "empty argument in @%s" msgstr "¹ï %c%s µL¥Îªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:1219 tp/Texinfo/Structuring.pm:416 +#: tp/Texinfo/Parser.pm:1138 tp/Texinfo/Structuring.pm:442 #, perl-format msgid "multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1257 +#: tp/Texinfo/Parser.pm:1176 #, perl-format msgid "bad or empty @%s formal argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1267 +#: tp/Texinfo/Parser.pm:1186 #, perl-format msgid "bad syntax for @%s argument: %s" msgstr "" -#: tp/Texinfo/Parser.pm:1274 tp/Texinfo/Parser.pm:4698 -#: tp/Texinfo/Parser.pm:4724 tp/Texinfo/Parser.pm:5581 -#: tp/Texinfo/Parser.pm:5594 tp/Texinfo/Parser.pm:5608 +#: tp/Texinfo/Parser.pm:1193 tp/Texinfo/Parser.pm:4591 +#: tp/Texinfo/Parser.pm:4617 tp/Texinfo/Parser.pm:5447 +#: tp/Texinfo/Parser.pm:5460 tp/Texinfo/Parser.pm:5474 #, perl-format msgid "%c%s requires a name" msgstr "%c%s ¥²¶·­n¦³¦WºÙ" -#: tp/Texinfo/Parser.pm:1278 tp/Texinfo/Parser.pm:4701 -#: tp/Texinfo/Parser.pm:4727 tp/Texinfo/Parser.pm:5584 -#: tp/Texinfo/Parser.pm:5597 tp/Texinfo/Parser.pm:5611 +#: tp/Texinfo/Parser.pm:1197 tp/Texinfo/Parser.pm:4594 +#: tp/Texinfo/Parser.pm:4620 tp/Texinfo/Parser.pm:5450 +#: tp/Texinfo/Parser.pm:5463 tp/Texinfo/Parser.pm:5477 #, perl-format msgid "bad name for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1391 +#: tp/Texinfo/Parser.pm:1310 #, perl-format msgid "@end %s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1395 +#: tp/Texinfo/Parser.pm:1314 #, perl-format msgid "@%s seen before @%s closing brace" msgstr "" -#: tp/Texinfo/Parser.pm:1400 +#: tp/Texinfo/Parser.pm:1319 #, fuzzy, perl-format msgid "%c%s missing closing brace" msgstr "%c%s ¿òº|¥k¤j¬A¸¹" -#: tp/Texinfo/Parser.pm:1404 +#: tp/Texinfo/Parser.pm:1323 #, perl-format msgid "@%s missing closing delimiter sequence: %s}" msgstr "" -#: tp/Texinfo/Parser.pm:1513 +#: tp/Texinfo/Parser.pm:1432 #, perl-format msgid "@itemx should not begin @%s" msgstr "" -#: tp/Texinfo/Parser.pm:1581 +#: tp/Texinfo/Parser.pm:1500 msgid "@itemx must follow @item" msgstr "" -#: tp/Texinfo/Parser.pm:1748 +#: tp/Texinfo/Parser.pm:1667 #, perl-format msgid "@%s has text but no @item" msgstr "" -#: tp/Texinfo/Parser.pm:1776 +#: tp/Texinfo/Parser.pm:1695 #, perl-format msgid "`@end' expected `%s', but saw `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:1779 +#: tp/Texinfo/Parser.pm:1698 #, perl-format msgid "@%s seen before @end %s" msgstr "" -#: tp/Texinfo/Parser.pm:1783 +#: tp/Texinfo/Parser.pm:1702 #, fuzzy, perl-format msgid "no matching `%cend %s'" msgstr "No matching `%cend %s'" -#: tp/Texinfo/Parser.pm:1807 tp/Texinfo/Parser.pm:5068 -#: tp/Texinfo/Parser.pm:5321 +#: tp/Texinfo/Parser.pm:1726 tp/Texinfo/Parser.pm:4958 +#: tp/Texinfo/Parser.pm:5211 #, fuzzy, perl-format msgid "misplaced %c" msgstr "»~¸mªº %c" -#: tp/Texinfo/Parser.pm:1901 tp/Texinfo/Parser.pm:3130 +#: tp/Texinfo/Parser.pm:1820 tp/Texinfo/Parser.pm:3049 #, fuzzy, perl-format msgid "unmatched `%c%s'" msgstr "¥¼°t¹ïªº `%c%s'" -#: tp/Texinfo/Parser.pm:2130 +#: tp/Texinfo/Parser.pm:2049 #, fuzzy, perl-format msgid "macro `%s' called with too many args" msgstr "¥¨¶° `%s' ¦b²Ä %d ¦æ³Q©I¥s, ¦ý¬O¤Þ¼Æ¹L¦h" -#: tp/Texinfo/Parser.pm:2152 +#: tp/Texinfo/Parser.pm:2071 #, fuzzy, perl-format msgid "@%s missing closing brace" msgstr "%c%s ¿òº|¥k¤j¬A¸¹" -#: tp/Texinfo/Parser.pm:2160 +#: tp/Texinfo/Parser.pm:2079 #, fuzzy, perl-format msgid "macro `%s' declared without argument called with an argument" msgstr "¥¨¶° `%s' ¦b²Ä %d ¦æ³Q©I¥s, ¦ý¬O¤Þ¼Æ¹L¦h" -#: tp/Texinfo/Parser.pm:2193 +#: tp/Texinfo/Parser.pm:2112 #, perl-format msgid "\\ in @%s expansion followed `%s' instead of parameter name or \\" msgstr "" -#: tp/Texinfo/Parser.pm:2834 +#: tp/Texinfo/Parser.pm:2753 #, fuzzy, perl-format msgid "missing name for @%s" msgstr "%c%s ¿òº|¥k¤j¬A¸¹" -#: tp/Texinfo/Parser.pm:2839 +#: tp/Texinfo/Parser.pm:2758 #, perl-format msgid "missing category for @%s" msgstr "" -#: tp/Texinfo/Parser.pm:2874 +#: tp/Texinfo/Parser.pm:2793 #, perl-format msgid "unexpected argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:2889 +#: tp/Texinfo/Parser.pm:2808 #, fuzzy msgid "empty multitable" msgstr "%s: ªÅÀÉ®×" -#: tp/Texinfo/Parser.pm:2941 tp/Texinfo/Parser.pm:5687 +#: tp/Texinfo/Parser.pm:2860 tp/Texinfo/Parser.pm:5553 #, fuzzy, perl-format msgid "superfluous argument to @%s" msgstr "¹ï %c%s µL¥Îªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:2947 tp/Texinfo/Parser.pm:5708 -#: tp/Texinfo/Parser.pm:5723 +#: tp/Texinfo/Parser.pm:2866 tp/Texinfo/Parser.pm:5574 +#: tp/Texinfo/Parser.pm:5589 #, fuzzy, perl-format msgid "bad argument to @%s" msgstr "¹ï %c%s µL¥Îªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:2958 +#: tp/Texinfo/Parser.pm:2877 #, perl-format msgid "%s requires an argument: the formatter for %citem" msgstr "" -#: tp/Texinfo/Parser.pm:2963 +#: tp/Texinfo/Parser.pm:2882 #, perl-format msgid "command @%s not accepting argument in brace should not be on @%s line" msgstr "" -#: tp/Texinfo/Parser.pm:2998 +#: tp/Texinfo/Parser.pm:2917 #, fuzzy, perl-format msgid "accent command `@%s' not allowed as @%s argument" msgstr "%s: ¿ï¶µ `--%s' ¤£¥i§t¦³¤Þ¼Æ\n" -#: tp/Texinfo/Parser.pm:3106 tp/Texinfo/Parser.pm:3255 -#: tp/Texinfo/Parser.pm:5680 +#: tp/Texinfo/Parser.pm:3025 tp/Texinfo/Parser.pm:3178 +#: tp/Texinfo/Parser.pm:5546 #, fuzzy, perl-format msgid "@%s missing argument" msgstr "%s: ¿òº|Àɮפ޼Æ.\n" -#: tp/Texinfo/Parser.pm:3120 +#: tp/Texinfo/Parser.pm:3039 #, fuzzy, perl-format msgid "unknown @end %s" msgstr "¥¼ª¾ªº¯Á¤Þ `%s'" -#: tp/Texinfo/Parser.pm:3143 tp/Texinfo/Parser.pm:3775 +#: tp/Texinfo/Parser.pm:3062 tp/Texinfo/Parser.pm:3668 #, perl-format msgid "superfluous argument to @%s %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3149 tp/Texinfo/Parser.pm:3230 -#: tp/Texinfo/Parser.pm:5773 tp/Texinfo/Parser.pm:5818 -#: tp/Texinfo/Parser.pm:5847 tp/Texinfo/Parser.pm:5888 -#: tp/Texinfo/Parser.pm:5966 +#: tp/Texinfo/Parser.pm:3068 tp/Texinfo/Parser.pm:3153 +#: tp/Texinfo/Parser.pm:5639 tp/Texinfo/Parser.pm:5684 +#: tp/Texinfo/Parser.pm:5713 tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5832 #, fuzzy, perl-format msgid "bad argument to @%s: %s" msgstr "¹ï %c%s µL¥Îªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:3173 +#: tp/Texinfo/Parser.pm:3092 #, perl-format msgid "@%s: could not open %s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:3185 +#: tp/Texinfo/Parser.pm:3108 #, perl-format msgid "encoding `%s' is not a canonical texinfo encoding" msgstr "" -#: tp/Texinfo/Parser.pm:3193 +#: tp/Texinfo/Parser.pm:3116 #, fuzzy, perl-format msgid "unrecognized encoding name `%s'" msgstr "%s: ¥¼ª¾ªº¿ï¶µ `%c%s'\n" -#: tp/Texinfo/Parser.pm:3342 +#: tp/Texinfo/Parser.pm:3244 #, perl-format msgid "@%s after the first element" msgstr "" -#: tp/Texinfo/Parser.pm:3349 +#: tp/Texinfo/Parser.pm:3251 #, perl-format msgid "@%s only meaningful on a @multitable line" msgstr "" -#: tp/Texinfo/Parser.pm:3386 -#, perl-format -msgid "@%s should not be associated with @top" -msgstr "" - -#: tp/Texinfo/Parser.pm:3398 +#: tp/Texinfo/Parser.pm:3298 #, perl-format msgid "@node precedes @%s, but parts may not be associated with nodes" msgstr "" -#: tp/Texinfo/Parser.pm:3533 +#: tp/Texinfo/Parser.pm:3433 #, fuzzy, perl-format msgid "empty menu entry name in `%s'" msgstr "¸`ÂI `%s' ¤¤¨S¦³¿ï³æ." -#: tp/Texinfo/Parser.pm:3541 +#: tp/Texinfo/Parser.pm:3441 msgid "empty node name in menu entry" msgstr "" -#: tp/Texinfo/Parser.pm:3612 +#: tp/Texinfo/Parser.pm:3512 #, perl-format msgid "@%s should not appear in @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3769 +#: tp/Texinfo/Parser.pm:3662 #, fuzzy, perl-format msgid "@end %s should only appear at the beginning of a line" msgstr "§R°£¦Ü¥»¦æ¶}ÀY, ¨Ã¸m¤J°Å¶Kï" -#: tp/Texinfo/Parser.pm:3790 +#: tp/Texinfo/Parser.pm:3683 #, perl-format msgid "macro `%s' previously defined" msgstr "¥¨¶° `%s' ¤w©w¸q¹L" -#: tp/Texinfo/Parser.pm:3793 +#: tp/Texinfo/Parser.pm:3686 #, perl-format msgid "here is the previous definition of `%s'" msgstr "³o¸Ì¬O `%s' ¤§«eªº©w¸q" -#: tp/Texinfo/Parser.pm:3798 +#: tp/Texinfo/Parser.pm:3691 #, perl-format msgid "redefining Texinfo language command: @%s" msgstr "" -#: tp/Texinfo/Parser.pm:3865 +#: tp/Texinfo/Parser.pm:3758 #, perl-format msgid "@%s without associated character" msgstr "" -#: tp/Texinfo/Parser.pm:3935 +#: tp/Texinfo/Parser.pm:3828 #, perl-format msgid "" "@%s defined with zero or more than one argument should be invoked with {}" msgstr "" -#: tp/Texinfo/Parser.pm:3960 +#: tp/Texinfo/Parser.pm:3853 #, perl-format msgid "" "macro call nested too deeply (set MAX_NESTED_MACROS to override; current " "value %d)" msgstr "" -#: tp/Texinfo/Parser.pm:3969 +#: tp/Texinfo/Parser.pm:3862 #, perl-format msgid "recursive call of macro %s is not allowed; use @rmacro if needed" msgstr "" -#: tp/Texinfo/Parser.pm:4024 +#: tp/Texinfo/Parser.pm:3918 #, perl-format msgid "accent command `@%s' must not be followed by whitespace" msgstr "" -#: tp/Texinfo/Parser.pm:4030 +#: tp/Texinfo/Parser.pm:3924 #, fuzzy, perl-format msgid "use braces to give a command as an argument to @%s" msgstr "¨Ï¥Î¤j¬A¸¹±N©R¥O¥]°_¨Ó, ¥H§@¬° @%s ªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:4043 tp/Texinfo/Parser.pm:5191 +#: tp/Texinfo/Parser.pm:3937 tp/Texinfo/Parser.pm:5081 #, fuzzy, perl-format msgid "%c%s expects `i' or `j' as argument, not `%s'" msgstr "%c%s ´Á±æ¨Ï¥Î `i' ©Î `j' §@¬°¤Þ¼Æ, ¦Ó¤£¬O `%c'" -#: tp/Texinfo/Parser.pm:4054 +#: tp/Texinfo/Parser.pm:3948 #, perl-format msgid "accent command `@%s' must not be followed by new line" msgstr "" -#: tp/Texinfo/Parser.pm:4065 +#: tp/Texinfo/Parser.pm:3959 #, fuzzy, perl-format msgid "@%s expected braces" msgstr "%c%s ¹w­p­n¦³ `{...}'" -#: tp/Texinfo/Parser.pm:4223 +#: tp/Texinfo/Parser.pm:4117 #, perl-format msgid "undefined flag: %s" msgstr "" -#: tp/Texinfo/Parser.pm:4227 +#: tp/Texinfo/Parser.pm:4121 msgid "bad syntax for @value" msgstr "" -#: tp/Texinfo/Parser.pm:4234 +#: tp/Texinfo/Parser.pm:4128 #, fuzzy, perl-format msgid "%c%s is obsolete." msgstr "%c%s ¤w¼o¤î¤£¥Î" -#: tp/Texinfo/Parser.pm:4237 +#: tp/Texinfo/Parser.pm:4131 #, fuzzy, perl-format msgid "%c%s is obsolete; %s" msgstr "%c%s ¤w¼o¤î¤£¥Î" -#: tp/Texinfo/Parser.pm:4246 +#: tp/Texinfo/Parser.pm:4140 #, fuzzy, perl-format msgid "@%s should only appear at the beginning of a line" msgstr "§R°£¦Ü¥»¦æ¶}ÀY, ¨Ã¸m¤J°Å¶Kï" -#: tp/Texinfo/Parser.pm:4337 +#: tp/Texinfo/Parser.pm:4231 #, fuzzy, perl-format msgid "@%s not allowed inside `@%s' block" msgstr "@%s ¦b `@%s' °Ï¶ô¤§¤º, ¨Ã¤£¨ã¦³·N¸q" -#: tp/Texinfo/Parser.pm:4346 +#: tp/Texinfo/Parser.pm:4240 #, perl-format msgid "@%s should only appear in heading or footing" msgstr "" -#: tp/Texinfo/Parser.pm:4470 tp/Texinfo/Parser.pm:4487 -#: tp/Texinfo/Parser.pm:4537 +#: tp/Texinfo/Parser.pm:4364 tp/Texinfo/Parser.pm:4381 +#: tp/Texinfo/Parser.pm:4431 #, perl-format msgid "@%s not meaningful inside `@%s' block" msgstr "@%s ¦b `@%s' °Ï¶ô¤§¤º, ¨Ã¤£¨ã¦³·N¸q" -#: tp/Texinfo/Parser.pm:4497 +#: tp/Texinfo/Parser.pm:4391 #, fuzzy, perl-format msgid "@%s in empty multitable" msgstr "%s: ªÅÀÉ®×" -#: tp/Texinfo/Parser.pm:4503 +#: tp/Texinfo/Parser.pm:4397 msgid "@tab before @item" msgstr "" -#: tp/Texinfo/Parser.pm:4506 +#: tp/Texinfo/Parser.pm:4400 #, fuzzy, perl-format msgid "too many columns in multitable item (max %d)" msgstr "multitable ¶µ¥Ø¤¤¦³¤Ó¦hªºÄæ¦ì (³Ì¤j­È¬° %d)" -#: tp/Texinfo/Parser.pm:4543 +#: tp/Texinfo/Parser.pm:4437 msgid "ignoring @tab outside of multitable" msgstr "©¿²¤ multitable ¥~ªº @tab" -#: tp/Texinfo/Parser.pm:4547 +#: tp/Texinfo/Parser.pm:4441 #, perl-format msgid "@%s outside of table or list" msgstr "" -#: tp/Texinfo/Parser.pm:4587 +#: tp/Texinfo/Parser.pm:4480 #, perl-format msgid "must be after `@%s' to use `@%s'" msgstr "" -#: tp/Texinfo/Parser.pm:4629 +#: tp/Texinfo/Parser.pm:4522 #, perl-format msgid "@%s not meaningful outside `@titlepage' and `@quotation' environments" msgstr "" -#: tp/Texinfo/Parser.pm:4633 +#: tp/Texinfo/Parser.pm:4526 msgid "@dircategory after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4838 +#: tp/Texinfo/Parser.pm:4731 #, fuzzy, perl-format msgid "region %s inside region %s is not allowed" msgstr "©w¸qµù¸}, ¦ý¬O¨S¦³¤÷¸`ÂI" -#: tp/Texinfo/Parser.pm:4855 +#: tp/Texinfo/Parser.pm:4748 msgid "@direntry after first node" msgstr "" -#: tp/Texinfo/Parser.pm:4863 +#: tp/Texinfo/Parser.pm:4756 msgid "@menu in invalid context" msgstr "" -#: tp/Texinfo/Parser.pm:4869 +#: tp/Texinfo/Parser.pm:4762 #, fuzzy, perl-format msgid "@%s seen before first @node" msgstr "@menu ¦b²Ä¤@­Ó @node ¤§«e¥X²{, ±N«Ø¥ß `Top' ¸`ÂI" -#: tp/Texinfo/Parser.pm:4872 +#: tp/Texinfo/Parser.pm:4765 msgid "" "perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?" msgstr "¤]³\±zÀ³¸Ó§â @top ¸`ÂI¥]§t¦b @ifnottex, ¦Ó¤£¬O @ifinfo?" -#: tp/Texinfo/Parser.pm:4935 +#: tp/Texinfo/Parser.pm:4825 #, perl-format msgid "@%s should only appear in math context" msgstr "" -#: tp/Texinfo/Parser.pm:4943 +#: tp/Texinfo/Parser.pm:4833 #, fuzzy, perl-format msgid "unknown command `%s'" msgstr "¥¼ª¾ªº©R¥O `%s'" -#: tp/Texinfo/Parser.pm:4953 +#: tp/Texinfo/Parser.pm:4843 #, fuzzy msgid "unexpected @" msgstr "Expected `%s'" -#: tp/Texinfo/Parser.pm:4981 +#: tp/Texinfo/Parser.pm:4871 #, fuzzy, perl-format msgid "@%s is not meaningful outside `@float' environment" msgstr "@%s ¦b `@%s' °Ï¶ô¤§¤º, ¨Ã¤£¨ã¦³·N¸q" -#: tp/Texinfo/Parser.pm:4986 +#: tp/Texinfo/Parser.pm:4876 #, perl-format msgid "@%s should be right below `@float'" msgstr "" -#: tp/Texinfo/Parser.pm:4994 +#: tp/Texinfo/Parser.pm:4884 #, perl-format msgid "ignoring multiple @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5113 +#: tp/Texinfo/Parser.pm:5002 #, perl-format msgid "command @%s does not accept arguments" msgstr "" -#: tp/Texinfo/Parser.pm:5139 +#: tp/Texinfo/Parser.pm:5026 #, perl-format msgid "command @%s missing a node or external manual argument" msgstr "" -#: tp/Texinfo/Parser.pm:5158 +#: tp/Texinfo/Parser.pm:5045 #, perl-format msgid "in @%s empty cross reference name after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5169 +#: tp/Texinfo/Parser.pm:5056 #, perl-format msgid "in @%s empty cross reference title after expansion `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5182 +#: tp/Texinfo/Parser.pm:5069 msgid "@image missing filename argument" msgstr "@image ¨S¦³ÀɦW¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:5213 +#: tp/Texinfo/Parser.pm:5103 #, fuzzy, perl-format msgid "@%s missing first argument" msgstr "%s: ¿òº|Àɮפ޼Æ.\n" -#: tp/Texinfo/Parser.pm:5232 +#: tp/Texinfo/Parser.pm:5122 #, perl-format msgid "non-hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5238 +#: tp/Texinfo/Parser.pm:5128 #, perl-format msgid "fewer than four hex digits in argument for @U: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5255 +#: tp/Texinfo/Parser.pm:5145 #, perl-format msgid "argument for @U exceeds Unicode maximum 0x10FFFF: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5461 +#: tp/Texinfo/Parser.pm:5351 msgid "superfluous arguments for node" msgstr "" -#: tp/Texinfo/Parser.pm:5512 +#: tp/Texinfo/Parser.pm:5402 #, fuzzy, perl-format msgid "expected @end %s" msgstr "Expected `%s'" -#: tp/Texinfo/Parser.pm:5623 +#: tp/Texinfo/Parser.pm:5489 #, fuzzy, perl-format msgid "@%s should only accept an @-command as argument, not `%s'" msgstr "¨Ï¥Î¤j¬A¸¹±N©R¥O¥]°_¨Ó, ¥H§@¬° @%s ªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:5633 +#: tp/Texinfo/Parser.pm:5499 #, perl-format msgid "remaining argument on @%s line: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5703 +#: tp/Texinfo/Parser.pm:5569 #, fuzzy, perl-format msgid "environment command %s as argument to @%s" msgstr "¨Ï¥Î¤j¬A¸¹±N©R¥O¥]°_¨Ó, ¥H§@¬° @%s ªº¤Þ¼Æ" -#: tp/Texinfo/Parser.pm:5728 +#: tp/Texinfo/Parser.pm:5594 #, perl-format msgid "empty @%s" msgstr "" -#: tp/Texinfo/Parser.pm:5736 +#: tp/Texinfo/Parser.pm:5602 #, perl-format msgid "column fraction not a number: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5745 +#: tp/Texinfo/Parser.pm:5611 #, fuzzy, perl-format msgid "@sp arg must be numeric, not `%s'" msgstr "%s: %s ¤Þ¼Æ¥²¶·¬°¼Æ­È, ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5754 +#: tp/Texinfo/Parser.pm:5620 #, perl-format msgid "reserved index name %s" msgstr "" -#: tp/Texinfo/Parser.pm:5780 +#: tp/Texinfo/Parser.pm:5646 #, fuzzy, perl-format msgid "unknown source index in @%s: %s" msgstr "¥¼ª¾ªº¯Á¤Þ `%s'" -#: tp/Texinfo/Parser.pm:5783 +#: tp/Texinfo/Parser.pm:5649 #, perl-format msgid "unknown destination index in @%s: %s" msgstr "" -#: tp/Texinfo/Parser.pm:5813 +#: tp/Texinfo/Parser.pm:5679 #, perl-format msgid "@%s leads to a merging of %s in itself, ignoring" msgstr "" -#: tp/Texinfo/Parser.pm:5826 +#: tp/Texinfo/Parser.pm:5692 #, fuzzy, perl-format msgid "unknown index `%s' in @printindex" msgstr "@printindex ¤¤¦³¥¼ª¾ªº¯Á¤Þ `%s'" -#: tp/Texinfo/Parser.pm:5832 +#: tp/Texinfo/Parser.pm:5698 #, perl-format msgid "printing an index `%s' merged in another one, `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5840 +#: tp/Texinfo/Parser.pm:5706 #, perl-format msgid "printindex before document beginning: @printindex %s" msgstr "" -#: tp/Texinfo/Parser.pm:5856 +#: tp/Texinfo/Parser.pm:5722 #, fuzzy, perl-format msgid "@%s arg must be `top' or `bottom', not `%s'" msgstr "%s: %s ¤Þ¼Æ¥²¶·¬°¼Æ­È, ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5864 +#: tp/Texinfo/Parser.pm:5730 #, perl-format msgid "Only @%s 10 or 11 is supported, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5872 +#: tp/Texinfo/Parser.pm:5738 #, fuzzy, perl-format msgid "@%s arg must be `separate' or `end', not `%s'" msgstr "%s: --footnote-style ªº¤Þ¼Æ¥²¶·¬° `separate' ©Î `end', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5880 +#: tp/Texinfo/Parser.pm:5746 #, fuzzy, perl-format msgid "@%s arg must be `on', `off' or `odd', not `%s'" msgstr "%s: %s ¤Þ¼Æ¥²¶·¬°¼Æ­È, ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5898 tp/Texinfo/Parser.pm:5903 +#: tp/Texinfo/Parser.pm:5764 tp/Texinfo/Parser.pm:5769 #, fuzzy, perl-format msgid "@paragraphindent arg must be numeric/`none'/`asis', not `%s'" msgstr "%s: --paragraph-indent ªº¤Þ¼Æ¥²¶·¬° ¼Æ­È/`none'/`asis', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5911 +#: tp/Texinfo/Parser.pm:5777 #, fuzzy, perl-format msgid "@firstparagraphindent arg must be `none' or `insert', not `%s'" msgstr "%s: --paragraph-indent ªº¤Þ¼Æ¥²¶·¬° ¼Æ­È/`none'/`asis', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5921 +#: tp/Texinfo/Parser.pm:5787 #, fuzzy, perl-format msgid "@exampleindent arg must be numeric/`asis', not `%s'" msgstr "%s: --paragraph-indent ªº¤Þ¼Æ¥²¶·¬° ¼Æ­È/`none'/`asis', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5933 +#: tp/Texinfo/Parser.pm:5799 #, perl-format msgid "expected @%s on or off, not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5942 +#: tp/Texinfo/Parser.pm:5808 #, perl-format msgid "@kbdinputstyle arg must be `code'/`example'/`distinct', not `%s'" msgstr "" -#: tp/Texinfo/Parser.pm:5950 +#: tp/Texinfo/Parser.pm:5816 #, fuzzy, perl-format msgid "@allowcodebreaks arg must be `true' or `false', not `%s'" msgstr "%s: --footnote-style ªº¤Þ¼Æ¥²¶·¬° `separate' ©Î `end', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Parser.pm:5958 +#: tp/Texinfo/Parser.pm:5824 #, fuzzy, perl-format msgid "@urefbreakstyle arg must be `after'/`before'/`none', not `%s'" msgstr "%s: --footnote-style ªº¤Þ¼Æ¥²¶·¬° `separate' ©Î `end', ¦Ó¤£¬O `%s'.\n" -#: tp/Texinfo/Structuring.pm:155 +#: tp/Texinfo/Structuring.pm:181 #, perl-format msgid "raising the section level of @%s which is too low" msgstr "" -#: tp/Texinfo/Structuring.pm:187 +#: tp/Texinfo/Structuring.pm:213 #, perl-format msgid "no chapter-level command before @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:192 +#: tp/Texinfo/Structuring.pm:218 #, perl-format msgid "lowering the section level of @%s appearing after a lower element" msgstr "" -#: tp/Texinfo/Structuring.pm:281 +#: tp/Texinfo/Structuring.pm:307 #, perl-format msgid "no sectioning command associated with @%s" msgstr "" -#: tp/Texinfo/Structuring.pm:309 +#: tp/Texinfo/Structuring.pm:335 #, perl-format msgid "@%s not empty" msgstr "" -#: tp/Texinfo/Structuring.pm:366 tp/Texinfo/Structuring.pm:1187 +#: tp/Texinfo/Structuring.pm:392 tp/Texinfo/Structuring.pm:1213 #, fuzzy, perl-format msgid "@%s reference to nonexistent node `%s'" msgstr "%s °Ñ·Ó¨ì¤£¦s¦bªº¸`ÂI: `%s'" -#: tp/Texinfo/Structuring.pm:373 +#: tp/Texinfo/Structuring.pm:399 #, perl-format msgid "@%s entry node name `%s' different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:492 +#: tp/Texinfo/Structuring.pm:518 #, perl-format msgid "unreferenced node `%s'" msgstr "¥¼³Q°Ñ·Óªº¸`ÂI `%s'" -#: tp/Texinfo/Structuring.pm:543 +#: tp/Texinfo/Structuring.pm:569 #, perl-format msgid "node `%s' is %s for `%s' in sectioning but not in menu" msgstr "" -#: tp/Texinfo/Structuring.pm:552 +#: tp/Texinfo/Structuring.pm:578 #, perl-format msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ" msgstr "" -#: tp/Texinfo/Structuring.pm:570 +#: tp/Texinfo/Structuring.pm:596 #, perl-format msgid "node `%s' is %s for `%s' in menu but not in sectioning" msgstr "" -#: tp/Texinfo/Structuring.pm:625 +#: tp/Texinfo/Structuring.pm:651 #, perl-format msgid "%s pointer `%s' (for node `%s') different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:649 +#: tp/Texinfo/Structuring.pm:675 #, fuzzy, perl-format msgid "%s reference to nonexistent `%s'" msgstr "%s °Ñ·Ó¨ì¤£¦s¦bªº¸`ÂI: `%s'" -#: tp/Texinfo/Structuring.pm:670 +#: tp/Texinfo/Structuring.pm:696 #, perl-format msgid "node `%s' lacks menu item for `%s' despite being its Up target" msgstr "" -#: tp/Texinfo/Structuring.pm:678 +#: tp/Texinfo/Structuring.pm:704 #, perl-format msgid "for `%s', up in menu `%s' and up `%s' don't match" msgstr "" -#: tp/Texinfo/Structuring.pm:1197 +#: tp/Texinfo/Structuring.pm:1223 #, perl-format msgid "@%s to `%s', different from %s name `%s'" msgstr "" -#: tp/Texinfo/Structuring.pm:1449 +#: tp/Texinfo/Structuring.pm:1475 #, perl-format msgid "empty index key in @%s" msgstr "" @@ -3389,17 +3384,17 @@ "section?" msgstr "" -#: tp/texi2any.pl:1377 tp/texi2any.pl:1453 +#: tp/texi2any.pl:1376 tp/texi2any.pl:1452 #, perl-format msgid "%s: error on closing %s: %s\n" msgstr "" -#: tp/texi2any.pl:1400 tp/texi2any.pl:1434 +#: tp/texi2any.pl:1399 tp/texi2any.pl:1433 #, perl-format msgid "%s: error on closing internal links file %s: %s\n" msgstr "" -#: tp/texi2any.pl:1406 tp/texi2any.pl:1440 +#: tp/texi2any.pl:1405 tp/texi2any.pl:1439 #, fuzzy, perl-format msgid "%s: could not open %s for writing: %s\n" msgstr "%s: µLªkŪ¨ú (%s), ¦Ó¥BµLªk«Ø¥ß (%s)\n" diff --git a/po_document/ca.gmo b/po_document/ca.gmo index 1cd28ca..ffa640c 100644 Binary files a/po_document/ca.gmo and b/po_document/ca.gmo differ diff --git a/po_document/ca.po b/po_document/ca.po index 8da8280..c36d7ec 100644 --- a/po_document/ca.po +++ b/po_document/ca.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 5.9.93\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-06-08 17:08+0200\n" "Last-Translator: Walter Garcia-Fontes \n" "Language-Team: Catalan \n" @@ -18,97 +18,97 @@ "X-Bugs: Report translation errors to the Language-Team address.\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funci@'o" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Forma especial" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opci@'o d'usuari" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Variable d'inst@`ancia" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "M@'etode" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} sobre {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Annex {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} a {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} de {class}" @@ -210,17 +210,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "vegeu secci@'o ``{section_name}'' a @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Vegeu @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "vegeu @cite{{book}}" @@ -246,7 +246,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -281,96 +281,96 @@ msgstr "@{No hi ha cap valor per a `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} de {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} a {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} a {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} a {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} a {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} a {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} a {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -598,214 +598,214 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "vegeu secci@'o {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "vegeu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Vegeu secci@'o {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Vegeu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "vegeu {reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "vegeu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "vegeu `{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "vegeu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "vegeu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Vegeu {reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Vegeu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Vegeu `{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Vegeu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Vegeu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Salta a" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entrada d'@'@dotless{i}ndex" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Secci@'o" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} de {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} a {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} a {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} a {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category} a {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} a {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} a {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -814,41 +814,41 @@ "Aquest document va ser generat el @emph{@today{}} usant " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Aquest document va ser generat el @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, fuzzy, perl-brace-format msgid "{element_text} ({title})" msgstr "{text} ({url})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "El node que esteu buscant @'es a {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " El botons als plafons de navegaci@'o tenen el seg@\"uent significat:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Bot@'o" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nom" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Ves a" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Des de 1.2.3 ves a" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -858,47 +858,47 @@ "@strong{ Subsubsecci@'o U-Dos-Tres } d'un document de l'estructura seg@" "\"uent:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Secci@'o U" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subsecci@'o U-U" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subsecci@'o U-Dos" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subsubsecci@'o U-Dos_U" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subsubsecci@'o U-Dos-Dos" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subsubsecci@'o U-Dos-Tres" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posici@'o actual" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subsubsecci@'o U-Dos-Quatre" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subsecci@'o U-Tres" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subsecci@'o U-Quatre" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Document sense t@'@dotless{i}tol" diff --git a/po_document/ca.us-ascii.gmo b/po_document/ca.us-ascii.gmo index 365ea14..81803fd 100644 Binary files a/po_document/ca.us-ascii.gmo and b/po_document/ca.us-ascii.gmo differ diff --git a/po_document/ca.us-ascii.po b/po_document/ca.us-ascii.po index 4c0f1e1..e02afc5 100644 --- a/po_document/ca.us-ascii.po +++ b/po_document/ca.us-ascii.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 5.9.93\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-06-08 17:08+0200\n" "Last-Translator: Walter Garcia-Fontes \n" "Language-Team: Catalan \n" @@ -17,97 +17,97 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funci@'o" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Forma especial" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opci@'o d'usuari" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Variable d'inst@`ancia" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "M@'etode" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} sobre {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Annex {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} a {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} de {class}" @@ -209,17 +209,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "vegeu secci@'o ``{section_name}'' a @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Vegeu @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "vegeu @cite{{book}}" @@ -245,7 +245,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -280,96 +280,96 @@ msgstr "@{No hi ha cap valor per a `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} de {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} a {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} a {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} a {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} a {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} a {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} a {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -597,214 +597,214 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "vegeu secci@'o {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "vegeu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Vegeu secci@'o {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Vegeu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "vegeu {reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "vegeu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "vegeu `{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "vegeu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "vegeu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Vegeu {reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Vegeu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Vegeu `{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Vegeu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Vegeu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' a @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Salta a" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entrada d'@'@dotless{i}ndex" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Secci@'o" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} de {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} a {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} a {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} a {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category} a {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} a {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} a {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -813,41 +813,41 @@ "Aquest document va ser generat el @emph{@today{}} usant " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Aquest document va ser generat el @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, fuzzy, perl-brace-format msgid "{element_text} ({title})" msgstr "{text} ({url})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "El node que esteu buscant @'es a {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " El botons als plafons de navegaci@'o tenen el seg@\"uent significat:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Bot@'o" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nom" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Ves a" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Des de 1.2.3 ves a" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -857,47 +857,47 @@ "@strong{ Subsubsecci@'o U-Dos-Tres } d'un document de l'estructura seg@" "\"uent:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Secci@'o U" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subsecci@'o U-U" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subsecci@'o U-Dos" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subsubsecci@'o U-Dos_U" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subsubsecci@'o U-Dos-Dos" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subsubsecci@'o U-Dos-Tres" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posici@'o actual" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subsubsecci@'o U-Dos-Quatre" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subsecci@'o U-Tres" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subsecci@'o U-Quatre" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Document sense t@'@dotless{i}tol" diff --git a/po_document/cs.gmo b/po_document/cs.gmo index 70bbec8..0ebd1a3 100644 Binary files a/po_document/cs.gmo and b/po_document/cs.gmo differ diff --git a/po_document/cs.po b/po_document/cs.po index 3ad6ff2..81462b7 100644 --- a/po_document/cs.po +++ b/po_document/cs.po @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-24 18:07+02:00\n" "Last-Translator: Petr Pisar \n" "Language-Team: Czech \n" @@ -29,98 +29,98 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funkce" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Speciální forma" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "PromÄ›nná" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Uživatelská volba" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "PromÄ›nná instance" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metoda" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} na třídÄ› {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} třídy {class}" # month is full month name -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Příloha {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} na třídÄ› {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} třídy {class}" @@ -222,17 +222,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "vizte oddíl „{section_name}“ v @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Vizte @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "vizte @cite{{book}}" @@ -258,7 +258,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -293,96 +293,96 @@ msgstr "@{Žádná hodnota pro „{value}“@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} třídy {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} třídy {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} na třídÄ› {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} na třídÄ› {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na třídÄ› {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} na třídÄ› {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na třídÄ› {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} na třídÄ› {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} třídy {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} třídy {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} třídy {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} třídy {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -610,169 +610,169 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "vizte oddíl {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "vizte {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Vizte oddíl {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Vizte {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "vizte {reference} v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "vizte @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "vizte „{section}“ v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "vizte {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "vizte „{section}“" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Vizte {reference} v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Vizte @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Vizte „{section}“ v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Vizte {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Vizte „{section}“" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "„{section}“ v @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "„{section}“" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "PÅ™ejít na" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Položka rejstříku" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Oddíl" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} třídy {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} třídy {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} na třídÄ› {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} na třídÄ› {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -780,23 +780,23 @@ "{category} na třídÄ› {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na třídÄ› {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na třídÄ› {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} na třídÄ› {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -804,23 +804,23 @@ "{category} třídy {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} třídy {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} třídy {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} třídy {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -829,41 +829,41 @@ "Tento dokument byl vytvoÅ™en @emph{@today{}} pomocí @uref{{program_homepage}, " "@emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Tento dokument byl vytvoÅ™en @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Uzel, který hledáte, se nachází na {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " TlaÄítka v navigaÄním panelu mají následující význam:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "TlaÄítko" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Název" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "PÅ™ejít kam" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Z 1.2.3 pÅ™ejít kam" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -872,47 +872,47 @@ " kde @strong{ příklad } pÅ™edpokládá, že souÄasná poloha je " "@strong{ Podpododdíl Jedna-dva-tÅ™i } dokumentu s následující strukturou:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Oddíl Jedna" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Pododdíl Jedna-jedna" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Pododdíl Jedna-dva" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Podpododdíl Jedna-dva-jedna" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Podpododdíl Jedna-dva-dva" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Podpododdíl Jedna-dva-tÅ™i" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "SouÄasná poloha" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Podpododdíl Jedna-dva-ÄtyÅ™i" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Pododdíl Jedna-tÅ™i" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Pododdíl Jedna-ÄtyÅ™i" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Nepojmenovaný dokument" diff --git a/po_document/da.gmo b/po_document/da.gmo index 53450b6..5253409 100644 Binary files a/po_document/da.gmo and b/po_document/da.gmo differ diff --git a/po_document/da.po b/po_document/da.po index ee4a1aa..85d35b8 100644 --- a/po_document/da.po +++ b/po_document/da.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: texinfo 6.0.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-12-28 09:13GMT\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -23,100 +23,100 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 #, fuzzy msgid "Variable" msgstr "Angiv variabel: " -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 #, fuzzy msgid "User Option" msgstr "Indsæt færdiggørelse" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 #, fuzzy msgid "Instance Variable" msgstr "Beskriv variabel: " -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "" @@ -219,17 +219,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "" @@ -255,7 +255,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -292,95 +292,95 @@ #: tp/Texinfo/Convert/Plaintext.pm:2758 #, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2763 #, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +msgid "@tie{}-- {category}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2779 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2791 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +msgid "@tie{}-- {category}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2799 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2805 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +msgid "@tie{}-- {category} of {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2814 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2820 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +msgid "@tie{}-- {category} on {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2839 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2854 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2872 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2887 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" -msgstr "" - -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +msgid "@tie{}-- {category} of {class}: {type} {name}" +msgstr "" + +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -613,302 +613,302 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 #, fuzzy msgid "Index Entry" msgstr "Indekspost:" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 #, fuzzy msgid "Section" msgstr "Eneste færdiggørelse" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " "@uref{{program_homepage}, @emph{{program}}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " "structure:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 #, fuzzy msgid "Current Position" msgstr "Afbryd nuværende handling" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "" diff --git a/po_document/de.gmo b/po_document/de.gmo index c6d75bb..a2cc765 100644 Binary files a/po_document/de.gmo and b/po_document/de.gmo differ diff --git a/po_document/de.po b/po_document/de.po index 55fc10a..ad8c26f 100644 --- a/po_document/de.po +++ b/po_document/de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2014-04-11 22:11+0100\n" "Last-Translator: Mario Blättermann \n" "Language-Team: German \n" @@ -20,97 +20,97 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.5.4\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funktion" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Spezielle Form" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Benutzeroption" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Instanzvariable" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Method" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} in {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} von {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Anhang {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} in {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} von {class}" @@ -212,17 +212,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "siehe Abschnitt »{section_name}« in @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Siehe @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "siehe @cite{{book}}" @@ -248,7 +248,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -283,96 +283,96 @@ msgstr "@{kein Wert für »{value}«@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} von {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} von {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} in {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} in {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} in {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} in {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} in {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} in {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} von {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} von {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} von {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} von {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -600,215 +600,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "siehe Abschnitt {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "siehe {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Siehe Abschnitt {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Siehe {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "siehe {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "siehe @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "siehe »{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "siehe {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "siehe »{section}«" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Siehe {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Siehe @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Siehe »{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Siehe {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Siehe »{section}«" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "»{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "»{section}«" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Springe zu" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Indexeintrag" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Abschnitt" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} von {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} von {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} in {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} in {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} in {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} in {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} in {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} in {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} von {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} von {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} von {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} von {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -817,43 +817,43 @@ "Dieses Dokument wurde am @emph{@today{}} mittels @uref{{program_homepage}, " "@emph{{program}}} erstellt." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" "Dieses Dokument wurde mittels @uref{{program_homepage}, @emph{{program}}} " "erstellt." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, fuzzy, perl-brace-format msgid "{element_text} ({title})" msgstr "{text} ({url})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Der Absatz, nach dem Sie suchen, befindet sich bei {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " Die Links in der Navigationsleiste haben die folgende Bedeutung: " -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Knopf" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Name" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Gehe zu" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Von 1.2.3 gehe zu" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -863,47 +863,47 @@ "@strong{ Unterabschnitt 1-2-3 } in einem Dokument mit folgender Struktur " "liegt:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Abschnitt 1" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Unterabschnitt 1-1" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Unterabschnitt 1-2" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Unterabschnitt 1-2-1" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Unterabschnitt 1-2-2" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Unterabschnitt 1-2-3" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Aktuelle Position" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Unterabschnitt 1-2-4" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Unterabschnitt 1-3" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Unterabschnitt 1-4" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Unbenanntes Dokument" diff --git a/po_document/de.us-ascii.gmo b/po_document/de.us-ascii.gmo index 4707f0d..57b6ee5 100644 Binary files a/po_document/de.us-ascii.gmo and b/po_document/de.us-ascii.gmo differ diff --git a/po_document/de.us-ascii.po b/po_document/de.us-ascii.po index f6b829a..d2cc5cc 100644 --- a/po_document/de.us-ascii.po +++ b/po_document/de.us-ascii.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2014-04-11 22:11+0100\n" "Last-Translator: Mario Blättermann \n" "Language-Team: German \n" @@ -19,97 +19,97 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.5.4\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funktion" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Spezielle Form" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Benutzeroption" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Instanzvariable" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Method" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} in {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} von {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Anhang {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} in {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} von {class}" @@ -211,17 +211,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "siehe Abschnitt »{section_name}« in @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Siehe @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "siehe @cite{{book}}" @@ -247,7 +247,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -282,96 +282,96 @@ msgstr "@{kein Wert für »{value}«@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} von {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} von {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} in {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} in {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} in {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} in {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} in {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} in {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} von {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} von {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} von {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} von {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -599,215 +599,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "siehe Abschnitt {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "siehe {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Siehe Abschnitt {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Siehe {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "siehe {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "siehe @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "siehe »{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "siehe {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "siehe »{section}«" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Siehe {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Siehe @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Siehe »{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Siehe {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Siehe »{section}«" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "»{section}« in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "»{section}«" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Springe zu" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Indexeintrag" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Abschnitt" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} von {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} von {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} in {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} in {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} in {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} in {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} in {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} in {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} von {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} von {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} von {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} von {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -816,43 +816,43 @@ "Dieses Dokument wurde am @emph{@today{}} mittels @uref{{program_homepage}, " "@emph{{program}}} erstellt." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" "Dieses Dokument wurde mittels @uref{{program_homepage}, @emph{{program}}} " "erstellt." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, fuzzy, perl-brace-format msgid "{element_text} ({title})" msgstr "{text} ({url})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Der Absatz, nach dem Sie suchen, befindet sich bei {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " Die Links in der Navigationsleiste haben die folgende Bedeutung: " -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Knopf" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Name" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Gehe zu" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Von 1.2.3 gehe zu" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -862,47 +862,47 @@ "@strong{ Unterabschnitt 1-2-3 } in einem Dokument mit folgender Struktur " "liegt:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Abschnitt 1" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Unterabschnitt 1-1" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Unterabschnitt 1-2" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Unterabschnitt 1-2-1" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Unterabschnitt 1-2-2" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Unterabschnitt 1-2-3" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Aktuelle Position" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Unterabschnitt 1-2-4" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Unterabschnitt 1-3" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Unterabschnitt 1-4" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Unbenanntes Dokument" diff --git a/po_document/el.gmo b/po_document/el.gmo index f674da0..974172c 100644 Binary files a/po_document/el.gmo and b/po_document/el.gmo differ diff --git a/po_document/el.po b/po_document/el.po index a868bed..3cb3865 100644 --- a/po_document/el.po +++ b/po_document/el.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GNU texinfo 6.0.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2015-12-28 00:59+0200\n" "Last-Translator: Tsiolkas Michail \n" "Language-Team: Greek \n" @@ -17,97 +17,97 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "" @@ -209,17 +209,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "" @@ -245,7 +245,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -281,95 +281,95 @@ #: tp/Texinfo/Convert/Plaintext.pm:2758 #, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2763 #, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +msgid "@tie{}-- {category}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2779 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2791 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +msgid "@tie{}-- {category}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2799 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2805 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +msgid "@tie{}-- {category} of {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2814 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2820 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +msgid "@tie{}-- {category} on {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2839 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2854 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2872 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2887 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" -msgstr "" - -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +msgid "@tie{}-- {category} of {class}: {type} {name}" +msgstr "" + +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -597,299 +597,299 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " "@uref{{program_homepage}, @emph{{program}}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " "structure:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "" diff --git a/po_document/eo.gmo b/po_document/eo.gmo index 563f9b6..791ff13 100644 Binary files a/po_document/eo.gmo and b/po_document/eo.gmo differ diff --git a/po_document/eo.po b/po_document/eo.po index 62da388..7030234 100644 --- a/po_document/eo.po +++ b/po_document/eo.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2013-02-27 09:07-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" @@ -17,97 +17,97 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funkcio" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makroo" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Speciala Formo" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variablo" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opcio de Uzanto" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Ekzemplera Variablo" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metodo" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} en {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{year} {month} {day}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Aldono {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} en {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} de {class}" @@ -209,17 +209,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "konsultu la sekcion ``{section_name}'' en @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Konsultu @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "konsultu @cite{{book}}" @@ -245,7 +245,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -280,96 +280,96 @@ msgstr "@{Neniu valoro por `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} de {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} en {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} en {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} en {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} en {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -597,215 +597,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "konsultu la sekcion {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "konsultu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Konsultu la sekcion {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Konsultu {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "konsultu {reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "konsultu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "konsultu `{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "konsultu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "konsultu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Konsultu {reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Konsultu @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Konsultu `{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Konsultu {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Konsultu `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Salti al" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Indeksa Ero" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Sekcio" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} de {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} en {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} en {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} en {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} en {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} en {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} en {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -814,41 +814,41 @@ "Tiu @^{c}i dokumento estis generata en @emph{@today{}} uzante " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Tiu @^{c}i dokumento estis generata en @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, fuzzy, perl-brace-format msgid "{element_text} ({title})" msgstr "{text} ({url})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "La nodo kiun vi ser@^{c}as estas @^{c}e {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " La butonoj en la krozpaneloj havas la jenajn signifojn:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Butono" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nomo" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Iri al" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "De 1.2.3 iru al" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -857,47 +857,47 @@ " kie la @strong{ Ekzemplo } agnoskas ke la nuna pozicio estas @^{c}e " "@strong{ Subsubsekcio Unu-Du-Tri } de dokumento kun la jena strukturo:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Sekcio Unu" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subsekcio Unu-Unu" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subsekcio Unu-Du" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subsubsekcio Unu-Du-Unu" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subsubsekcio Unu-Du-Du" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subsubsekcio Unu-Du-Tri" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Nuna Pozicio" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subsubsekcio Unu-Du-Kvar" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subsekcio Unu-Tri" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subsekcio Unu-Kvar" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Sentitola Dokumento" diff --git a/po_document/es.gmo b/po_document/es.gmo index 8454052..0cb9f07 100644 Binary files a/po_document/es.gmo and b/po_document/es.gmo differ diff --git a/po_document/es.po b/po_document/es.po index ac1f1b6..c6f6d55 100644 --- a/po_document/es.po +++ b/po_document/es.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document-6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-23 23:35+0200\n" "Last-Translator: Antonio Ceballos \n" "Language-Team: Spanish \n" @@ -18,97 +18,97 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Función" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Forma especial" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opción del usuario" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Variable de instancia" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Método" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} en {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "el {day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Apéndice {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} en {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} de {class}" @@ -210,17 +210,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "véase la sección ``{section_name}'' en @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Véase @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "véase @cite{{book}}" @@ -246,7 +246,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -281,96 +281,96 @@ msgstr "@{No hay valor para `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} de {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} en {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} en {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} en {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} en {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -598,215 +598,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "véase la sección {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "véase {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Véase la sección {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Véase {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "véase {reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "véase @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "véase `{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "véase {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "véase `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Véase {reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Véase @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Véase `{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Véase {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Véase `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' en @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Saltar a" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entrada de índice" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Sección" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} de {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} en {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} en {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} en {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} en {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} en {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} en {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -815,42 +815,42 @@ "Este documento se generó el @emph{@today{}} utilizando " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Este documento se generó el @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "El nodo que busca se encuentra en {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" " Los botones de los paneles de navegación tienen el significado siguiente:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Botón" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nombre" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Ir a" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Desde 1.2.3 ir a" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -860,47 +860,47 @@ "@strong{ Sub-subsección uno-dos-tres } de un documento de la estructura " "siguiente:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Sección Uno" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subsección uno-uno" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subsección uno-dos" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Sub-subsección uno-dos-uno" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Sub-subsección uno-dos-dos" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Sub-subsección uno-dos-tres" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posición actual" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Sub-subsección uno-dos-cuatro" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subsección uno-tres" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subsección uno-cuatro" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Documento sin título" diff --git a/po_document/fr.gmo b/po_document/fr.gmo index ba36cf8..d431370 100644 Binary files a/po_document/fr.gmo and b/po_document/fr.gmo differ diff --git a/po_document/fr.po b/po_document/fr.po index ac19969..cd63d66 100644 --- a/po_document/fr.po +++ b/po_document/fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-24 19:01+0200\n" "Last-Translator: Jean-Charles Malahieude \n" "Language-Team: French \n" @@ -18,97 +18,97 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Fonction" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Forme Sp@'eciale" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variable" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Option de l'utilisateur" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Variable d'instance" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "M@'ethode" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} de {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "le {day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Annexe {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}@ : " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}@ : " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}@ : " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} de {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} de {class}" @@ -210,17 +210,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "voir la section `{section_name}' dans @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Voir @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "voir @cite{{book}}" @@ -246,7 +246,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}@ :} " @@ -281,96 +281,96 @@ msgstr "@{Aucune valeur pour `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}@ : {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}@ : {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}@ :@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}@ : {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}@ :@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}@ : {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ : {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} de {class}@ : {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ : {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} de {class}@ : {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ : {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}@ : {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} de {class}@ : {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} de {class}@ : {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -598,215 +598,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "voir la section {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "voir {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Voir la section {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Voir {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "voir {reference} dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "voir @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "voir `{section}' dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "voir {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "voir `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Voir {reference} dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Voir @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Voir `{section}' dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Voir {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Voir `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' dans @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Aller @`a" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entr@'ee d'index" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Section" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}@ : @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}@ : @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}@ :@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}@ : @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}@ :@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}@ : @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}@ : @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} de {class}@ : @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} de {class}@ : @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} de {class}@ : @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}@ :@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}@ : @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}@ :@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}@ : @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}@ :@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} de {class}@ : @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} de {class}@ :@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} de {class}@ : @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -815,42 +815,42 @@ "Ce document a @'et@'e g@'en@'er@'e @emph{@today{}} en utilisant " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Ce document a @'et@'e g@'en@'er@'e le @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Le n@oe{}ud que vous recherchez est ici@ : {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" " Les boutons du panneau de navigation ont la signification suivante@ :" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Bouton" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nom" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Aller @`a" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Depuis 1.2.3 aller @`a" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -859,46 +859,46 @@ " Dans cet exemple on est @`a @strong{ Sous-sous-section un-deux-trois } " "dans un document dont la structure est@ :" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Section un" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Sous-section un-un" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Sous-section un-deux" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Sous-sous-section un-deux-un" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Sous-sous-section un-deux-deux" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Sous-sous-section un-deux-trois" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Position actuelle" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Sous-sous-section un-deux-quatre" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Sous-section un-trois" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Sous-section un-quatre" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Document sans titre" diff --git a/po_document/hr.gmo b/po_document/hr.gmo index 3e774ca..ea8fec4 100644 Binary files a/po_document/hr.gmo and b/po_document/hr.gmo differ diff --git a/po_document/hr.po b/po_document/hr.po index b2994ac..915a361 100644 --- a/po_document/hr.po +++ b/po_document/hr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GNU texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-25 20:36-0800\n" "Last-Translator: Božidar Putanec \n" "Language-Team: Croatian \n" @@ -21,97 +21,97 @@ "X-Generator: Lokalize 2.0\n" "X-Poedit-SourceCharset: UTF-8\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funkcija" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Specijalna forma (oblik)" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Varijabla" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "KorisniÄka opcija" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Instanca (pojava ili primjer) varijable" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metoda" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} u {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} od {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}." -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Privitak {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} u {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} od {class}" @@ -213,17 +213,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "pogledajte odjeljak „{section_name}“ u @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Pogledajte @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "pogledajte @cite{{book}}" @@ -249,7 +249,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -284,96 +284,96 @@ msgstr "@{nema vrijednost za „{value}“@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} klase {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} klase {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} na klasi {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} na klasi {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na klasi {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} na klasi {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na klasi {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} na klasi {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} klase {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} klase {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} klase {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} klase {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -601,169 +601,169 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "pogledajte odjeljak {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "pogledajte {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Pogledajte odjeljak {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Pogledajte {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "pogledajte {reference} u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "pogledajte @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "pogledajte „{section}“ u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "pogledajte {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "pogledajte „{section}“" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Pogledajte {reference} u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Pogledajte @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Pogledajte „{section}“ u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Pogledajte {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Pogledajte „{section}“" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "„{section}“ u @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "„{section}“" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "SkoÄi na" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Stavka indeksa" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Odjeljak" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} klase {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} klase {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} na klasi {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} na klasi {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -771,23 +771,23 @@ "{category} na klasi {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na klasi {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na klasi {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} na klasi {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -795,23 +795,23 @@ "{category} klase {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} klase {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} klase {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} klase {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -820,41 +820,41 @@ "Ovaj dokument je napravljen na @emph{@today{}} rabeći " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Ovaj dokument je napravljen na @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "ÄŒvor koji tražite nalazi se pri {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " Gumbi u navigacijskom panelu imaju sljedeća znaÄenja:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Gumb" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Ime" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Idi na/u" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Od 1.2.3 idi na/u" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -863,47 +863,47 @@ " gdje @strong{ primjer } pretpostavlja da je trenutaÄna pozicija na/u " "@strong{ Pododjeljak 1-2-3 } dokumenta sljedeće strukture:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Odjeljak 1" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Pododjeljak 1-1" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Pododjeljak 1-2" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Pododjeljak 1-2-1" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Pododjeljak 1-2-2" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Pododjeljak 1-2-3" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Aktualna pozicija" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Pododjeljak 1-2-4" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Pododjeljak 1-3" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Pododjeljak 1-4" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Dokument bez naslova" diff --git a/po_document/hu.gmo b/po_document/hu.gmo index 1ed9051..b3a75a2 100644 Binary files a/po_document/hu.gmo and b/po_document/hu.gmo differ diff --git a/po_document/hu.po b/po_document/hu.po index e6041c2..3149f63 100644 --- a/po_document/hu.po +++ b/po_document/hu.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-27 22:08+0200\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -20,97 +20,97 @@ "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Függvény" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makró" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Speciális űrlap" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Változó" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Felhasználói beállítás" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Példányváltozó" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metódus" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} ezen: {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} - {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{year}. {month} {day}." -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Függelék {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} ezen: {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} típusa: {class}" @@ -212,17 +212,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "lásd a(z) „{section_name}†szakaszt ebben: @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Lásd: @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "lásd: @cite{{book}}" @@ -248,7 +248,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -283,96 +283,96 @@ msgstr "@{Nincs érték ehhez: „{value}â€@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} - {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} - {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} ezen: {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} ezen: {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} ezen: {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} ezen: {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} ezen: {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} ezen: {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} - {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} - {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} - {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} - {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -600,169 +600,169 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "lásd ezt a szakaszt: {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "lásd: {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Lásd ezt a szakaszt: {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Lásd: {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "lásd: {reference} ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "lásd: @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "lásd ezt a szakaszt: „{section}†ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "lásd: {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "lásd: „{section}â€" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Lásd: {reference} ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Lásd: @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Lásd ezt a szakaszt: „{section}†ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Lásd: {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Lásd: „{section}â€" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "„{section}†szakasz ebben: @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "„{section}â€" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Ugrás ide" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Tárgymutató-bejegyzés" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Szakasz" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} - {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} - {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} ezen: {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} ezen: {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -770,45 +770,45 @@ "{category} ezen: {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} ezen: {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} ezen: {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} ezen: {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} - {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category} - {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} - {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} - {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -817,41 +817,41 @@ "Ezt a dokumentumot @emph{@today{}} napon állította elÅ‘ a(z) " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Ezt a dokumentumot @emph{@today{}} napon állították elÅ‘." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "A keresett csomópont itt található: {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " A navigációs panelen levÅ‘ gombok jelentése a következÅ‘:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Gomb" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Név" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Cél" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "1.2.3-ból ide jutunk" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -860,46 +860,46 @@ " ahol a @strong{ Példa } azt feltételezi, hogy a jelenlegi pozíció a " "következÅ‘ szerkezetű dokumentum @strong{ 1.2.3. alalszakasza }:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "1. szakasz" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "1.1 alszakasz" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "1.2. alszakasz" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "1.2.3. alalszakasz" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "1.2.2. alalszakasz" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "1.2.3. alalszakasz" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Jelenlegi pozíció" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "1.2.4. alalszakasz" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "1.3. alszakasz" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "1.4. alszakasz" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Névtelen dokumentum" diff --git a/po_document/it.gmo b/po_document/it.gmo index d48f371..df41cbd 100644 Binary files a/po_document/it.gmo and b/po_document/it.gmo differ diff --git a/po_document/it.po b/po_document/it.po index e60d3e5..ae53c08 100644 --- a/po_document/it.po +++ b/po_document/it.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-24 11:47+0200\n" "Last-Translator: Federico Bruni \n" "Language-Team: Italian \n" @@ -19,97 +19,97 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 2.91.7\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funzione" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Forma speciale" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variabile" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opzione utente" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Variabile dell'istanza" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metodo" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} su {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} di {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Appendice {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} in {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} di {class}" @@ -211,17 +211,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "vedi la sezione «{section_name}» in @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Vedi @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "vedi @cite{{book}}" @@ -247,7 +247,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -282,96 +282,96 @@ msgstr "@{Nessun valore per \\\"{value}\\\"@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} di {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} di {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} su {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} su {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} su {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} su {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} su {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} su {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} di {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} di {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} di {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} di {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -599,215 +599,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "vedi la sezione {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "vedi {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Vedi la sezione {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Vedi {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "vedi {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "vedi @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "vedi \\\"{section}\\\" in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "vedi {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "vedi \\\"{section}\\\"" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Vedi {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Vedi @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Vedi \\\"{section}\\\" in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Vedi {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Vedi \\\"{section}\\\"" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "\\\"{section}\\\" in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "\\\"{section}\\\"" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Salta a" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Voce dell'indice" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Sezione" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} di {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} di {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} su {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} su {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} su {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} su {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} su {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} su {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} di {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} di {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} di {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} di {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -816,42 +816,42 @@ "Questo documento è stato generato il @emph{@today{}} con " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Questo documento è stato generato il @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Il nodo cercato è {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" " I pulsanti nei pannelli di navigazione hanno il seguente significato:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Pulsante" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nome" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Vai a" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Da 1.2.3 vai a" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -861,47 +861,47 @@ "@strong{ Sottosottosezione Uno-Due-Tre } di un documento che ha la seguente " "struttura:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Sezione uno" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Sottosezione Uno-Uno" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Sottosezione Uno-Due" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Sottosottosezione Uno-Due-Uno" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Sottosottosezione Uno-Due-Due" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Sottosottosezione Uno-Due-Tre" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posizione Attuale" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Sottosottosezione Uno-Due-Quattro" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Sottosezione Uno-Tre" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Sottosezione Uno-Quattro" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Documento senza titolo" diff --git a/po_document/nl.gmo b/po_document/nl.gmo index 2f1d40e..5b5421e 100644 Binary files a/po_document/nl.gmo and b/po_document/nl.gmo differ diff --git a/po_document/nl.po b/po_document/nl.po index 288c5b8..e574927 100644 --- a/po_document/nl.po +++ b/po_document/nl.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: texinfo_document-6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-26 21:52+0200\n" "Last-Translator: Benno Schulenberg \n" "Language-Team: Dutch \n" @@ -22,97 +22,97 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.0\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Functie" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Macro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Speciale vorm" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Variabele" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Gebruikeroptie" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Instantiatievariabele" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Methode" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} over {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} van {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Appendix {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} over {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} van {class}" @@ -214,17 +214,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "zie sectie “{section_name}†in @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Zie @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "zie @cite{{book}}" @@ -250,7 +250,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -285,96 +285,96 @@ msgstr "@{Geen waarde voor '{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} van {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} van {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} over {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} over {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} over {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} over {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} over {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} over {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} van {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} van {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} van {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} van{class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -603,215 +603,215 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "zie sectie {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "zie {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Zie sectie {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Zie {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "zie {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "zie @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "zie ‘{section}’ in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "zie {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "zie ‘{section}’" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Zie {reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Zie @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Zie ‘{section}’ in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Zie {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Zie ‘{section}’" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "‘{section}’ in @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "‘{section}’" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Spring naar" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Index-item" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Sectie" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} van {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} van {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} over {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} over {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} over {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} over {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} over {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} over {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} van {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} van {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} van {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} van {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -820,41 +820,41 @@ "Dit document werd gegenereerd op @emph{@today{}} met behulp van " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Dit document werd gegenereerd op @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "De pagina die u zoekt bevindt zich op {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " De knoppen in de navigatiepanelen hebben de volgende functies:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Knop" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Naam" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Gaat naar" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Gaat van 1.2.3 naar" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -864,46 +864,46 @@ "@strong{ subsubsectie één-twee-drie } is in een document met de volgende " "structuur:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Sectie één" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subsectie één-één" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subsectie één-twee" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subsectie één-twee-één" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subsectie één-twee-twee" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subsectie één-twee-drie" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Huidige positie" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subsectie één-twee-vier" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subsectie één-drie" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subsectie één-vier" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Naamloos document" diff --git a/po_document/no.us-ascii.gmo b/po_document/no.us-ascii.gmo index 5e830ec..a80472f 100644 Binary files a/po_document/no.us-ascii.gmo and b/po_document/no.us-ascii.gmo differ diff --git a/po_document/no.us-ascii.po b/po_document/no.us-ascii.po index b681a6e..a2495f0 100644 --- a/po_document/no.us-ascii.po +++ b/po_document/no.us-ascii.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2001-01-01\n" "Last-Translator: Unknown\n" "Language-Team: Unknown\n" @@ -16,97 +16,97 @@ "Content-Type: text/plain; charset=us-ascii\n" "Content-Transfer-Encoding: 8bit\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "" @@ -208,17 +208,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "" @@ -244,7 +244,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -280,95 +280,95 @@ #: tp/Texinfo/Convert/Plaintext.pm:2758 #, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2763 #, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +msgid "@tie{}-- {category}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2779 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2791 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +msgid "@tie{}-- {category}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2799 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2805 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +msgid "@tie{}-- {category} of {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2814 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2820 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +msgid "@tie{}-- {category} on {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2839 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2854 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2872 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2887 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" -msgstr "" - -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +msgid "@tie{}-- {category} of {class}: {type} {name}" +msgstr "" + +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -596,298 +596,298 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " "@uref{{program_homepage}, @emph{{program}}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " "structure:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "" diff --git a/po_document/pl.gmo b/po_document/pl.gmo index 3b805ed..f413aa2 100644 Binary files a/po_document/pl.gmo and b/po_document/pl.gmo differ diff --git a/po_document/pl.po b/po_document/pl.po index 9b62d83..1bdb977 100644 --- a/po_document/pl.po +++ b/po_document/pl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-26 21:40+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -17,97 +17,97 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "Funkcja" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "Makro" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Postać specjalna" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Zmienna" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Opcja użytkownika" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "PrzykÅ‚ad zmiennej" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Metoda" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} dla klasy {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} klasy {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "ZaÅ‚Ä…cznik {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} dla klasy {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} klasy {class}" @@ -209,17 +209,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "p. sekcja ``{section_name}'' w @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "P. @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "p. @cite{{book}}" @@ -245,7 +245,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -280,96 +280,96 @@ msgstr "@{Brak wartoÅ›ci dla `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }- {category} klasy {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }- {category} klasy {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }- {category} dla klasy {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }- {category} dla klasy {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }- {category} dla klasy {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }- {category} dla klasy {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }- {category} dla klasy {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }- {category} dla klasy {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }- {category} klasy {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }- {category} klasy {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }- {category} klasy {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }- {category} klasy {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center - @emph{{author}}\n" @@ -597,169 +597,169 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "p. sekcja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "p. {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "P. sekcja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "P. {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "p. {reference} w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "p. @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "p. `{section}' w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "p. {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "p. `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "P. {reference} w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "P. @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "P. `{section}' w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "P. {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "P. `{section}'" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "`{section}' w @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "`{section}'" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Skok do" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Wpis indeksu" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Sekcja" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} klasy {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} klasy {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} dla klasy {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} dla klasy {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -767,24 +767,24 @@ "{category} dla klasy {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} dla klasy {class}: @emph{{type}} @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} dla klasy {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} dla klasy {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" @@ -792,23 +792,23 @@ "{category} klasy {class}:@* @emph{{type}}@* @strong{{name}} " "@emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} klasy {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} klasy {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} klasy {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -817,41 +817,41 @@ "Ten dokument zostaÅ‚ wygenerowany @emph{@today{}} przy użyciu programu " "@uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Ten dokument zostaÅ‚ wygenerowany @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Poszukiwany wÄ™zeÅ‚ jest pod {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " Przyciski w panelach nawigacyjnych majÄ… nastÄ™pujÄ…ce znaczenie:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Przycisk" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nazwa" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Przechodzi do" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "Z 1.2.3 przechodzi do" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -861,46 +861,46 @@ "@strong{ Podpodsekcja Jeden-Dwa-Trzy } w dokumencie o nastÄ™pujÄ…cej " "strukturze:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Sekcja Jeden" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Podsekcja Jeden-Jeden" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Podsekcja Jeden-Dwa" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Podpodsekcja Jeden-Dwa-Jeden" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Podpodsekcja Jeden-Dwa-Dwa" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Podpodsekcja Jeden-Dwa-Trzy" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Bieżąca pozycja" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Podpodsekcja Jeden-Dwa-Cztery" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Podsekcja Jeden-Trzy" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Podsekcja Jeden-Cztery" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Dokument bez tytuÅ‚u" diff --git a/po_document/pt.gmo b/po_document/pt.gmo index 9d5a7ca..ff4658c 100644 Binary files a/po_document/pt.gmo and b/po_document/pt.gmo differ diff --git a/po_document/pt.po b/po_document/pt.po index d778961..a71ebb5 100644 --- a/po_document/pt.po +++ b/po_document/pt.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2006-01-09\n" "Last-Translator: Jorge Barros de Abreu \n" "Language-Team: Unknown\n" @@ -17,99 +17,99 @@ "Content-Transfer-Encoding: 8bit\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 #, fuzzy msgid "Function" msgstr "Se@,{c}@~ao" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 #, fuzzy msgid "User Option" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} na {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} da {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} de {month} de {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} na {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} da {class}" @@ -211,17 +211,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "veja se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Veja @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "veja @cite{{book}}" @@ -247,7 +247,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -282,96 +282,96 @@ msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" +msgstr "@tie{ }-- {category} da {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" +msgstr "@tie{ }-- {category} da {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" +msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" +msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} da {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} na {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} da {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} da {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -605,216 +605,216 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "veja se@,{c}@~ao {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Veja se@,{c}@~ao {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, fuzzy, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "veja {node_file_href} @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, fuzzy, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, fuzzy, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, fuzzy, perl-brace-format msgid "see {reference}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, fuzzy, perl-brace-format msgid "see `{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, fuzzy, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Veja {node_file_href} @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, fuzzy, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, fuzzy, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Veja se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, fuzzy, perl-brace-format msgid "See {reference}" msgstr "Veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, fuzzy, perl-brace-format msgid "See `{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, fuzzy, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, fuzzy, perl-brace-format msgid "@cite{{book_reference}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, fuzzy, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, fuzzy, perl-brace-format msgid "{reference}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, fuzzy, perl-brace-format msgid "`{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Pular para" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entrada de @'Indice" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Se@,{c}@~ao" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, fuzzy, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, fuzzy, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} da {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} da {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} na {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} na {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, fuzzy, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, fuzzy, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, fuzzy, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} da {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} da {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, fuzzy, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} da {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} da {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, fuzzy, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -823,45 +823,45 @@ "Esse documento foi gerado em @i{{date}} usando @uref{{program_homepage}, " "@i{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 #, fuzzy msgid "This document was generated on @emph{@today{}}." msgstr "" "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "O nodo que vo@^e est@'a olhando est@'a em {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" " Os bot@~oes nos pain@'eis de navega@,{c}@~ao possuem os seguintes " "significados:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Bot@~ao" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nome" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "V@'a para" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "De 1.2.3 v@'a para" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -871,47 +871,47 @@ "@strong{ Subsub@,{c}@~ao Um-Dois-Tr@^es } de um documento com a seguinte " "estrutura:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Se@,{c}@~ao Um" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subse@,{c}@~ao Um-Um" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subse@,{c}@~ao Um-Dois" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subse@,{c}@~ao Um-Dois-Um" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subse@,{c}@~ao Um-Dois-Dois" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subse@,{c}@~ao Um-Dois-Tr@^es" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posi@,{c}@~ao Atual" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subse@,{c}@~ao Um-Dois-Quatro" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subse@,{c}@~ao Um-Tr@^es" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subse@,{c}@~ao Um-Quatro" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Documento Sem Nome" diff --git a/po_document/pt.us-ascii.gmo b/po_document/pt.us-ascii.gmo index 7d8985c..5f0d871 100644 Binary files a/po_document/pt.us-ascii.gmo and b/po_document/pt.us-ascii.gmo differ diff --git a/po_document/pt.us-ascii.po b/po_document/pt.us-ascii.po index 7b04314..e196e50 100644 --- a/po_document/pt.us-ascii.po +++ b/po_document/pt.us-ascii.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo 5.0\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2006-01-09\n" "Last-Translator: Jorge Barros de Abreu \n" "Language-Team: Unknown\n" @@ -16,99 +16,99 @@ "Content-Type: text/plain; charset=us-ascii\n" "Content-Transfer-Encoding: 8bit\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 #, fuzzy msgid "Function" msgstr "Se@,{c}@~ao" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 #, fuzzy msgid "User Option" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} na {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} da {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} de {month} de {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} na {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} da {class}" @@ -210,17 +210,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "veja se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Veja @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "veja @cite{{book}}" @@ -246,7 +246,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -281,96 +281,96 @@ msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" +msgstr "@tie{ }-- {category} da {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" +msgstr "@tie{ }-- {category} da {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" +msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" -msgstr "" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" +msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} da {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} na {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} na {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, fuzzy, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} da {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} da {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -604,216 +604,216 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "veja se@,{c}@~ao {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Veja se@,{c}@~ao {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, fuzzy, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "veja {node_file_href} @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, fuzzy, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, fuzzy, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, fuzzy, perl-brace-format msgid "see {reference}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, fuzzy, perl-brace-format msgid "see `{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, fuzzy, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Veja {node_file_href} @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, fuzzy, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, fuzzy, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Veja se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, fuzzy, perl-brace-format msgid "See {reference}" msgstr "Veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, fuzzy, perl-brace-format msgid "See `{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, fuzzy, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, fuzzy, perl-brace-format msgid "@cite{{book_reference}}" msgstr "veja @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, fuzzy, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "se@,{c}@~ao `{section}' em @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, fuzzy, perl-brace-format msgid "{reference}" msgstr "veja {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, fuzzy, perl-brace-format msgid "`{section}'" msgstr "Se@,{c}@~ao acima" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Pular para" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Entrada de @'Indice" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Se@,{c}@~ao" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, fuzzy, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, fuzzy, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} da {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} da {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} na {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} na {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, fuzzy, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} na {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, fuzzy, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} na {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, fuzzy, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} da {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} da {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, fuzzy, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} da {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} da {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, fuzzy, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -822,45 +822,45 @@ "Esse documento foi gerado em @i{{date}} usando @uref{{program_homepage}, " "@i{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 #, fuzzy msgid "This document was generated on @emph{@today{}}." msgstr "" "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "O nodo que vo@^e est@'a olhando est@'a em {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" " Os bot@~oes nos pain@'eis de navega@,{c}@~ao possuem os seguintes " "significados:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Bot@~ao" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Nome" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "V@'a para" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "De 1.2.3 v@'a para" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -870,47 +870,47 @@ "@strong{ Subsub@,{c}@~ao Um-Dois-Tr@^es } de um documento com a seguinte " "estrutura:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Se@,{c}@~ao Um" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Subse@,{c}@~ao Um-Um" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Subse@,{c}@~ao Um-Dois" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Subse@,{c}@~ao Um-Dois-Um" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Subse@,{c}@~ao Um-Dois-Dois" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Subse@,{c}@~ao Um-Dois-Tr@^es" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Posi@,{c}@~ao Atual" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Subse@,{c}@~ao Um-Dois-Quatro" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Subse@,{c}@~ao Um-Tr@^es" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Subse@,{c}@~ao Um-Quatro" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Documento Sem Nome" diff --git a/po_document/pt_BR.gmo b/po_document/pt_BR.gmo index 59a1c7c..fd30928 100644 Binary files a/po_document/pt_BR.gmo and b/po_document/pt_BR.gmo differ diff --git a/po_document/pt_BR.po b/po_document/pt_BR.po index 5e2ca7d..7eb2811 100644 --- a/po_document/pt_BR.po +++ b/po_document/pt_BR.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-25 06:00-0300\n" "Last-Translator: Jorge Barros de Abreu \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: LANGUAGE \n" @@ -17,97 +17,97 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "" -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "" -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "" @@ -209,17 +209,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "" @@ -245,7 +245,7 @@ msgstr "" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "" @@ -281,95 +281,95 @@ #: tp/Texinfo/Convert/Plaintext.pm:2758 #, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2763 #, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +msgid "@tie{}-- {category}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2776 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2779 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2788 #, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2791 #, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +msgid "@tie{}-- {category}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2799 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2805 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +msgid "@tie{}-- {category} of {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2814 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2820 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +msgid "@tie{}-- {category} on {class}: {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2835 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2839 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2850 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2854 #, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2868 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2872 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2883 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "" #: tp/Texinfo/Convert/Plaintext.pm:2887 #, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" -msgstr "" - -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +msgid "@tie{}-- {category} of {class}: {type} {name}" +msgstr "" + +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "" @@ -597,298 +597,298 @@ msgid "{explained_string} ({explanation})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " "@uref{{program_homepage}, @emph{{program}}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " "structure:" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "" diff --git a/po_document/uk.gmo b/po_document/uk.gmo index c6a765e..c10b4cc 100644 Binary files a/po_document/uk.gmo and b/po_document/uk.gmo differ diff --git a/po_document/uk.po b/po_document/uk.po index 26743f3..9e85d5e 100644 --- a/po_document/uk.po +++ b/po_document/uk.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: texinfo_document 6.3.90\n" "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n" -"POT-Creation-Date: 2017-06-23 06:53+0100\n" +"POT-Creation-Date: 2017-07-10 19:41+0100\n" "PO-Revision-Date: 2017-04-23 22:48+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -20,97 +20,97 @@ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.5\n" -#: tp/Texinfo/Common.pm:699 tp/Texinfo/Common.pm:704 +#: tp/Texinfo/Common.pm:700 tp/Texinfo/Common.pm:705 msgid "Function" msgstr "ФункціÑ" -#: tp/Texinfo/Common.pm:700 +#: tp/Texinfo/Common.pm:701 msgid "Macro" msgstr "МакроÑ" -#: tp/Texinfo/Common.pm:701 +#: tp/Texinfo/Common.pm:702 msgid "Special Form" msgstr "Спеціальна форма" -#: tp/Texinfo/Common.pm:702 tp/Texinfo/Common.pm:705 +#: tp/Texinfo/Common.pm:703 tp/Texinfo/Common.pm:706 msgid "Variable" msgstr "Змінна" -#: tp/Texinfo/Common.pm:703 +#: tp/Texinfo/Common.pm:704 msgid "User Option" msgstr "Вибір кориÑтувача" -#: tp/Texinfo/Common.pm:706 tp/Texinfo/Common.pm:707 +#: tp/Texinfo/Common.pm:707 tp/Texinfo/Common.pm:708 msgid "Instance Variable" msgstr "Змінна екземплÑра" -#: tp/Texinfo/Common.pm:708 tp/Texinfo/Common.pm:709 +#: tp/Texinfo/Common.pm:709 tp/Texinfo/Common.pm:710 msgid "Method" msgstr "Метод" -#: tp/Texinfo/Common.pm:1188 +#: tp/Texinfo/Common.pm:1190 #, perl-brace-format msgid "{category} on {class}" msgstr "{category} щодо {class}" -#: tp/Texinfo/Common.pm:1195 +#: tp/Texinfo/Common.pm:1197 #, perl-brace-format msgid "{category} of {class}" msgstr "{category} {class}" -#: tp/Texinfo/Common.pm:1212 +#: tp/Texinfo/Common.pm:1214 #, perl-brace-format msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: tp/Texinfo/Common.pm:1243 tp/Texinfo/Convert/Plaintext.pm:1055 +#: tp/Texinfo/Common.pm:1245 tp/Texinfo/Convert/Plaintext.pm:1055 #: tp/Texinfo/Convert/HTML.pm:532 #, perl-brace-format msgid "Appendix {number} {section_title}" msgstr "Додаток {number} {section_title}" -#: tp/Texinfo/Common.pm:1247 tp/Texinfo/Convert/Plaintext.pm:1060 +#: tp/Texinfo/Common.pm:1249 tp/Texinfo/Convert/Plaintext.pm:1060 #: tp/Texinfo/Convert/HTML.pm:538 #, perl-brace-format msgid "{number} {section_title}" msgstr "{number} {section_title}" -#: tp/Texinfo/Common.pm:1488 +#: tp/Texinfo/Common.pm:1490 #, perl-brace-format msgid "{float_type} {float_number}: " msgstr "{float_type} {float_number}: " -#: tp/Texinfo/Common.pm:1492 +#: tp/Texinfo/Common.pm:1494 #, perl-brace-format msgid "{float_type}: " msgstr "{float_type}: " -#: tp/Texinfo/Common.pm:1497 +#: tp/Texinfo/Common.pm:1499 #, perl-brace-format msgid "{float_type} {float_number}\n" msgstr "{float_type} {float_number}\n" -#: tp/Texinfo/Common.pm:1501 +#: tp/Texinfo/Common.pm:1503 #, perl-brace-format msgid "{float_type}\n" msgstr "{float_type}\n" -#: tp/Texinfo/Common.pm:1507 +#: tp/Texinfo/Common.pm:1509 #, perl-brace-format msgid "{float_number}: " msgstr "{float_number}: " -#: tp/Texinfo/Common.pm:1510 +#: tp/Texinfo/Common.pm:1512 #, perl-brace-format msgid "{float_number}\n" msgstr "{float_number}\n" -#: tp/Texinfo/Parser.pm:1002 +#: tp/Texinfo/Common.pm:2486 #, perl-brace-format msgid "{name} on {class}" msgstr "{name} щодо {class}" -#: tp/Texinfo/Parser.pm:1012 +#: tp/Texinfo/Common.pm:2496 #, perl-brace-format msgid "{name} of {class}" msgstr "{name} {class}" @@ -212,17 +212,17 @@ msgid "see section ``{section_name}'' in @cite{{book}}" msgstr "див. розділ «{section_name}» у @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3369 +#: tp/Texinfo/Convert/DocBook.pm:907 tp/Texinfo/Convert/HTML.pm:3371 #, perl-brace-format msgid "@cite{{book}}" msgstr "@cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3346 +#: tp/Texinfo/Convert/DocBook.pm:911 tp/Texinfo/Convert/HTML.pm:3348 #, perl-brace-format msgid "See @cite{{book}}" msgstr "Див. @cite{{book}}" -#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3323 +#: tp/Texinfo/Convert/DocBook.pm:915 tp/Texinfo/Convert/HTML.pm:3325 #, perl-brace-format msgid "see @cite{{book}}" msgstr "див. @cite{{book}}" @@ -248,7 +248,7 @@ msgstr "{abbr_or_acronym} ({explanation})" #: tp/Texinfo/Convert/DocBook.pm:1240 tp/Texinfo/Convert/Plaintext.pm:2358 -#: tp/Texinfo/Convert/HTML.pm:3673 +#: tp/Texinfo/Convert/HTML.pm:3675 #, perl-brace-format msgid "@b{{quotation_arg}:} " msgstr "@b{{quotation_arg}:} " @@ -283,96 +283,96 @@ msgstr "@{Ðемає Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ `{value}'@}" #: tp/Texinfo/Convert/Plaintext.pm:2758 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name} {arguments}" msgstr "@tie{ }-- {category}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2763 -#, perl-brace-format -msgid "@tie{ }-- {category}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {name}" msgstr "@tie{ }-- {category}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2776 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2779 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name} {arguments}" msgstr "@tie{ }-- {category}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2788 -#, perl-brace-format -msgid "@tie{ }-- {category}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}:@*{type}@*{name}" msgstr "@tie{ }-- {category}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2791 -#, perl-brace-format -msgid "@tie{ }-- {category}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category}: {type} {name}" msgstr "@tie{ }-- {category}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2799 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name} {arguments}" msgstr "@tie{ }-- {category} {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2805 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {name}" msgstr "@tie{ }-- {category} {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2814 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name} {arguments}" msgstr "@tie{ }-- {category} щодо {class}: {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2820 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {name}" msgstr "@tie{ }-- {category} щодо {class}: {name}" #: tp/Texinfo/Convert/Plaintext.pm:2835 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} щодо {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2839 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} щодо {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2850 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} щодо {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2854 -#, perl-brace-format -msgid "@tie{ }-- {category} on {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} on {class}: {type} {name}" msgstr "@tie{ }-- {category} щодо {class}: {type} {name}" #: tp/Texinfo/Convert/Plaintext.pm:2868 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name} {arguments}" msgstr "@tie{ }-- {category} {class}:@*{type}@*{name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2872 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name} {arguments}" msgstr "@tie{ }-- {category} {class}: {type} {name} {arguments}" #: tp/Texinfo/Convert/Plaintext.pm:2883 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}:@*{type}@*{name}" msgstr "@tie{ }-- {category} {class}:@*{type}@*{name}" #: tp/Texinfo/Convert/Plaintext.pm:2887 -#, perl-brace-format -msgid "@tie{ }-- {category} of {class}: {type} {name}" +#, fuzzy, perl-brace-format +msgid "@tie{}-- {category} of {class}: {type} {name}" msgstr "@tie{ }-- {category} {class}: {type} {name}" -#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2918 +#: tp/Texinfo/Convert/Plaintext.pm:3205 tp/Texinfo/Convert/HTML.pm:2920 #, perl-brace-format msgid "@center --- @emph{{author}}\n" msgstr "@center --- @emph{{author}}\n" @@ -600,214 +600,214 @@ msgid "{explained_string} ({explanation})" msgstr "{explained_string} ({explanation})" -#: tp/Texinfo/Convert/HTML.pm:3234 +#: tp/Texinfo/Convert/HTML.pm:3236 #, perl-brace-format msgid "see section {reference_name}" msgstr "див. розділ {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3237 +#: tp/Texinfo/Convert/HTML.pm:3239 #, perl-brace-format msgid "see {reference_name}" msgstr "див. {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3242 +#: tp/Texinfo/Convert/HTML.pm:3244 #, perl-brace-format msgid "See section {reference_name}" msgstr "Див. розділ {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3245 +#: tp/Texinfo/Convert/HTML.pm:3247 #, perl-brace-format msgid "See {reference_name}" msgstr "Див. {reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3249 +#: tp/Texinfo/Convert/HTML.pm:3251 #, perl-brace-format msgid "{reference_name}" msgstr "{reference_name}" -#: tp/Texinfo/Convert/HTML.pm:3311 +#: tp/Texinfo/Convert/HTML.pm:3313 #, perl-brace-format msgid "see {reference} in @cite{{book}}" msgstr "див. {reference} у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3315 +#: tp/Texinfo/Convert/HTML.pm:3317 #, perl-brace-format msgid "see @cite{{book_reference}}" msgstr "див. @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3319 +#: tp/Texinfo/Convert/HTML.pm:3321 #, perl-brace-format msgid "see `{section}' in @cite{{book}}" msgstr "див. «{section}» у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3326 +#: tp/Texinfo/Convert/HTML.pm:3328 #, perl-brace-format msgid "see {reference}" msgstr "див. {reference}" -#: tp/Texinfo/Convert/HTML.pm:3329 +#: tp/Texinfo/Convert/HTML.pm:3331 #, perl-brace-format msgid "see `{section}'" msgstr "див. «{section}»" -#: tp/Texinfo/Convert/HTML.pm:3334 +#: tp/Texinfo/Convert/HTML.pm:3336 #, perl-brace-format msgid "See {reference} in @cite{{book}}" msgstr "Див. {reference} у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3338 +#: tp/Texinfo/Convert/HTML.pm:3340 #, perl-brace-format msgid "See @cite{{book_reference}}" msgstr "Див. @cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3342 +#: tp/Texinfo/Convert/HTML.pm:3344 #, perl-brace-format msgid "See `{section}' in @cite{{book}}" msgstr "Див. «{section}» у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3349 +#: tp/Texinfo/Convert/HTML.pm:3351 #, perl-brace-format msgid "See {reference}" msgstr "Див. {reference}" -#: tp/Texinfo/Convert/HTML.pm:3352 +#: tp/Texinfo/Convert/HTML.pm:3354 #, perl-brace-format msgid "See `{section}'" msgstr "Див. «{section}»" -#: tp/Texinfo/Convert/HTML.pm:3357 +#: tp/Texinfo/Convert/HTML.pm:3359 #, perl-brace-format msgid "{reference} in @cite{{book}}" msgstr "{reference} у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3361 +#: tp/Texinfo/Convert/HTML.pm:3363 #, perl-brace-format msgid "@cite{{book_reference}}" msgstr "@cite{{book_reference}}" -#: tp/Texinfo/Convert/HTML.pm:3365 +#: tp/Texinfo/Convert/HTML.pm:3367 #, perl-brace-format msgid "`{section}' in @cite{{book}}" msgstr "«{section}» у @cite{{book}}" -#: tp/Texinfo/Convert/HTML.pm:3372 +#: tp/Texinfo/Convert/HTML.pm:3374 #, perl-brace-format msgid "{reference}" msgstr "{reference}" -#: tp/Texinfo/Convert/HTML.pm:3375 +#: tp/Texinfo/Convert/HTML.pm:3377 #, perl-brace-format msgid "`{section}'" msgstr "«{section}»" -#: tp/Texinfo/Convert/HTML.pm:3488 +#: tp/Texinfo/Convert/HTML.pm:3490 msgid "Jump to" msgstr "Перейти до" -#: tp/Texinfo/Convert/HTML.pm:3496 +#: tp/Texinfo/Convert/HTML.pm:3498 msgid "Index Entry" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð¿Ð¾ÐºÐ°Ð¶Ñ‡Ð¸ÐºÐ°" -#: tp/Texinfo/Convert/HTML.pm:3498 +#: tp/Texinfo/Convert/HTML.pm:3500 msgid "Section" msgstr "Розділ" -#: tp/Texinfo/Convert/HTML.pm:4116 +#: tp/Texinfo/Convert/HTML.pm:4118 #, perl-brace-format msgid "{category}: @strong{{name}} @emph{{arguments}}" msgstr "{category}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4121 +#: tp/Texinfo/Convert/HTML.pm:4123 #, perl-brace-format msgid "{category}: @strong{{name}}" msgstr "{category}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4138 +#: tp/Texinfo/Convert/HTML.pm:4140 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4142 +#: tp/Texinfo/Convert/HTML.pm:4144 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4151 +#: tp/Texinfo/Convert/HTML.pm:4153 #, perl-brace-format msgid "{category}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4154 +#: tp/Texinfo/Convert/HTML.pm:4156 #, perl-brace-format msgid "{category}: @emph{{type}} @strong{{name}}" msgstr "{category}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4162 +#: tp/Texinfo/Convert/HTML.pm:4164 #, perl-brace-format msgid "{category} of {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4168 +#: tp/Texinfo/Convert/HTML.pm:4170 #, perl-brace-format msgid "{category} of {class}: @strong{{name}}" msgstr "{category} {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4177 +#: tp/Texinfo/Convert/HTML.pm:4179 #, perl-brace-format msgid "{category} on {class}: @strong{{name}} @emph{{arguments}}" msgstr "{category} щодо {class}: @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4183 +#: tp/Texinfo/Convert/HTML.pm:4185 #, perl-brace-format msgid "{category} on {class}: @strong{{name}}" msgstr "{category} щодо {class}: @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4198 +#: tp/Texinfo/Convert/HTML.pm:4200 #, perl-brace-format msgid "" "{category} on {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} щодо {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4202 +#: tp/Texinfo/Convert/HTML.pm:4204 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "" "{category} щодо {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4213 +#: tp/Texinfo/Convert/HTML.pm:4215 #, perl-brace-format msgid "{category} on {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} щодо {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4217 +#: tp/Texinfo/Convert/HTML.pm:4219 #, perl-brace-format msgid "{category} on {class}: @emph{{type}} @strong{{name}}" msgstr "{category} щодо {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4231 +#: tp/Texinfo/Convert/HTML.pm:4233 #, perl-brace-format msgid "" "{category} of {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" msgstr "" "{category} {class}:@* @emph{{type}}@* @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4235 +#: tp/Texinfo/Convert/HTML.pm:4237 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" msgstr "{category} {class}: @emph{{type}} @strong{{name}} @emph{{arguments}}" -#: tp/Texinfo/Convert/HTML.pm:4246 +#: tp/Texinfo/Convert/HTML.pm:4248 #, perl-brace-format msgid "{category} of {class}:@* @emph{{type}}@* @strong{{name}}" msgstr "{category} {class}:@* @emph{{type}}@* @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:4250 +#: tp/Texinfo/Convert/HTML.pm:4252 #, perl-brace-format msgid "{category} of {class}: @emph{{type}} @strong{{name}}" msgstr "{category} {class}: @emph{{type}} @strong{{name}}" -#: tp/Texinfo/Convert/HTML.pm:6172 +#: tp/Texinfo/Convert/HTML.pm:6174 #, perl-brace-format msgid "" "This document was generated on @emph{@today{}} using " @@ -816,41 +816,41 @@ "Цей документ Ñтворено @emph{@today{}} за допомогою @uref{{program_homepage}, " "@emph{{program}}}." -#: tp/Texinfo/Convert/HTML.pm:6177 +#: tp/Texinfo/Convert/HTML.pm:6179 msgid "This document was generated on @emph{@today{}}." msgstr "Цей документ Ñтворено @emph{@today{}}." -#: tp/Texinfo/Convert/HTML.pm:6216 +#: tp/Texinfo/Convert/HTML.pm:6218 #, perl-brace-format msgid "{element_text} ({title})" msgstr "{element_text} ({title})" -#: tp/Texinfo/Convert/HTML.pm:6360 +#: tp/Texinfo/Convert/HTML.pm:6362 #, perl-brace-format msgid "The node you are looking for is at {href}." msgstr "Потрібний вам вузол тут: {href}." -#: tp/Texinfo/Convert/HTML.pm:6429 +#: tp/Texinfo/Convert/HTML.pm:6431 msgid " The buttons in the navigation panels have the following meaning:" msgstr " Кнопки на панелÑÑ… навігації мають таке призначеннÑ:" -#: tp/Texinfo/Convert/HTML.pm:6435 +#: tp/Texinfo/Convert/HTML.pm:6437 msgid "Button" msgstr "Кнопка" -#: tp/Texinfo/Convert/HTML.pm:6436 +#: tp/Texinfo/Convert/HTML.pm:6438 msgid "Name" msgstr "Ðазва" -#: tp/Texinfo/Convert/HTML.pm:6437 +#: tp/Texinfo/Convert/HTML.pm:6439 msgid "Go to" msgstr "Перейти до" -#: tp/Texinfo/Convert/HTML.pm:6438 +#: tp/Texinfo/Convert/HTML.pm:6440 msgid "From 1.2.3 go to" msgstr "З 1.2.3 перейти до" -#: tp/Texinfo/Convert/HTML.pm:6464 +#: tp/Texinfo/Convert/HTML.pm:6466 msgid "" " where the @strong{ Example } assumes that the current position is at " "@strong{ Subsubsection One-Two-Three } of a document of the following " @@ -859,47 +859,47 @@ " де у @strong{ прикладі } припуÑкаєтьÑÑ, що поточну позицію розташовано у " "@strong{ підрозділі один-два-три } документа із такою Ñтруктурою:" -#: tp/Texinfo/Convert/HTML.pm:6474 +#: tp/Texinfo/Convert/HTML.pm:6476 msgid "Section One" msgstr "Перший розділ" -#: tp/Texinfo/Convert/HTML.pm:6476 +#: tp/Texinfo/Convert/HTML.pm:6478 msgid "Subsection One-One" msgstr "Підрозділ один-один" -#: tp/Texinfo/Convert/HTML.pm:6483 +#: tp/Texinfo/Convert/HTML.pm:6485 msgid "Subsection One-Two" msgstr "Підрозділ один-два" -#: tp/Texinfo/Convert/HTML.pm:6485 +#: tp/Texinfo/Convert/HTML.pm:6487 msgid "Subsubsection One-Two-One" msgstr "Підпідрозділ один-два-один" -#: tp/Texinfo/Convert/HTML.pm:6486 +#: tp/Texinfo/Convert/HTML.pm:6488 msgid "Subsubsection One-Two-Two" msgstr "Підпідрозділ один-два-два" -#: tp/Texinfo/Convert/HTML.pm:6487 +#: tp/Texinfo/Convert/HTML.pm:6489 msgid "Subsubsection One-Two-Three" msgstr "Підпідрозділ один-два-три" -#: tp/Texinfo/Convert/HTML.pm:6489 +#: tp/Texinfo/Convert/HTML.pm:6491 msgid "Current Position" msgstr "Поточна позиціÑ" -#: tp/Texinfo/Convert/HTML.pm:6490 +#: tp/Texinfo/Convert/HTML.pm:6492 msgid "Subsubsection One-Two-Four" msgstr "Підпідрозділ один-два-чотири" -#: tp/Texinfo/Convert/HTML.pm:6493 +#: tp/Texinfo/Convert/HTML.pm:6495 msgid "Subsection One-Three" msgstr "Підрозділ один-три" -#: tp/Texinfo/Convert/HTML.pm:6500 +#: tp/Texinfo/Convert/HTML.pm:6502 msgid "Subsection One-Four" msgstr "Підрозділ один-чотири" -#: tp/Texinfo/Convert/HTML.pm:6908 +#: tp/Texinfo/Convert/HTML.pm:6910 msgid "Untitled Document" msgstr "Документ без назви" diff --git a/texindex/Makefile.in b/texindex/Makefile.in index a402cd8..90cc8a3 100644 --- a/texindex/Makefile.in +++ b/texindex/Makefile.in @@ -1152,6 +1152,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/texindex/texindex.awk b/texindex/texindex.awk index b6edda9..3cf667b 100644 --- a/texindex/texindex.awk +++ b/texindex/texindex.awk @@ -161,7 +161,7 @@ EXIT_SUCCESS = 0 EXIT_FAILURE = 1 - Texindex_version = "6.4" + Texindex_version = "6.4.90" if (! Invocation_name) { # provide fallback in case it's not passed in. Invocation_name = "texindex" diff --git a/tp/Makefile.in b/tp/Makefile.in index 0794193..efe1d8a 100644 --- a/tp/Makefile.in +++ b/tp/Makefile.in @@ -1219,6 +1219,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm index 1d827dc..5d85213 100644 --- a/tp/Texinfo/Common.pm +++ b/tp/Texinfo/Common.pm @@ -1,4 +1,4 @@ -# $Id: Common.pm 7836 2017-06-18 18:44:13Z gavin $ +# $Id: Common.pm 7872 2017-06-28 21:08:26Z gavin $ # Common.pm: definition of commands. Common code of other Texinfo modules. # # Copyright 2010, 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc. @@ -71,7 +71,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # i18n sub N__($) @@ -206,7 +206,8 @@ 'USE_UP_FOR_ADJACENT_NODES', 'SEPARATE_DESCRIPTION', 'NEW_CROSSREF_STYLE', 'SHORT_REF', 'IGNORE_PREAMBLE_TEXT', 'OUT_ENCODING', 'IN_ENCODING', 'DEFAULT_ENCODING', - 'MACRO_BODY_IGNORES_LEADING_SPACE'); + 'MACRO_BODY_IGNORES_LEADING_SPACE', 'INLINE_INSERTCOPYING' +); my @variable_settables_not_used = ('COMPLETE_IMAGE_PATHS', 'TOC_FILE', 'SPLIT_INDEX'); @@ -222,7 +223,7 @@ 'L2H_HTML_VERSION', 'EXTERNAL_DIR', 'USE_ISO', 'VERTICAL_HEAD_NAVIGATION', 'INLINE_CONTENTS', 'NODE_FILE_EXTENSION', 'NO_CSS', 'INLINE_CSS_STYLE', 'USE_TITLEPAGE_FOR_TITLE', - 'SIMPLE_MENU', 'EXTENSION', 'INLINE_INSERTCOPYING', 'USE_NUMERIC_ENTITY', + 'SIMPLE_MENU', 'EXTENSION', 'USE_NUMERIC_ENTITY', 'ENABLE_ENCODING_USE_ENTITY', 'ICONS', 'USE_UNIDECODE', 'DATE_IN_HEADER', 'OPEN_QUOTE_SYMBOL', 'CLOSE_QUOTE_SYMBOL', 'TOP_NODE_UP', 'TOP_NODE_UP_URL', 'TOP_NODE_FILE', @@ -1142,9 +1143,10 @@ $current->{'line_nr'}); } } else { - if ($self and defined($self->get_conf('INPUT_PERL_ENCODING'))) { - binmode(VERBINCLUDE, ":encoding(". - $self->get_conf('INPUT_PERL_ENCODING').")"); + if (defined $current->{'extra'}->{'input_perl_encoding'}) { + binmode(VERBINCLUDE, ":encoding(" + . $current->{'extra'}->{'input_perl_encoding'} + . ")"); } $verbatiminclude = { 'cmdname' => 'verbatim', 'parent' => $current->{'parent'}, @@ -2434,6 +2436,88 @@ return Data::Dumper->Dump([$tree]); } + +# common parser functions + +sub _non_bracketed_contents { + my $current = shift; + + if ($current->{'type'} and $current->{'type'} eq 'bracketed') { + my $new = {}; + $new->{'contents'} = $current->{'contents'} if ($current->{'parent'}); + $new->{'parent'} = $current->{'parent'} if ($current->{'parent'}); + return $new; + } else { + return $current; + } +} + +# In a handful of cases, we delay storing the contents of the +# index entry until now to avoid needing Texinfo::Report::gdt +# in the main code of Parser.pm. Also set 'in_code' value on +# index entries. + +sub complete_indices { + my $self = shift; + + my ($index_entry, $index_contents_normalized); + + my $save_lang = $self->get_conf('documentlanguage'); + + foreach my $index_name (keys(%{$self->{'index_names'}})) { + next if !defined $self->{'index_names'}->{$index_name}->{'index_entries'}; + foreach my $entry (@{$self->{'index_names'}->{$index_name}->{'index_entries'}}) { + $entry->{'in_code'} = $self->{'index_names'}->{$index_name}->{'in_code'}; + + if (!defined $entry->{'content'}) { + my $def_command = $entry->{'command'}->{'extra'}->{'def_command'}; + + my $def_parsed_hash = $entry->{'command'}->{'extra'}->{'def_parsed_hash'}; + if ($def_parsed_hash and $def_parsed_hash->{'class'} + and $def_command) { + # Use the document language that was current when the command was + # used for getting the translation. + $self->{'documentlanguage'} = $entry->{'command'}->{'extra'}->{'documentlanguage'}; + delete $entry->{'command'}->{'extra'}->{'documentlanguage'}; + if ($def_command eq 'defop' + or $def_command eq 'deftypeop' + or $def_command eq 'defmethod' + or $def_command eq 'deftypemethod') { + $index_entry = $self->gdt('{name} on {class}', + {'name' => $def_parsed_hash->{'name'}, + 'class' => $def_parsed_hash->{'class'}}); + $index_contents_normalized + = [_non_bracketed_contents($def_parsed_hash->{'name'}), + { 'text' => ' on '}, + _non_bracketed_contents($def_parsed_hash->{'class'})]; + } elsif ($def_command eq 'defivar' + or $def_command eq 'deftypeivar' + or $def_command eq 'deftypecv') { + $index_entry = $self->gdt('{name} of {class}', + {'name' => $def_parsed_hash->{'name'}, + 'class' => $def_parsed_hash->{'class'}}); + $index_contents_normalized + = [_non_bracketed_contents($def_parsed_hash->{'name'}), + { 'text' => ' of '}, + _non_bracketed_contents($def_parsed_hash->{'class'})]; + } + } + # 'root_line' is the container returned by gdt. + if ($index_entry->{'type'} and $index_entry->{'type'} eq 'root_line') { + for my $child (@{$index_entry->{'contents'}}) { + delete $child->{'parent'}; + } + } + if ($index_entry->{'contents'}) { + $entry->{'content'} = [@{$index_entry->{'contents'}}]; + $entry->{'content_normalized'} = $index_contents_normalized; + } + } + } + } + $self->{'documentlanguage'} = $save_lang; +} + 1; __END__ diff --git a/tp/Texinfo/Convert/Converter.pm b/tp/Texinfo/Convert/Converter.pm index 0c71db8..c1de28e 100644 --- a/tp/Texinfo/Convert/Converter.pm +++ b/tp/Texinfo/Convert/Converter.pm @@ -1,4 +1,4 @@ -# $Id: Converter.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: Converter.pm 7884 2017-06-29 19:48:28Z gavin $ # Converter.pm: Common code for Converters. # # Copyright 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, Inc. @@ -60,7 +60,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my %defaults = ( 'ENABLE_ENCODING' => 1, @@ -1136,6 +1136,19 @@ return @result; } +sub _register_command_arg($$$) +{ + my ($self, $current, $type) = @_; + + my @contents = @{$current->{'contents'}}; + Texinfo::Common::trim_spaces_comment_from_content(\@contents); + if (scalar(@contents)) { + push @{$current->{'parent'}->{'extra'}->{$type}}, \@contents; + } else { + push @{$current->{'parent'}->{'extra'}->{$type}}, undef; + } +} + sub _table_item_content_tree($$$) { my $self = shift; @@ -1160,7 +1173,7 @@ 'contents' => $contents, 'parent' => $command,}; $command->{'args'} = [$arg]; - $self->Texinfo::Parser::_register_command_arg($arg, 'brace_command_contents'); + _register_command_arg($self, $arg, 'brace_command_contents'); $contents = [$command]; } $converted_tree->{'contents'} = $contents; diff --git a/tp/Texinfo/Convert/DocBook.pm b/tp/Texinfo/Convert/DocBook.pm index 6938cd8..8902dcf 100644 --- a/tp/Texinfo/Convert/DocBook.pm +++ b/tp/Texinfo/Convert/DocBook.pm @@ -1,4 +1,4 @@ -# $Id: DocBook.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: DocBook.pm 7847 2017-06-24 20:07:38Z gavin $ # DocBook.pm: output tree as DocBook. # # Copyright 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc. @@ -55,7 +55,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my $nbsp = '&#'.hex('00A0').';'; my $mdash = '&#'.hex('2014').';'; @@ -1425,7 +1425,7 @@ 1; __END__ -# $Id: DocBook.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: DocBook.pm 7847 2017-06-24 20:07:38Z gavin $ # Automatically generated from maintain/template.pod =head1 NAME diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm index ee42773..33294b6 100644 --- a/tp/Texinfo/Convert/HTML.pm +++ b/tp/Texinfo/Convert/HTML.pm @@ -1,8 +1,8 @@ -# $Id: HTML.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: HTML.pm 7877 2017-06-29 14:39:26Z gavin $ # HTML.pm: output tree as HTML. # -# Copyright 2011, 2012, 2013, 2014, 2015, -# 2016 Free Software Foundation, Inc. +# Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017 Free Software Foundation, +# Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -64,7 +64,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # misc commands that are of use for formatting. my %formatting_misc_commands = %Texinfo::Convert::Text::formatting_misc_commands; @@ -2367,8 +2367,10 @@ $heading_level = 3; } } + } elsif (defined $command->{'level'}) { + $heading_level = $command->{'level'}; } else { - $heading_level = $command->{'level'}; + $heading_level = Texinfo::Structuring::section_level($command); } my $heading = $self->command_text($command); @@ -7734,7 +7736,7 @@ 1; __END__ -# $Id: HTML.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: HTML.pm 7877 2017-06-29 14:39:26Z gavin $ # Automatically generated from maintain/template.pod =head1 NAME diff --git a/tp/Texinfo/Convert/IXIN.pm b/tp/Texinfo/Convert/IXIN.pm index a46fb62..b53804f 100644 --- a/tp/Texinfo/Convert/IXIN.pm +++ b/tp/Texinfo/Convert/IXIN.pm @@ -54,7 +54,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my $ixin_version = 1; diff --git a/tp/Texinfo/Convert/IXINSXML.pm b/tp/Texinfo/Convert/IXINSXML.pm index d3582c2..37868ad 100644 --- a/tp/Texinfo/Convert/IXINSXML.pm +++ b/tp/Texinfo/Convert/IXINSXML.pm @@ -53,7 +53,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my %defaults = ( 'ENABLE_ENCODING' => 0, diff --git a/tp/Texinfo/Convert/Info.pm b/tp/Texinfo/Convert/Info.pm index 0f754ef..6db936b 100644 --- a/tp/Texinfo/Convert/Info.pm +++ b/tp/Texinfo/Convert/Info.pm @@ -49,7 +49,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my $STDIN_DOCU_NAME = 'stdin'; diff --git a/tp/Texinfo/Convert/Paragraph.pm b/tp/Texinfo/Convert/Paragraph.pm index 9ed2655..1aa7c53 100644 --- a/tp/Texinfo/Convert/Paragraph.pm +++ b/tp/Texinfo/Convert/Paragraph.pm @@ -20,7 +20,7 @@ use strict; use warnings; -our $VERSION = '6.4'; +our $VERSION = '6.4.90'; use Texinfo::XSLoader; diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm index af4f384..c440c08 100644 --- a/tp/Texinfo/Convert/Plaintext.pm +++ b/tp/Texinfo/Convert/Plaintext.pm @@ -1,4 +1,4 @@ -# $Id: Plaintext.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: Plaintext.pm 7897 2017-07-02 10:13:28Z gavin $ # Plaintext.pm: output tree as text with filling. # # Copyright 2010, 2011, 2012, 2013, 2014, 2015, @@ -70,7 +70,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # misc commands that are of use for formatting. my %formatting_misc_commands = %Texinfo::Convert::Text::formatting_misc_commands; @@ -1393,9 +1393,9 @@ } else { my $filehandle = do { local *FH }; if (open ($filehandle, $txt_file)) { - binmode($filehandle, ":encoding(" - .$self->get_conf('INPUT_PERL_ENCODING').")") - if (defined($self->get_conf('INPUT_PERL_ENCODING'))); + my $enc = $root->{'extra'}->{'input_perl_encoding'}; + binmode($filehandle, ":encoding($enc)") + if ($enc); my $result = ''; my $max_width = 0; while (<$filehandle>) { @@ -2755,12 +2755,12 @@ or $command eq 'deftypevr') and !$root->{'extra'}->{'def_parsed_hash'}->{'type'})) { if ($arguments) { - $tree = $self->gdt("\@tie{ }-- {category}: {name} {arguments}", { + $tree = $self->gdt("\@tie{}-- {category}: {name} {arguments}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'name' => $name, 'arguments' => $arguments}); } else { - $tree = $self->gdt("\@tie{ }-- {category}: {name}", { + $tree = $self->gdt("\@tie{}-- {category}: {name}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'name' => $name}); } @@ -2773,10 +2773,10 @@ 'type' => $root->{'extra'}->{'def_parsed_hash'}->{'type'}, 'arguments' => $arguments}; if ($self->get_conf('deftypefnnewline') eq 'on') { - $tree = $self->gdt("\@tie{ }-- {category}:\@*{type}\@*{name} {arguments}", + $tree = $self->gdt("\@tie{}-- {category}:\@*{type}\@*{name} {arguments}", $strings); } else { - $tree = $self->gdt("\@tie{ }-- {category}: {type} {name} {arguments}", + $tree = $self->gdt("\@tie{}-- {category}: {type} {name} {arguments}", $strings); } } else { @@ -2785,10 +2785,10 @@ 'type' => $root->{'extra'}->{'def_parsed_hash'}->{'type'}, 'name' => $name}; if ($self->get_conf('deftypefnnewline') eq 'on') { - $tree = $self->gdt("\@tie{ }-- {category}:\@*{type}\@*{name}", + $tree = $self->gdt("\@tie{}-- {category}:\@*{type}\@*{name}", $strings); } else { - $tree = $self->gdt("\@tie{ }-- {category}: {type} {name}", + $tree = $self->gdt("\@tie{}-- {category}: {type} {name}", $strings); } } @@ -2796,13 +2796,13 @@ or ($command eq 'deftypecv' and !$root->{'extra'}->{'def_parsed_hash'}->{'type'})) { if ($arguments) { - $tree = $self->gdt("\@tie{ }-- {category} of {class}: {name} {arguments}", { + $tree = $self->gdt("\@tie{}-- {category} of {class}: {name} {arguments}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'name' => $name, 'class' => $root->{'extra'}->{'def_parsed_hash'}->{'class'}, 'arguments' => $arguments}); } else { - $tree = $self->gdt("\@tie{ }-- {category} of {class}: {name}", { + $tree = $self->gdt("\@tie{}-- {category} of {class}: {name}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'class' => $root->{'extra'}->{'def_parsed_hash'}->{'class'}, 'name' => $name}); @@ -2811,13 +2811,13 @@ or ($command eq 'deftypeop' and !$root->{'extra'}->{'def_parsed_hash'}->{'type'})) { if ($arguments) { - $tree = $self->gdt("\@tie{ }-- {category} on {class}: {name} {arguments}", { + $tree = $self->gdt("\@tie{}-- {category} on {class}: {name} {arguments}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'name' => $name, 'class' => $root->{'extra'}->{'def_parsed_hash'}->{'class'}, 'arguments' => $arguments}); } else { - $tree = $self->gdt("\@tie{ }-- {category} on {class}: {name}", { + $tree = $self->gdt("\@tie{}-- {category} on {class}: {name}", { 'category' => $root->{'extra'}->{'def_parsed_hash'}->{'category'}, 'class' => $root->{'extra'}->{'def_parsed_hash'}->{'class'}, 'name' => $name}); @@ -2832,11 +2832,11 @@ 'arguments' => $arguments}; if ($self->get_conf('deftypefnnewline') eq 'on') { $tree - = $self->gdt("\@tie{ }-- {category} on {class}:\@*{type}\@*{name} {arguments}", + = $self->gdt("\@tie{}-- {category} on {class}:\@*{type}\@*{name} {arguments}", $strings); } else { $tree - = $self->gdt("\@tie{ }-- {category} on {class}: {type} {name} {arguments}", + = $self->gdt("\@tie{}-- {category} on {class}: {type} {name} {arguments}", $strings); } } else { @@ -2847,11 +2847,11 @@ 'name' => $name}; if ($self->get_conf('deftypefnnewline') eq 'on') { $tree - = $self->gdt("\@tie{ }-- {category} on {class}:\@*{type}\@*{name}", + = $self->gdt("\@tie{}-- {category} on {class}:\@*{type}\@*{name}", $strings); } else { $tree - = $self->gdt("\@tie{ }-- {category} on {class}: {type} {name}", + = $self->gdt("\@tie{}-- {category} on {class}: {type} {name}", $strings); } } @@ -2865,11 +2865,11 @@ 'arguments' => $arguments}; if ($self->get_conf('deftypefnnewline') eq 'on') { $tree - = $self->gdt("\@tie{ }-- {category} of {class}:\@*{type}\@*{name} {arguments}", + = $self->gdt("\@tie{}-- {category} of {class}:\@*{type}\@*{name} {arguments}", $strings); } else { $tree - = $self->gdt("\@tie{ }-- {category} of {class}: {type} {name} {arguments}", + = $self->gdt("\@tie{}-- {category} of {class}: {type} {name} {arguments}", $strings); } } else { @@ -2880,11 +2880,11 @@ 'name' => $name}; if ($self->get_conf('deftypefnnewline') eq 'on') { $tree - = $self->gdt("\@tie{ }-- {category} of {class}:\@*{type}\@*{name}", + = $self->gdt("\@tie{}-- {category} of {class}:\@*{type}\@*{name}", $strings); } else { $tree - = $self->gdt("\@tie{ }-- {category} of {class}: {type} {name}", + = $self->gdt("\@tie{}-- {category} of {class}: {type} {name}", $strings); } } @@ -3267,7 +3267,7 @@ 1; __END__ -# $Id: Plaintext.pm 7832 2017-06-18 13:06:10Z gavin $ +# $Id: Plaintext.pm 7897 2017-07-02 10:13:28Z gavin $ # Automatically generated from maintain/template.pod =head1 NAME diff --git a/tp/Texinfo/Convert/Texinfo.pm b/tp/Texinfo/Convert/Texinfo.pm index 3051d3c..98d3738 100644 --- a/tp/Texinfo/Convert/Texinfo.pm +++ b/tp/Texinfo/Convert/Texinfo.pm @@ -47,7 +47,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my %misc_commands = %Texinfo::Common::misc_commands; my %brace_commands = %Texinfo::Common::brace_commands; diff --git a/tp/Texinfo/Convert/TexinfoSXML.pm b/tp/Texinfo/Convert/TexinfoSXML.pm index 0fee8b3..f97b777 100644 --- a/tp/Texinfo/Convert/TexinfoSXML.pm +++ b/tp/Texinfo/Convert/TexinfoSXML.pm @@ -50,7 +50,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # SXML specific my %defaults = ( diff --git a/tp/Texinfo/Convert/TexinfoXML.pm b/tp/Texinfo/Convert/TexinfoXML.pm index fb664f6..652ebcb 100644 --- a/tp/Texinfo/Convert/TexinfoXML.pm +++ b/tp/Texinfo/Convert/TexinfoXML.pm @@ -52,7 +52,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # XML specific my %defaults = ( diff --git a/tp/Texinfo/Convert/Text.pm b/tp/Texinfo/Convert/Text.pm index 3c91485..9836b13 100644 --- a/tp/Texinfo/Convert/Text.pm +++ b/tp/Texinfo/Convert/Text.pm @@ -1,7 +1,7 @@ # Text.pm: output tree as simple text. # -# Copyright 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, -# Inc., +# Copyright 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Free Software +# Foundation, Inc., # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -53,7 +53,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; # this is in fact not needed for 'footnote', 'shortcaption', 'caption' # when they have no brace_command_arg, see below. @@ -309,6 +309,9 @@ $result .= (' ' x $indent_length); } else { $indent_length = 0; + } + if (!defined $current->{'level'}) { + $current->{'level'} = Texinfo::Structuring::section_level($current); } $result .=($underline_symbol{$current->{'level'}} x (Texinfo::Convert::Unicode::string_width($text) - $indent_length))."\n"; diff --git a/tp/Texinfo/Convert/XSParagraph/Makefile.in b/tp/Texinfo/Convert/XSParagraph/Makefile.in index 019d651..a9f7748 100644 --- a/tp/Texinfo/Convert/XSParagraph/Makefile.in +++ b/tp/Texinfo/Convert/XSParagraph/Makefile.in @@ -712,6 +712,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XSPARAGRAPH_INTERFACE_VERSION = @XSPARAGRAPH_INTERFACE_VERSION@ XSUBPP = @XSUBPP@ diff --git a/tp/Texinfo/Convert/XSParagraph/config.in b/tp/Texinfo/Convert/XSParagraph/config.in index 6598cbe..788b020 100644 --- a/tp/Texinfo/Convert/XSParagraph/config.in +++ b/tp/Texinfo/Convert/XSParagraph/config.in @@ -608,6 +608,9 @@ /* Define to 1 if you need to in order for 'stat' and other things to work. */ #undef _POSIX_SOURCE + +/* For standard stat data types on VMS. */ +#undef _USE_STD_STAT /* Define to 1 if the system predates C++11. */ #undef __STDC_CONSTANT_MACROS diff --git a/tp/Texinfo/Convert/XSParagraph/configure b/tp/Texinfo/Convert/XSParagraph/configure index d87f584..2422c12 100755 --- a/tp/Texinfo/Convert/XSParagraph/configure +++ b/tp/Texinfo/Convert/XSParagraph/configure @@ -769,6 +769,7 @@ GNULIB_WCTOB GNULIB_BTOWC HAVE_FEATURES_H +WINDOWS_STAT_INODES WINDOWS_64_BIT_OFF_T NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H NEXT_SYS_TYPES_H @@ -3494,19 +3495,24 @@ +b='\' +d='$' +o='[' c=']' +# This turns a string like "cc='cc';" into a string like "cc". +# Afterwards, convert \ into / in case \ is a path separator, +# so it is not interpreted as a special character by the shell. + +sed_script=" +s/^$o^=$c*= *// +s/^'// +s/ *; *$// +s/'$d// +s/$b$b/$b//g" + fetch_conf () { conf_value=`${PERL} -V:$1` - # This turns a string like "cc='cc';" into a string like "cc". - # Afterwards, convert \ into / in case \ is a path separator, - # so it is not interpreted as a special character by the shell. - conf_value=`echo $conf_value \ - | sed -e 's/^[^=]*= *//' \ - -e 's/^'\\''//' \ - -e 's/ *; *$//' \ - -e 's/'\\''$//' \ - -e 's/\\\\/\\//g' ` - #echo got "$conf_value" + conf_value=`echo $conf_value | sed "$sed_script"` } @@ -8163,6 +8169,10 @@ +$as_echo "#define _USE_STD_STAT 1" >>confdefs.h + + + @@ -8238,6 +8248,11 @@ + + + + + WINDOWS_STAT_INODES=0 @@ -9156,7 +9171,7 @@ aix* | beos* | openbsd* | mirbsd* | irix*) FLOAT_H=float.h ;; - freebsd*) + freebsd* | dragonfly*) case "$host_cpu" in i[34567]86 ) FLOAT_H=float.h @@ -9190,7 +9205,7 @@ ;; esac case "$host_os" in - aix* | freebsd* | linux*) + aix* | freebsd* | dragonfly* | linux*) if test -n "$FLOAT_H"; then REPLACE_FLOAT_LDBL=1 fi @@ -9435,7 +9450,7 @@ size_t siz = 0; int len = getdelim (&line, &siz, '\n', in); if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) - return 2; + { free (line); fclose (in); return 2; } } { /* Test result for a NULL buffer and a non-zero size. @@ -9443,7 +9458,7 @@ char *line = NULL; size_t siz = (size_t)(~0) / 4; if (getdelim (&line, &siz, '\n', in) == -1) - return 3; + { fclose (in); return 3; } free (line); } fclose (in); @@ -9596,7 +9611,7 @@ size_t siz = 0; int len = getline (&line, &siz, in); if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) - return 2; + { free (line); fclose (in); return 2; } free (line); } { @@ -9605,7 +9620,7 @@ char *line = NULL; size_t siz = (size_t)(~0) / 4; if (getline (&line, &siz, in) == -1) - return 3; + { fclose (in); return 3; } free (line); } fclose (in); diff --git a/tp/Texinfo/Convert/XSParagraph/configure.ac b/tp/Texinfo/Convert/XSParagraph/configure.ac index 9126605..3211b79 100644 --- a/tp/Texinfo/Convert/XSParagraph/configure.ac +++ b/tp/Texinfo/Convert/XSParagraph/configure.ac @@ -1,6 +1,6 @@ # configure.ac for XSParagraph # -# Copyright 2015, 2016 Free Software Foundation, Inc. +# Copyright 2015, 2016, 2017 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -14,19 +14,26 @@ AM_INIT_AUTOMAKE AC_CONFIG_MACRO_DIR([m4]) +b='\' +d='$' +o='@<:@' dnl quadrigraph for [ - see autoconf documentatoin +c='@:>@' dnl quadrigraph for ] + +# This turns a string like "cc='cc';" into a string like "cc". +# Afterwards, convert \ into / in case \ is a path separator, +# so it is not interpreted as a special character by the shell. + +sed_script=" +s/^$o^=$c*= *// +s/^'// +s/ *; *$// +s/'$d// +s/$b$b/$b//g" + fetch_conf () { conf_value=`${PERL} -V:$1` - # This turns a string like "cc='cc';" into a string like "cc". - # Afterwards, convert \ into / in case \ is a path separator, - # so it is not interpreted as a special character by the shell. - conf_value=`echo $conf_value \ - | sed -e 's/^@<:@^=@:>@*= *//' \ - -e 's/^'\\''//' \ - -e 's/ *; *$//' \ - -e 's/'\\''$//' \ - -e 's/\\\\/\\//g' ` - #echo got "$conf_value" + conf_value=`echo $conf_value | sed "$sed_script"` } AC_DEFUN([lookup_perl_conf], diff --git a/tp/Texinfo/Convert/XSParagraph/lib/Makefile.am b/tp/Texinfo/Convert/XSParagraph/lib/Makefile.am index 696c295..2116ced 100644 --- a/tp/Texinfo/Convert/XSParagraph/lib/Makefile.am +++ b/tp/Texinfo/Convert/XSParagraph/lib/Makefile.am @@ -572,6 +572,7 @@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ + -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ diff --git a/tp/Texinfo/Convert/XSParagraph/lib/Makefile.in b/tp/Texinfo/Convert/XSParagraph/lib/Makefile.in index ee363cc..617c637 100644 --- a/tp/Texinfo/Convert/XSParagraph/lib/Makefile.in +++ b/tp/Texinfo/Convert/XSParagraph/lib/Makefile.in @@ -674,6 +674,7 @@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ +WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ XSPARAGRAPH_INTERFACE_VERSION = @XSPARAGRAPH_INTERFACE_VERSION@ XSUBPP = @XSUBPP@ @@ -1520,6 +1521,7 @@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ + -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ diff --git a/tp/Texinfo/Convert/XSParagraph/lib/float.in.h b/tp/Texinfo/Convert/XSParagraph/lib/float.in.h index 3e01200..b51aafe 100644 --- a/tp/Texinfo/Convert/XSParagraph/lib/float.in.h +++ b/tp/Texinfo/Convert/XSParagraph/lib/float.in.h @@ -63,7 +63,7 @@ /* On FreeBSD/x86 6.4, the 'long double' type really has only 53 bits of precision in the compiler but 64 bits of precision at runtime. See . */ -#if defined __i386__ && defined __FreeBSD__ +#if defined __i386__ && (defined __FreeBSD__ || defined __DragonFly__) /* Number of mantissa units, in base FLT_RADIX. */ # undef LDBL_MANT_DIG # define LDBL_MANT_DIG 64 diff --git a/tp/Texinfo/Convert/XSParagraph/lib/sys_types.in.h b/tp/Texinfo/Convert/XSParagraph/lib/sys_types.in.h index 30ebfbd..3cea448 100644 --- a/tp/Texinfo/Convert/XSParagraph/lib/sys_types.in.h +++ b/tp/Texinfo/Convert/XSParagraph/lib/sys_types.in.h @@ -42,6 +42,48 @@ # define _GL_WINDOWS_64_BIT_OFF_T 1 #endif +/* Override dev_t and ino_t if distinguishable inodes support is requested + on native Windows. */ +#if @WINDOWS_STAT_INODES@ + +# if @WINDOWS_STAT_INODES@ == 2 +/* Experimental, not useful in Windows 10. */ + +/* Define dev_t to a 64-bit type. */ +# if !defined GNULIB_defined_dev_t +typedef unsigned long long int rpl_dev_t; +# undef dev_t +# define dev_t rpl_dev_t +# define GNULIB_defined_dev_t 1 +# endif + +/* Define ino_t to a 128-bit type. */ +# if !defined GNULIB_defined_ino_t +/* MSVC does not have a 128-bit integer type. + GCC has a 128-bit integer type __int128, but only on 64-bit targets. */ +typedef struct { unsigned long long int _gl_ino[2]; } rpl_ino_t; +# undef ino_t +# define ino_t rpl_ino_t +# define GNULIB_defined_ino_t 1 +# endif + +# else /* @WINDOWS_STAT_INODES@ == 1 */ + +/* Define ino_t to a 64-bit type. */ +# if !defined GNULIB_defined_ino_t +typedef unsigned long long int rpl_ino_t; +# undef ino_t +# define ino_t rpl_ino_t +# define GNULIB_defined_ino_t 1 +# endif + +# endif + +/* Indicator, for gnulib internal purposes. */ +# define _GL_WINDOWS_STAT_INODES @WINDOWS_STAT_INODES@ + +#endif + /* MSVC 9 defines size_t in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \ diff --git a/tp/Texinfo/Convert/XSParagraph/lib/vasnprintf.c b/tp/Texinfo/Convert/XSParagraph/lib/vasnprintf.c index 8c9b2ec..0c40fe7 100644 --- a/tp/Texinfo/Convert/XSParagraph/lib/vasnprintf.c +++ b/tp/Texinfo/Convert/XSParagraph/lib/vasnprintf.c @@ -116,6 +116,14 @@ # include "isnanl-nolibm.h" # include "printf-frexpl.h" # include "fpucw.h" +#endif + +#ifndef FALLTHROUGH +# if __GNUC__ < 7 +# define FALLTHROUGH ((void) 0) +# else +# define FALLTHROUGH __attribute__ ((__fallthrough__)) +# endif #endif /* Default parameters. */ @@ -4837,7 +4845,7 @@ *fbp++ = 'l'; # endif #endif - /*FALLTHROUGH*/ + FALLTHROUGH; case TYPE_LONGINT: case TYPE_ULONGINT: #if HAVE_WINT_T @@ -4861,7 +4869,10 @@ #endif *fbp = dp->conversion; #if USE_SNPRINTF -# if !(((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined __UCLIBC__) || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) +# if ! (((__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) \ + && !defined __UCLIBC__) \ + || (defined __APPLE__ && defined __MACH__) \ + || ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) fbp[1] = '%'; fbp[2] = 'n'; fbp[3] = '\0'; @@ -4875,6 +4886,13 @@ in format strings in writable memory may crash the program (if compiled with _FORTIFY_SOURCE=2), so we should avoid it in this situation. */ + /* On Mac OS X 10.3 or newer, we know that snprintf's return + value conforms to ISO C 99: the tests gl_SNPRINTF_RETVAL_C99 + and gl_SNPRINTF_TRUNCATION_C99 pass. + Therefore we can avoid using %n in this situation. + On Mac OS X 10.13 or newer, the use of %n in format strings + in writable memory by default crashes the program, so we + should avoid it in this situation. */ /* On native Windows systems (such as mingw), we can avoid using %n because: - Although the gl_SNPRINTF_TRUNCATION_C99 test fails, diff --git a/tp/Texinfo/Convert/XSParagraph/m4/float_h.m4 b/tp/Texinfo/Convert/XSParagraph/m4/float_h.m4 index e8522ab..40dc102 100644 --- a/tp/Texinfo/Convert/XSParagraph/m4/float_h.m4 +++ b/tp/Texinfo/Convert/XSParagraph/m4/float_h.m4 @@ -1,4 +1,4 @@ -# float_h.m4 serial 9 +# float_h.m4 serial 10 dnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -14,7 +14,7 @@ aix* | beos* | openbsd* | mirbsd* | irix*) FLOAT_H=float.h ;; - freebsd*) + freebsd* | dragonfly*) case "$host_cpu" in changequote(,)dnl i[34567]86 ) @@ -42,7 +42,7 @@ ;; esac case "$host_os" in - aix* | freebsd* | linux*) + aix* | freebsd* | dragonfly* | linux*) if test -n "$FLOAT_H"; then REPLACE_FLOAT_LDBL=1 fi diff --git a/tp/Texinfo/Convert/XSParagraph/m4/getdelim.m4 b/tp/Texinfo/Convert/XSParagraph/m4/getdelim.m4 index 24adb94..67afdba 100644 --- a/tp/Texinfo/Convert/XSParagraph/m4/getdelim.m4 +++ b/tp/Texinfo/Convert/XSParagraph/m4/getdelim.m4 @@ -1,4 +1,4 @@ -# getdelim.m4 serial 11 +# getdelim.m4 serial 12 dnl Copyright (C) 2005-2007, 2009-2017 Free Software Foundation, Inc. dnl @@ -39,7 +39,7 @@ size_t siz = 0; int len = getdelim (&line, &siz, '\n', in); if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) - return 2; + { free (line); fclose (in); return 2; } } { /* Test result for a NULL buffer and a non-zero size. @@ -47,7 +47,7 @@ char *line = NULL; size_t siz = (size_t)(~0) / 4; if (getdelim (&line, &siz, '\n', in) == -1) - return 3; + { fclose (in); return 3; } free (line); } fclose (in); diff --git a/tp/Texinfo/Convert/XSParagraph/m4/getline.m4 b/tp/Texinfo/Convert/XSParagraph/m4/getline.m4 index dcea772..bd91bef 100644 --- a/tp/Texinfo/Convert/XSParagraph/m4/getline.m4 +++ b/tp/Texinfo/Convert/XSParagraph/m4/getline.m4 @@ -1,4 +1,4 @@ -# getline.m4 serial 27 +# getline.m4 serial 28 dnl Copyright (C) 1998-2003, 2005-2007, 2009-2017 Free Software Foundation, dnl Inc. @@ -46,7 +46,7 @@ size_t siz = 0; int len = getline (&line, &siz, in); if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) - return 2; + { free (line); fclose (in); return 2; } free (line); } { @@ -55,7 +55,7 @@ char *line = NULL; size_t siz = (size_t)(~0) / 4; if (getline (&line, &siz, in) == -1) - return 3; + { fclose (in); return 3; } free (line); } fclose (in); diff --git a/tp/Texinfo/Convert/XSParagraph/m4/printf.m4 b/tp/Texinfo/Convert/XSParagraph/m4/printf.m4 index 113cc2e..37c9a3c 100644 --- a/tp/Texinfo/Convert/XSParagraph/m4/printf.m4 +++ b/tp/Texinfo/Convert/XSParagraph/m4/printf.m4 @@ -1,4 +1,4 @@ -# printf.m4 serial 53 +# printf.m4 serial 54 dnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -588,8 +588,8 @@ darwin[1-6].*) gl_cv_func_printf_directive_f="guessing no";; darwin*) gl_cv_func_printf_directive_f="guessing yes";; # Guess yes on Solaris >= 2.10. - solaris2.[1-9][0-9]*) gl_cv_func_printf_sizes_c99="guessing yes";; - solaris*) gl_cv_func_printf_sizes_c99="guessing no";; + solaris2.[1-9][0-9]*) gl_cv_func_printf_directive_f="guessing yes";; + solaris*) gl_cv_func_printf_directive_f="guessing no";; # If we don't know, assume the worst. *) gl_cv_func_printf_directive_f="guessing no";; esac diff --git a/tp/Texinfo/Convert/XSParagraph/m4/sys_types_h.m4 b/tp/Texinfo/Convert/XSParagraph/m4/sys_types_h.m4 index 2eb4e9e..ec0860b 100644 --- a/tp/Texinfo/Convert/XSParagraph/m4/sys_types_h.m4 +++ b/tp/Texinfo/Convert/XSParagraph/m4/sys_types_h.m4 @@ -1,4 +1,4 @@ -# sys_types_h.m4 serial 6 +# sys_types_h.m4 serial 8 dnl Copyright (C) 2011-2017 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -6,6 +6,9 @@ AC_DEFUN_ONCE([gl_SYS_TYPES_H], [ + dnl Use sane struct stat types in OpenVMS 8.2 and later. + AC_DEFINE([_USE_STD_STAT], 1, [For standard stat data types on VMS.]) + AC_REQUIRE([gl_SYS_TYPES_H_DEFAULTS]) gl_NEXT_HEADERS([sys/types.h]) @@ -17,6 +20,14 @@ dnl Whether to override the 'off_t' type. AC_REQUIRE([gl_TYPE_OFF_T]) + + dnl Whether to override the 'dev_t' and 'ino_t' types. + m4_ifdef([gl_WINDOWS_STAT_INODES], [ + AC_REQUIRE([gl_WINDOWS_STAT_INODES]) + ], [ + WINDOWS_STAT_INODES=0 + ]) + AC_SUBST([WINDOWS_STAT_INODES]) ]) AC_DEFUN([gl_SYS_TYPES_H_DEFAULTS], diff --git a/tp/Texinfo/MiscXS/configure b/tp/Texinfo/MiscXS/configure index a9545d0..2905a28 100755 --- a/tp/Texinfo/MiscXS/configure +++ b/tp/Texinfo/MiscXS/configure @@ -2757,19 +2757,24 @@ +b='\' +d='$' +o='[' c=']' +# This turns a string like "cc='cc';" into a string like "cc". +# Afterwards, convert \ into / in case \ is a path separator, +# so it is not interpreted as a special character by the shell. + +sed_script=" +s/^$o^=$c*= *// +s/^'// +s/ *; *$// +s/'$d// +s/$b$b/$b//g" + fetch_conf () { conf_value=`${PERL} -V:$1` - # This turns a string like "cc='cc';" into a string like "cc". - # Afterwards, convert \ into / in case \ is a path separator, - # so it is not interpreted as a special character by the shell. - conf_value=`echo $conf_value \ - | sed -e 's/^[^=]*= *//' \ - -e 's/^'\\''//' \ - -e 's/ *; *$//' \ - -e 's/'\\''$//' \ - -e 's/\\\\/\\//g' ` - #echo got "$conf_value" + conf_value=`echo $conf_value | sed "$sed_script"` } diff --git a/tp/Texinfo/MiscXS/configure.ac b/tp/Texinfo/MiscXS/configure.ac index 4b82737..7e3297b 100644 --- a/tp/Texinfo/MiscXS/configure.ac +++ b/tp/Texinfo/MiscXS/configure.ac @@ -1,6 +1,6 @@ # configure.ac for XSParagraph # -# Copyright 2015, 2016 Free Software Foundation, Inc. +# Copyright 2015, 2016, 2017 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -14,19 +14,26 @@ AM_INIT_AUTOMAKE AC_CONFIG_MACRO_DIR([m4]) +b='\' +d='$' +o='@<:@' dnl quadrigraph for [ - see autoconf documentatoin +c='@:>@' dnl quadrigraph for ] + +# This turns a string like "cc='cc';" into a string like "cc". +# Afterwards, convert \ into / in case \ is a path separator, +# so it is not interpreted as a special character by the shell. + +sed_script=" +s/^$o^=$c*= *// +s/^'// +s/ *; *$// +s/'$d// +s/$b$b/$b//g" + fetch_conf () { conf_value=`${PERL} -V:$1` - # This turns a string like "cc='cc';" into a string like "cc". - # Afterwards, convert \ into / in case \ is a path separator, - # so it is not interpreted as a special character by the shell. - conf_value=`echo $conf_value \ - | sed -e 's/^@<:@^=@:>@*= *//' \ - -e 's/^'\\''//' \ - -e 's/ *; *$//' \ - -e 's/'\\''$//' \ - -e 's/\\\\/\\//g' ` - #echo got "$conf_value" + conf_value=`echo $conf_value | sed "$sed_script"` } AC_DEFUN([lookup_perl_conf], diff --git a/tp/Texinfo/MiscXS.pm b/tp/Texinfo/MiscXS.pm index aa3b721..0820922 100644 --- a/tp/Texinfo/MiscXS.pm +++ b/tp/Texinfo/MiscXS.pm @@ -22,7 +22,7 @@ use strict; use warnings; -our $VERSION = '6.4'; +our $VERSION = '6.4.90'; use Texinfo::XSLoader; diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm index 123cef9..bd68151 100644 --- a/tp/Texinfo/Parser.pm +++ b/tp/Texinfo/Parser.pm @@ -1,4 +1,4 @@ -# $Id: Parser.pm 7836 2017-06-18 18:44:13Z gavin $ +# $Id: Parser.pm 7897 2017-07-02 10:13:28Z gavin $ # Parser.pm: parse texinfo code into a tree. # # Copyright 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, @@ -106,7 +106,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; sub N__($) { @@ -119,7 +119,6 @@ 'DEBUG' => 0, # if >= 10, tree is printed in texi2any.pl after parsing. # If >= 100 tree is printed every line. 'SHOW_MENU' => 1, # if false no menu error related. - 'INLINE_INSERTCOPYING' => 0, 'IGNORE_BEFORE_SETFILENAME' => 1, 'IGNORE_SPACE_AFTER_BRACED_COMMAND_NAME' => 1, 'INPUT_PERL_ENCODING' => undef, # input perl encoding name, set from @@ -253,7 +252,6 @@ my %root_commands = %Texinfo::Common::root_commands; my %sectioning_commands = %Texinfo::Common::sectioning_commands; my %command_index = %Texinfo::Common::command_index; -my %command_structuring_level = %Texinfo::Common::command_structuring_level; my %ref_commands = %Texinfo::Common::ref_commands; my %region_commands = %Texinfo::Common::region_commands; my %code_style_commands = %Texinfo::Common::code_style_commands; @@ -786,8 +784,7 @@ die if (!defined($text)); my $had_final_end_line = chomp($text); my $lines = [ map {$_."\n"} split (/\n/, $text, -1) ]; - $lines = [''] if (!@$lines); - chomp($lines->[-1]) unless ($had_final_end_line); + chomp($lines->[-1]) unless (!@$lines or $had_final_end_line); return $lines; } @@ -882,7 +879,8 @@ } my $root = { 'contents' => [], 'type' => 'text_root' }; if (@first_lines) { - push @{$root->{'contents'}}, { 'type' => 'preamble', 'contents' => [] }; + push @{$root->{'contents'}}, { 'type' => 'preamble', 'contents' => [], + 'parent' => $root }; foreach my $line (@first_lines) { push @{$root->{'contents'}->[-1]->{'contents'}}, { 'text' => $line, @@ -956,84 +954,6 @@ return $tree; } -sub _non_bracketed_contents { - my $current = shift; - - if ($current->{'type'} and $current->{'type'} eq 'bracketed') { - my $new = {}; - $new->{'contents'} = $current->{'contents'} if ($current->{'parent'}); - $new->{'parent'} = $current->{'parent'} if ($current->{'parent'}); - return $new; - } else { - return $current; - } -} - -# In a handful of cases, we delay storing the contents of the -# index entry until now to avoid needing Texinfo::Report::gdt -# in the main code of Parser.pm. Also set 'in_code' value on -# index entries. -sub _complete_indices { - my $self = shift; - - my ($index_entry, $index_contents_normalized); - - my $save_lang = $self->get_conf('documentlanguage'); - - foreach my $index_name (keys(%{$self->{'index_names'}})) { - next if !defined $self->{'index_names'}->{$index_name}->{'index_entries'}; - foreach my $entry (@{$self->{'index_names'}->{$index_name}->{'index_entries'}}) { - $entry->{'in_code'} = $self->{'index_names'}->{$index_name}->{'in_code'}; - - if (!defined $entry->{'content'}) { - my $def_command = $entry->{'command'}->{'extra'}->{'def_command'}; - - my $def_parsed_hash = $entry->{'command'}->{'extra'}->{'def_parsed_hash'}; - if ($def_parsed_hash and $def_parsed_hash->{'class'} - and $def_command) { - # Use the document language that was current when the command was - # used for getting the translation. - $self->{'documentlanguage'} = $entry->{'command'}->{'extra'}->{'documentlanguage'}; - delete $entry->{'command'}->{'extra'}->{'documentlanguage'}; - if ($def_command eq 'defop' - or $def_command eq 'deftypeop' - or $def_command eq 'defmethod' - or $def_command eq 'deftypemethod') { - $index_entry = $self->gdt('{name} on {class}', - {'name' => $def_parsed_hash->{'name'}, - 'class' => $def_parsed_hash->{'class'}}); - $index_contents_normalized - = [_non_bracketed_contents($def_parsed_hash->{'name'}), - { 'text' => ' on '}, - _non_bracketed_contents($def_parsed_hash->{'class'})]; - } elsif ($def_command eq 'defivar' - or $def_command eq 'deftypeivar' - or $def_command eq 'deftypecv') { - $index_entry = $self->gdt('{name} of {class}', - {'name' => $def_parsed_hash->{'name'}, - 'class' => $def_parsed_hash->{'class'}}); - $index_contents_normalized - = [_non_bracketed_contents($def_parsed_hash->{'name'}), - { 'text' => ' of '}, - _non_bracketed_contents($def_parsed_hash->{'class'})]; - } - } - # 'root_line' is the container returned by gdt. - if ($index_entry->{'type'} and $index_entry->{'type'} eq 'root_line') { - for my $child (@{$index_entry->{'contents'}}) { - delete $child->{'parent'}; - } - } - if ($index_entry->{'contents'}) { - $entry->{'content'} = [@{$index_entry->{'contents'}}]; - $entry->{'content_normalized'} = $index_contents_normalized; - } - } - } - } - $self->{'documentlanguage'} = $save_lang; -} - # return indices informations sub indices_information($) { @@ -1060,7 +980,6 @@ } # @ dircategory_direntry -# @ unassociated_menus # perl_encoding # input_encoding_name # input_file_name @@ -3178,6 +3097,10 @@ $self->__("\@%s: could not find %s"), $command, $text); } + } elsif ($command eq 'verbatiminclude') { + $current->{'extra'}->{'input_perl_encoding'} + = $self->{'INPUT_PERL_ENCODING'} + if defined $self->{'INPUT_PERL_ENCODING'}; } elsif ($command eq 'documentencoding') { my ($texinfo_encoding, $perl_encoding, $input_encoding) = Texinfo::Encoding::encoding_alias($text); @@ -3286,27 +3209,6 @@ _close_command_cleanup($self, $closed_command); $end->{'parent'} = $closed_command; - # register @insertcopying as a macro if INLINE_INSERTCOPYING is set. - if ($end_command eq 'copying' and $self->{'INLINE_INSERTCOPYING'}) { - # remove the end of line following @copying. - my @contents = @{$closed_command->{'contents'}}; - shift @contents if ($contents[0] and $contents[0]->{'type'} - and ($contents[0]->{'type'} eq 'empty_line_after_command' - or $contents[0]->{'type'} eq 'empty_spaces_after_command')); - # the macrobody is the @copying content converted to Texinfo. - my $body = Texinfo::Convert::Texinfo::convert( - {'contents' => \@contents}); - - #chomp ($body); - $self->{'macros'}->{'insertcopying'} = - { 'element' => { - 'args' => [{'text' => 'insertcopying', 'type' => 'macro_name'}], - 'cmdname' => 'macro', }, - 'macrobody' => $body - }; - $inline_copying = 1; - print STDERR "INLINE_INSERTCOPYING as macro\n" if ($self->{'DEBUG'}); - } push @{$closed_command->{'contents'}}, $end; # closing a menu command, but still in a menu. Open a menu_comment @@ -3377,21 +3279,19 @@ $self->{'current_node'}->{'extra'}->{'associated_section'} = $current; $current->{'extra'}->{'associated_node'} = $self->{'current_node'}; } - if ($self->{'current_parts'}) { - $current->{'extra'}->{'associated_part'} = $self->{'current_parts'}->[-1]; - foreach my $part (@{$self->{'current_parts'}}) { - $part->{'extra'}->{'part_associated_section'} = $current; - if ($current->{'cmdname'} eq 'top') { - $self->line_warn(sprintf($self->__( - "\@%s should not be associated with \@top"), - $part->{'cmdname'}), $part->{'line_nr'}); - } + if ($self->{'current_part'}) { + $current->{'extra'}->{'associated_part'} = $self->{'current_part'}; + $self->{'current_part'}->{'extra'}->{'part_associated_section'} + = $current; + if ($current->{'cmdname'} eq 'top') { + $self->line_warn("\@part should not be associated with \@top", + $self->{'current_part'}->{'line_nr'}); } - delete $self->{'current_parts'}; + delete $self->{'current_part'}; } $self->{'current_section'} = $current; } elsif ($command eq 'part') { - push @{$self->{'current_parts'}}, $current; + $self->{'current_part'} = $current; if ($self->{'current_node'} and !$self->{'current_node'}->{'extra'}->{'associated_section'}) { $self->line_warn (sprintf($self->__( @@ -3685,17 +3585,10 @@ last if (!defined($line)); if ($self->{'DEBUG'}) { - $current->{'HERE !!!!'} = 1; # marks where we are in the tree - if ($self->{'DEBUG'} >= 100) { - local $Data::Dumper::Indent = 1; - local $Data::Dumper::Purity = 1; - print STDERR "".Data::Dumper->Dump([$root], ['$root']); - } my $line_text = ''; $line_text = "$line_nr->{'line_nr'}.$line_nr->{'macro'}" if ($line_nr); print STDERR "NEW LINE(".join('|', @{$self->{'context_stack'}}).":@{$self->{'conditionals_stack'}}:$line_text): $line"; #print STDERR "CONTEXT_STACK ".join('|',@{$self->{'context_stack'}})."\n"; - delete $current->{'HERE !!!!'}; } if (not @@ -3976,6 +3869,7 @@ } my $expanded_lines = _text_to_lines($expanded); + next if (!@$expanded_lines); chomp ($expanded_lines->[-1]); pop @$expanded_lines if ($expanded_lines->[-1] eq ''); print STDERR "MACRO EXPANSION LINES: ".join('|', @$expanded_lines) @@ -4557,7 +4451,6 @@ $current->{'contents'}->[-1]->{'extra'}->{'sections_level'} = $self->{'sections_level'}; } - $misc->{'level'} = _section_level($misc); } if ($root_commands{$command}) { $misc->{'contents'} = []; @@ -4871,9 +4764,6 @@ $self->line_error($self->__( "perhaps your \@top node should be wrapped in \@ifnottex rather than \@ifinfo?"), $line_nr); - } - if ($command eq 'menu') { - push @{$self->{'info'}->{'unassociated_menus'}}, $current; } } } @@ -5108,12 +4998,9 @@ if (defined($brace_commands{$closed_command}) and $brace_commands{$closed_command} == 0 and @{$current->{'contents'}}) { - if (!($self->{'in_gdt'} and $closed_command eq 'tie')) { - $self->line_warn(sprintf($self->__( - "command \@%s does not accept arguments"), - $closed_command), $line_nr); - } - # TODO: Change @tie{ } to @tie{} in Plaintext.pm + $self->line_warn(sprintf($self->__( + "command \@%s does not accept arguments"), + $closed_command), $line_nr); } if ($current->{'parent'}->{'cmdname'} eq 'anchor') { $current->{'parent'}->{'line_nr'} = $line_nr; @@ -5181,6 +5068,9 @@ $self->line_error( $self->__("\@image missing filename argument"), $line_nr); } + $image->{'extra'}->{'input_perl_encoding'} + = $self->{'INPUT_PERL_ENCODING'} + if defined $self->{'INPUT_PERL_ENCODING'}; } elsif($current->{'parent'}->{'cmdname'} eq 'dotless') { my $dotless = $current->{'parent'}; if (@{$current->{'contents'}}) { @@ -5526,32 +5416,8 @@ # Call 'labels_information' to initialize labels. my $labels = labels_information($self); - _complete_indices($self); + Texinfo::Common::complete_indices($self); return $root; -} - -my $min_level = $command_structuring_level{'chapter'}; -my $max_level = $command_structuring_level{'subsubsection'}; - -# Return numbered level of an element -sub _section_level($) -{ - my $section = shift; - my $level = $command_structuring_level{$section->{'cmdname'}}; - # correct level according to raise/lowersections - if ($section->{'extra'} and $section->{'extra'}->{'sections_level'}) { - $level -= $section->{'extra'}->{'sections_level'}; - if ($level < $min_level) { - if ($command_structuring_level{$section->{'cmdname'}} < $min_level) { - $level = $command_structuring_level{$section->{'cmdname'}}; - } else { - $level = $min_level; - } - } elsif ($level > $max_level) { - $level = $max_level; - } - } - return $level; } # parse special line @-commands, unmacro, set, clear, clickstyle. @@ -6055,12 +5921,6 @@ An array reference of directories in which C<@include> files should be searched for. Default contains the working directory, F<.>. -=item INLINE_INSERTCOPYING - -If set, C<@insertcopying> is replaced by the C<@copying> content as if -C<@insertcopying> was a user-defined macro. In the default case, it is -considered to be a simple @-command and kept as-is in the tree. - =item IGNORE_BEFORE_SETFILENAME If set, and C<@setfilename> exists, everything before C<@setfilename> @@ -6198,10 +6058,6 @@ An array of successive C<@dircategory> and C<@direntry> as they appear in the document. - -=item unassociated_menus - -An array of menus that are not associated with a node. =item novalidate diff --git a/tp/Texinfo/Structuring.pm b/tp/Texinfo/Structuring.pm index 800ae0a..8ab0a1d 100644 --- a/tp/Texinfo/Structuring.pm +++ b/tp/Texinfo/Structuring.pm @@ -70,7 +70,7 @@ @EXPORT = qw( ); -$VERSION = '6.4'; +$VERSION = '6.4.90'; my %types_to_enter; @@ -94,6 +94,31 @@ $unnumbered_commands{'top'} = 1; $unnumbered_commands{'centerchap'} = 1; $unnumbered_commands{'part'} = 1; + +my $min_level = $command_structuring_level{'chapter'}; +my $max_level = $command_structuring_level{'subsubsection'}; + +# Return numbered level of an element +sub section_level($) +{ + my $section = shift; + my $level = $command_structuring_level{$section->{'cmdname'}}; + # correct level according to raise/lowersections + if ($section->{'extra'} and $section->{'extra'}->{'sections_level'}) { + $level -= $section->{'extra'}->{'sections_level'}; + if ($level < $min_level) { + if ($command_structuring_level{$section->{'cmdname'}} < $min_level) { + $level = $command_structuring_level{$section->{'cmdname'}}; + } else { + $level = $min_level; + } + } elsif ($level > $max_level) { + $level = $max_level; + } + } + return $level; +} + # Go through the sectioning commands (e.g. @chapter, not @node), and # set: @@ -141,7 +166,8 @@ $section_top = $content; } } - my $level = $content->{'level'}; + my $level; + $level = $content->{'level'} = section_level($content); if (!defined($level)) { warn "bug: level not defined for $content->{'cmdname'}\n"; $level = $content->{'level'} = 0; diff --git a/tp/Texinfo/Transformations.pm b/tp/Texinfo/Transformations.pm index 0f09037..ff106e5 100644 --- a/tp/Texinfo/Transformations.pm +++ b/tp/Texinfo/Transformations.pm @@ -83,11 +83,14 @@ next; } my $current_section = shift @sections_list; - my $current_section_level = $current_section->{'level'}; + my $current_section_level + = Texinfo::Structuring::section_level($current_section); my $next_section = $sections_list[0]; if (defined($next_section)) { - my $next_section_level = $next_section->{'level'}; + my $next_section_level + = Texinfo::Structuring::section_level($next_section); + if ($next_section_level - $current_section_level > 1) { my @correct_level_offset_commands = _correct_level($next_section, $contents[-1]); @@ -280,17 +283,6 @@ @{$previous_node->{'menus'}} = grep {$_ ne $current} @{$previous_node->{'menus'}}; delete $previous_node->{'menus'} if !(@{$previous_node->{'menus'}}); } - } else { - my $info = $self->global_informations(); - if (!$info or !$info->{'unassociated_menus'} - or !@{$info->{'unassociated_menus'}} - or !grep {$current eq $_} @{$info->{'unassociated_menus'}}) { - print STDERR "Bug: menu $current not in unassociated menus\n"; - } else { - @{$info->{'unassociated_menus'}} - = grep {$_ ne $current} @{$info->{'unassociated_menus'}}; - delete $info->{'unassociated_menus'} if !(@{$info->{'unassociated_menus'}}); - } } push @{$new_node->{'menus'}}, $current; } elsif ($current->{'extra'} and $current->{'extra'}->{'index_entry'}) { @@ -715,11 +707,6 @@ { my $self = shift; - if ($self->{'info'} and $self->{'info'}->{'unassociated_menus'}) { - foreach my $menu (@{$self->{'info'}->{'unassociated_menus'}}) { - menu_to_simple_menu($menu); - } - } if ($self->{'nodes'} and @{$self->{'nodes'}}) { foreach my $node (@{$self->{'nodes'}}) { if ($node->{'menus'}) { diff --git a/tp/Texinfo/XSLoader.pm b/tp/Texinfo/XSLoader.pm index 04d069e..ca442ff 100644 --- a/tp/Texinfo/XSLoader.pm +++ b/tp/Texinfo/XSLoader.pm @@ -23,7 +23,7 @@ our $TEXINFO_XS; -our $VERSION = '6.4'; +our $VERSION = '6.4.90'; our $disable_XS; diff --git a/tp/t/html_tests.t b/tp/t/html_tests.t index 299dd11..06eb425 100644 --- a/tp/t/html_tests.t +++ b/tp/t/html_tests.t @@ -77,7 +77,11 @@ @printindex cp ', {'test_split' => 'section'}, {'USE_NODES', 0}], ['simple_menu', -'@menu +' +@node Top +@top + +@menu * (ggg):: description @itemize @item idescr diff --git a/tp/t/plaintext_tests.t b/tp/t/plaintext_tests.t index c431978..a66c18e 100644 --- a/tp/t/plaintext_tests.t +++ b/tp/t/plaintext_tests.t @@ -1,4 +1,4 @@ -# $Id: plaintext_tests.t 7536 2016-12-03 17:10:59Z gavin $ +# $Id: plaintext_tests.t 7872 2017-06-28 21:08:26Z gavin $ use strict; use File::Spec; @@ -638,9 +638,6 @@ push @test_cases, ['insert_copying_and_paragraph', $insert_copying_and_paragraph]; -push @test_cases, ['insert_copying_inline_and_paragraph', - $insert_copying_and_paragraph, - {'INLINE_INSERTCOPYING' => 1}]; my $at_commands_glued_text = 'at@@. TeX@TeX{}TeX. diff --git a/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl b/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl index 1d8122e..54cacec 100644 --- a/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl +++ b/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl @@ -3193,7 +3193,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => { 'file_name' => '', @@ -3278,7 +3279,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => {}, 'parent' => {} @@ -10258,7 +10260,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => { 'file_name' => '', @@ -10343,7 +10346,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => {}, 'parent' => {} @@ -10411,7 +10415,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => { 'file_name' => '', @@ -10496,7 +10501,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => {}, 'parent' => {} @@ -15603,7 +15609,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => { 'file_name' => '', @@ -15688,7 +15695,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'iso-8859-15' }, 'line_nr' => {}, 'parent' => {} diff --git a/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl b/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl index 022550b..b493e7a 100644 --- a/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl +++ b/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl @@ -3193,7 +3193,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => { 'file_name' => '', @@ -3278,7 +3279,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => {}, 'parent' => {} @@ -10258,7 +10260,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => { 'file_name' => '', @@ -10343,7 +10346,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => {}, 'parent' => {} @@ -10411,7 +10415,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => { 'file_name' => '', @@ -10496,7 +10501,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => {}, 'parent' => {} @@ -15603,7 +15609,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => { 'file_name' => '', @@ -15688,7 +15695,8 @@ [ {} ] - ] + ], + 'input_perl_encoding' => 'utf-8-strict' }, 'line_nr' => {}, 'parent' => {} diff --git a/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl b/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl index 31c5af4..fa80cb2 100644 --- a/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl +++ b/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl @@ -30,6 +30,7 @@ 'type' => 'preamble_text' } ], + 'parent' => {}, 'type' => 'preamble' }, { @@ -177,6 +178,7 @@ $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]; +$result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[1]; $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename'}{'contents'}[0]; diff --git a/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl b/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl index f9bdc04..7f78ed4 100644 --- a/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl +++ b/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl @@ -28,6 +28,7 @@ 'type' => 'preamble_text' } ], + 'parent' => {}, 'type' => 'preamble' }, { @@ -112,6 +113,7 @@ $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]; +$result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}; $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]; $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]{'args'}[0]; $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'empty_lines_at_beginning_no_setfilename_no_element'}{'contents'}[1]{'args'}[0]; diff --git a/tp/t/results/html_tests/simple_menu.pl b/tp/t/results/html_tests/simple_menu.pl index 421f93f..075e0f7 100644 --- a/tp/t/results/html_tests/simple_menu.pl +++ b/tp/t/results/html_tests/simple_menu.pl @@ -8,300 +8,69 @@ $result_trees{'simple_menu'} = { 'contents' => [ { - 'cmdname' => 'menu', 'contents' => [ { - 'extra' => { - 'command' => {} - }, 'parent' => {}, 'text' => ' ', - 'type' => 'empty_line_after_command' - }, + 'type' => 'empty_line' + } + ], + 'parent' => {}, + 'type' => 'text_root' + }, + { + 'args' => [ { 'contents' => [ { - 'args' => [ - { - 'parent' => {}, - 'text' => '* ', - 'type' => 'menu_entry_leading_text' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => '(ggg)' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_node' - }, - { - 'parent' => {}, - 'text' => ':: ', - 'type' => 'menu_entry_separator' - } - ], 'extra' => { - 'menu_entry_description' => { - 'contents' => [ - { - 'contents' => [ - { - 'parent' => {}, - 'text' => 'description -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - }, - { - 'cmdname' => 'itemize', - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line_after_command' - }, - { - 'cmdname' => 'item', - 'contents' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'idescr -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'extra' => { - 'item_number' => 1, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 4, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'itemize' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'itemize', - 'spaces_after_command' => {}, - 'text_arg' => 'itemize' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 5, - 'macro' => '' - }, - 'parent' => {} - } - ], - 'extra' => { - 'block_command_line_contents' => [ - [ - { - 'cmdname' => 'bullet', - 'contents' => [], - 'parent' => {}, - 'type' => 'command_as_argument' - } - ] - ], - 'command_as_argument' => {}, - 'end_command' => {}, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 3, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'contents' => [ - { - 'cmdname' => 'html', - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line_after_command' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => 'in html -' - } - ], - 'parent' => {}, - 'type' => 'rawpreformatted' - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'html' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'html', - 'spaces_after_command' => {}, - 'text_arg' => 'html' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 8, - 'macro' => '' - }, - 'parent' => {} - } - ], - 'extra' => { - 'end_command' => {}, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 6, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'parent' => {}, - 'text' => 'AAA -' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'after_description_line' - }, - { - 'parent' => {}, - 'text' => 'CCC -' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_description' - }, - 'menu_entry_node' => { - 'manual_content' => [ - { - 'parent' => {}, - 'text' => 'ggg' - } - ] - } - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 2, - 'macro' => '' + 'command' => {} }, 'parent' => {}, - 'type' => 'menu_entry' + 'text' => ' ', + 'type' => 'empty_spaces_after_command' }, - {} + { + 'parent' => {}, + 'text' => 'Top' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } ], 'parent' => {}, - 'type' => 'preformatted' - }, - {}, - {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'node', + 'contents' => [], + 'extra' => { + 'node_content' => [ + {} + ], + 'nodes_manuals' => [ + { + 'node_content' => [], + 'normalized' => 'Top' + } + ], + 'normalized' => 'Top', + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 2, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'args' => [ { - 'cmdname' => 'itemize', 'contents' => [ { 'extra' => { @@ -311,212 +80,22 @@ 'text' => ' ', 'type' => 'empty_line_after_command' - }, - { - 'cmdname' => 'item', - 'contents' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'iaa -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'extra' => { - 'item_number' => 1, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 14, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'itemize' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'itemize', - 'spaces_after_command' => {}, - 'text_arg' => 'itemize' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 15, - 'macro' => '' - }, - 'parent' => {} - } - ], - 'extra' => { - 'block_command_line_contents' => [ - [ - { - 'cmdname' => 'bullet', - 'contents' => [], - 'parent' => {}, - 'type' => 'command_as_argument' - } - ] - ], - 'command_as_argument' => {}, - 'end_command' => {}, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 13, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line' - }, - { - 'cmdname' => 'html', - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line_after_command' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => 'in html title -' - } - ], - 'parent' => {}, - 'type' => 'rawpreformatted' - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'html' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'html', - 'spaces_after_command' => {}, - 'text_arg' => 'html' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 19, - 'macro' => '' - }, - 'parent' => {} - } - ], - 'extra' => { - 'end_command' => {}, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 17, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line' - }, - { - 'parent' => {}, - 'text' => 'BBB -' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line' } ], 'parent' => {}, - 'type' => 'preformatted' + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'top', + 'contents' => [ + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' }, { - 'cmdname' => 'itemize', + 'cmdname' => 'menu', 'contents' => [ { 'extra' => { @@ -528,328 +107,6 @@ 'type' => 'empty_line_after_command' }, { - 'cmdname' => 'item', - 'contents' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'ibb -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'extra' => { - 'item_number' => 1, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 24, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'itemize' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'itemize', - 'spaces_after_command' => {}, - 'text_arg' => 'itemize' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 25, - 'macro' => '' - }, - 'parent' => {} - } - ], - 'extra' => { - 'block_command_line_contents' => [ - [ - { - 'cmdname' => 'bullet', - 'contents' => [], - 'parent' => {}, - 'type' => 'command_as_argument' - } - ] - ], - 'command_as_argument' => {}, - 'end_command' => {}, - 'spaces_after_command' => {} - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 23, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'contents' => [ - { - 'args' => [ - { - 'parent' => {}, - 'text' => '* ', - 'type' => 'menu_entry_leading_text' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => '(manual)' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_node' - }, - { - 'parent' => {}, - 'text' => '::', - 'type' => 'menu_entry_separator' - } - ], - 'extra' => { - 'menu_entry_description' => { - 'contents' => [ - { - 'contents' => [ - { - 'parent' => {}, - 'text' => ' -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_description' - }, - 'menu_entry_node' => { - 'manual_content' => [ - { - 'parent' => {}, - 'text' => 'manual' - } - ] - } - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 26, - 'macro' => '' - }, - 'parent' => {}, - 'type' => 'menu_entry' - }, - {}, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'after_description_line' - }, - { - 'parent' => {}, - 'text' => 'comment -' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line' - }, - { - 'args' => [ - { - 'parent' => {}, - 'text' => '* ', - 'type' => 'menu_entry_leading_text' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => '(after_comment)' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_node' - }, - { - 'parent' => {}, - 'text' => ':: ', - 'type' => 'menu_entry_separator' - } - ], - 'extra' => { - 'menu_entry_description' => { - 'contents' => [ - { - 'contents' => [ - { - 'parent' => {}, - 'text' => 'description -' - }, - { - 'parent' => {}, - 'text' => 'in description -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_description' - }, - 'menu_entry_node' => { - 'manual_content' => [ - { - 'parent' => {}, - 'text' => 'after_comment' - } - ] - } - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 30, - 'macro' => '' - }, - 'parent' => {}, - 'type' => 'menu_entry' - }, - {}, - {}, - { - 'args' => [ - { - 'parent' => {}, - 'text' => '* ', - 'type' => 'menu_entry_leading_text' - }, - { - 'contents' => [ - { - 'parent' => {}, - 'text' => '(after_description)' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_node' - }, - { - 'parent' => {}, - 'text' => '::', - 'type' => 'menu_entry_separator' - } - ], - 'extra' => { - 'menu_entry_description' => { - 'contents' => [ - { - 'contents' => [ - { - 'parent' => {}, - 'text' => ' -' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - } - ], - 'parent' => {}, - 'type' => 'menu_entry_description' - }, - 'menu_entry_node' => { - 'manual_content' => [ - { - 'parent' => {}, - 'text' => 'after_description' - } - ] - } - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 32, - 'macro' => '' - }, - 'parent' => {}, - 'type' => 'menu_entry' - }, - {}, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'after_description_line' - } - ], - 'parent' => {}, - 'type' => 'preformatted' - }, - { - 'cmdname' => 'detailmenu', - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' -', - 'type' => 'empty_line_after_command' - }, - { 'contents' => [ { 'args' => [ @@ -862,7 +119,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => '(detailggg)' + 'text' => '(ggg)' } ], 'parent' => {}, @@ -881,7 +138,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => 'detaildescription + 'text' => 'description ' } ], @@ -915,7 +172,7 @@ }, { 'parent' => {}, - 'text' => 'idetaildescr + 'text' => 'idescr ' } ], @@ -929,7 +186,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 37, + 'line_nr' => 8, 'macro' => '' }, 'parent' => {} @@ -970,7 +227,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 38, + 'line_nr' => 9, 'macro' => '' }, 'parent' => {} @@ -993,7 +250,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 36, + 'line_nr' => 7, 'macro' => '' }, 'parent' => {} @@ -1016,7 +273,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => 'detailin detailhtml + 'text' => 'in html ' } ], @@ -1059,7 +316,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 41, + 'line_nr' => 12, 'macro' => '' }, 'parent' => {} @@ -1071,14 +328,14 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 39, + 'line_nr' => 10, 'macro' => '' }, 'parent' => {} }, { 'parent' => {}, - 'text' => 'detailAAA + 'text' => 'AAA ' }, { @@ -1089,7 +346,7 @@ }, { 'parent' => {}, - 'text' => 'detailCCC + 'text' => 'CCC ' }, { @@ -1110,14 +367,14 @@ 'manual_content' => [ { 'parent' => {}, - 'text' => 'detailggg' + 'text' => 'ggg' } ] } }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 35, + 'line_nr' => 6, 'macro' => '' }, 'parent' => {}, @@ -1157,7 +414,7 @@ }, { 'parent' => {}, - 'text' => 'detailiaa + 'text' => 'iaa ' } ], @@ -1171,7 +428,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 47, + 'line_nr' => 18, 'macro' => '' }, 'parent' => {} @@ -1212,7 +469,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 48, + 'line_nr' => 19, 'macro' => '' }, 'parent' => {} @@ -1235,7 +492,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 46, + 'line_nr' => 17, 'macro' => '' }, 'parent' => {} @@ -1264,7 +521,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => 'detailin html detailtitle + 'text' => 'in html title ' } ], @@ -1307,7 +564,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 52, + 'line_nr' => 23, 'macro' => '' }, 'parent' => {} @@ -1319,7 +576,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 50, + 'line_nr' => 21, 'macro' => '' }, 'parent' => {} @@ -1332,7 +589,7 @@ }, { 'parent' => {}, - 'text' => 'detailBBB + 'text' => 'BBB ' }, { @@ -1372,7 +629,7 @@ }, { 'parent' => {}, - 'text' => 'detailibb + 'text' => 'ibb ' } ], @@ -1386,7 +643,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 57, + 'line_nr' => 28, 'macro' => '' }, 'parent' => {} @@ -1427,7 +684,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 58, + 'line_nr' => 29, 'macro' => '' }, 'parent' => {} @@ -1450,7 +707,7 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 56, + 'line_nr' => 27, 'macro' => '' }, 'parent' => {} @@ -1468,7 +725,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => '(detailmanual)' + 'text' => '(manual)' } ], 'parent' => {}, @@ -1502,14 +759,14 @@ 'manual_content' => [ { 'parent' => {}, - 'text' => 'detailmanual' + 'text' => 'manual' } ] } }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 59, + 'line_nr' => 30, 'macro' => '' }, 'parent' => {}, @@ -1524,7 +781,7 @@ }, { 'parent' => {}, - 'text' => 'detailcomment + 'text' => 'comment ' }, { @@ -1544,7 +801,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => '(detailafter_comment)' + 'text' => '(after_comment)' } ], 'parent' => {}, @@ -1563,12 +820,12 @@ 'contents' => [ { 'parent' => {}, - 'text' => 'detaildescription + 'text' => 'description ' }, { 'parent' => {}, - 'text' => 'in detaildescription + 'text' => 'in description ' } ], @@ -1583,14 +840,14 @@ 'manual_content' => [ { 'parent' => {}, - 'text' => 'detailafter_comment' + 'text' => 'after_comment' } ] } }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 63, + 'line_nr' => 34, 'macro' => '' }, 'parent' => {}, @@ -1609,7 +866,7 @@ 'contents' => [ { 'parent' => {}, - 'text' => '(detailafter_description)' + 'text' => '(after_description)' } ], 'parent' => {}, @@ -1643,14 +900,14 @@ 'manual_content' => [ { 'parent' => {}, - 'text' => 'detailafter_description' + 'text' => 'after_description' } ] } }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 65, + 'line_nr' => 36, 'macro' => '' }, 'parent' => {}, @@ -1668,6 +925,889 @@ 'type' => 'preformatted' }, { + 'cmdname' => 'detailmenu', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'contents' => [ + { + 'args' => [ + { + 'parent' => {}, + 'text' => '* ', + 'type' => 'menu_entry_leading_text' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => '(detailggg)' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_node' + }, + { + 'parent' => {}, + 'text' => ':: ', + 'type' => 'menu_entry_separator' + } + ], + 'extra' => { + 'menu_entry_description' => { + 'contents' => [ + { + 'contents' => [ + { + 'parent' => {}, + 'text' => 'detaildescription +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + }, + { + 'cmdname' => 'itemize', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'cmdname' => 'item', + 'contents' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'idetaildescr +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'extra' => { + 'item_number' => 1, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 41, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'itemize' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'itemize', + 'spaces_after_command' => {}, + 'text_arg' => 'itemize' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 42, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'block_command_line_contents' => [ + [ + { + 'cmdname' => 'bullet', + 'contents' => [], + 'parent' => {}, + 'type' => 'command_as_argument' + } + ] + ], + 'command_as_argument' => {}, + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 40, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'contents' => [ + { + 'cmdname' => 'html', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => 'detailin detailhtml +' + } + ], + 'parent' => {}, + 'type' => 'rawpreformatted' + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'html' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'html', + 'spaces_after_command' => {}, + 'text_arg' => 'html' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 45, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 43, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'parent' => {}, + 'text' => 'detailAAA +' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'after_description_line' + }, + { + 'parent' => {}, + 'text' => 'detailCCC +' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_description' + }, + 'menu_entry_node' => { + 'manual_content' => [ + { + 'parent' => {}, + 'text' => 'detailggg' + } + ] + } + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 39, + 'macro' => '' + }, + 'parent' => {}, + 'type' => 'menu_entry' + }, + {} + ], + 'parent' => {}, + 'type' => 'preformatted' + }, + {}, + {}, + { + 'cmdname' => 'itemize', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'cmdname' => 'item', + 'contents' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'detailiaa +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'extra' => { + 'item_number' => 1, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 51, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'itemize' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'itemize', + 'spaces_after_command' => {}, + 'text_arg' => 'itemize' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 52, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'block_command_line_contents' => [ + [ + { + 'cmdname' => 'bullet', + 'contents' => [], + 'parent' => {}, + 'type' => 'command_as_argument' + } + ] + ], + 'command_as_argument' => {}, + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 50, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' + }, + { + 'cmdname' => 'html', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => 'detailin html detailtitle +' + } + ], + 'parent' => {}, + 'type' => 'rawpreformatted' + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'html' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'html', + 'spaces_after_command' => {}, + 'text_arg' => 'html' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 56, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 54, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' + }, + { + 'parent' => {}, + 'text' => 'detailBBB +' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + }, + { + 'cmdname' => 'itemize', + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line_after_command' + }, + { + 'cmdname' => 'item', + 'contents' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'detailibb +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'extra' => { + 'item_number' => 1, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 61, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'itemize' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'itemize', + 'spaces_after_command' => {}, + 'text_arg' => 'itemize' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 62, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'block_command_line_contents' => [ + [ + { + 'cmdname' => 'bullet', + 'contents' => [], + 'parent' => {}, + 'type' => 'command_as_argument' + } + ] + ], + 'command_as_argument' => {}, + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 60, + 'macro' => '' + }, + 'parent' => {} + }, + { + 'contents' => [ + { + 'args' => [ + { + 'parent' => {}, + 'text' => '* ', + 'type' => 'menu_entry_leading_text' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => '(detailmanual)' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_node' + }, + { + 'parent' => {}, + 'text' => '::', + 'type' => 'menu_entry_separator' + } + ], + 'extra' => { + 'menu_entry_description' => { + 'contents' => [ + { + 'contents' => [ + { + 'parent' => {}, + 'text' => ' +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_description' + }, + 'menu_entry_node' => { + 'manual_content' => [ + { + 'parent' => {}, + 'text' => 'detailmanual' + } + ] + } + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 63, + 'macro' => '' + }, + 'parent' => {}, + 'type' => 'menu_entry' + }, + {}, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'after_description_line' + }, + { + 'parent' => {}, + 'text' => 'detailcomment +' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'empty_line' + }, + { + 'args' => [ + { + 'parent' => {}, + 'text' => '* ', + 'type' => 'menu_entry_leading_text' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => '(detailafter_comment)' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_node' + }, + { + 'parent' => {}, + 'text' => ':: ', + 'type' => 'menu_entry_separator' + } + ], + 'extra' => { + 'menu_entry_description' => { + 'contents' => [ + { + 'contents' => [ + { + 'parent' => {}, + 'text' => 'detaildescription +' + }, + { + 'parent' => {}, + 'text' => 'in detaildescription +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_description' + }, + 'menu_entry_node' => { + 'manual_content' => [ + { + 'parent' => {}, + 'text' => 'detailafter_comment' + } + ] + } + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 67, + 'macro' => '' + }, + 'parent' => {}, + 'type' => 'menu_entry' + }, + {}, + {}, + { + 'args' => [ + { + 'parent' => {}, + 'text' => '* ', + 'type' => 'menu_entry_leading_text' + }, + { + 'contents' => [ + { + 'parent' => {}, + 'text' => '(detailafter_description)' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_node' + }, + { + 'parent' => {}, + 'text' => '::', + 'type' => 'menu_entry_separator' + } + ], + 'extra' => { + 'menu_entry_description' => { + 'contents' => [ + { + 'contents' => [ + { + 'parent' => {}, + 'text' => ' +' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + } + ], + 'parent' => {}, + 'type' => 'menu_entry_description' + }, + 'menu_entry_node' => { + 'manual_content' => [ + { + 'parent' => {}, + 'text' => 'detailafter_description' + } + ] + } + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 69, + 'macro' => '' + }, + 'parent' => {}, + 'type' => 'menu_entry' + }, + {}, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'after_description_line' + } + ], + 'parent' => {}, + 'type' => 'preformatted' + }, + { + 'args' => [ + { + 'contents' => [ + { + 'extra' => { + 'command' => {} + }, + 'parent' => {}, + 'text' => ' ', + 'type' => 'empty_spaces_after_command' + }, + { + 'parent' => {}, + 'text' => 'detailmenu' + }, + { + 'parent' => {}, + 'text' => ' +', + 'type' => 'spaces_at_end' + } + ], + 'parent' => {}, + 'type' => 'misc_line_arg' + } + ], + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'detailmenu', + 'spaces_after_command' => {}, + 'text_arg' => 'detailmenu' + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 71, + 'macro' => '' + }, + 'parent' => {} + } + ], + 'extra' => { + 'end_command' => {}, + 'spaces_after_command' => {} + }, + 'line_nr' => { + 'file_name' => '', + 'line_nr' => 38, + 'macro' => '' + }, + 'parent' => {} + }, + { 'args' => [ { 'contents' => [ @@ -1681,7 +1821,7 @@ }, { 'parent' => {}, - 'text' => 'detailmenu' + 'text' => 'menu' }, { 'parent' => {}, @@ -1697,13 +1837,13 @@ 'cmdname' => 'end', 'extra' => { 'command' => {}, - 'command_argument' => 'detailmenu', + 'command_argument' => 'menu', 'spaces_after_command' => {}, - 'text_arg' => 'detailmenu' + 'text_arg' => 'menu' }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 67, + 'line_nr' => 72, 'macro' => '' }, 'parent' => {} @@ -1715,401 +1855,382 @@ }, 'line_nr' => { 'file_name' => '', - 'line_nr' => 34, - 'macro' => '' - }, - 'parent' => {} - }, - { - 'args' => [ - { - 'contents' => [ - { - 'extra' => { - 'command' => {} - }, - 'parent' => {}, - 'text' => ' ', - 'type' => 'empty_spaces_after_command' - }, - { - 'parent' => {}, - 'text' => 'menu' - }, - { - 'parent' => {}, - 'text' => ' -', - 'type' => 'spaces_at_end' - } - ], - 'parent' => {}, - 'type' => 'misc_line_arg' - } - ], - 'cmdname' => 'end', - 'extra' => { - 'command' => {}, - 'command_argument' => 'menu', - 'spaces_after_command' => {}, - 'text_arg' => 'menu' - }, - 'line_nr' => { - 'file_name' => '', - 'line_nr' => 68, + 'line_nr' => 5, 'macro' => '' }, 'parent' => {} } ], 'extra' => { - 'end_command' => {}, + 'misc_content' => [], 'spaces_after_command' => {} }, + 'level' => 0, 'line_nr' => { 'file_name' => '', - 'line_nr' => 1, + 'line_nr' => 3, 'macro' => '' }, 'parent' => {} } ], - 'type' => 'text_root' + 'type' => 'document_root' }; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]; $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[2] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[3] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[6]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[6] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[7] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[9] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'contents'}[10]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[7]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[2] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[3] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[2]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[6]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[6] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[7] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[9] = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'contents'}[10]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[7]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[8]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'args'}[0]{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]{'parent'} = $result_trees{'simple_menu'}{'contents'}[0]; -$result_trees{'simple_menu'}{'contents'}[0]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[9]; -$result_trees{'simple_menu'}{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[0]{'contents'}[0]; $result_trees{'simple_menu'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}; - -$result_texis{'simple_menu'} = '@menu +$result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[1]{'extra'}{'node_content'}[0] = $result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[1]{'extra'}{'nodes_manuals'}[0]{'node_content'} = $result_trees{'simple_menu'}{'contents'}[1]{'extra'}{'node_content'}; +$result_trees{'simple_menu'}{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[1]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}; +$result_trees{'simple_menu'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[2] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[3] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[6]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[6] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[7] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[9] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'contents'}[10]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[7]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[2] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[3] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'extra'}{'command_as_argument'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[6]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[1] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[0]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[3]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[4]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[6] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[7] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[5]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'args'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[9] = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[8]{'extra'}{'menu_entry_description'}{'contents'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'contents'}[10]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[7]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[8]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[8]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'extra'}{'command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'extra'}{'end_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[9]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'contents'}[1]{'parent'} = $result_trees{'simple_menu'}{'contents'}[2]; +$result_trees{'simple_menu'}{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'simple_menu'}{'contents'}[2]{'args'}[0]{'contents'}[0]; +$result_trees{'simple_menu'}{'contents'}[2]{'parent'} = $result_trees{'simple_menu'}; + +$result_texis{'simple_menu'} = ' +@node Top +@top + +@menu * (ggg):: description @itemize @item idescr @@ -2180,7 +2301,9 @@ '; -$result_texts{'simple_menu'} = '* (ggg):: description +$result_texts{'simple_menu'} = ' + +* (ggg):: description idescr AAA @@ -2222,48 +2345,101 @@ '; -$result_errors{'simple_menu'} = [ - { - 'error_line' => ':1: @menu seen before first @node -', - 'file_name' => '', - 'line_nr' => 1, - 'macro' => '', - 'text' => '@menu seen before first @node', - 'type' => 'error' +$result_sectioning{'simple_menu'} = { + 'level' => -1, + 'section_childs' => [ + { + 'cmdname' => 'top', + 'extra' => { + 'associated_node' => { + 'cmdname' => 'node', + 'extra' => { + 'normalized' => 'Top' + } + } + }, + 'level' => 0, + 'section_up' => {} + } + ] +}; +$result_sectioning{'simple_menu'}{'section_childs'}[0]{'section_up'} = $result_sectioning{'simple_menu'}; + +$result_nodes{'simple_menu'} = { + 'cmdname' => 'node', + 'extra' => { + 'associated_section' => { + 'cmdname' => 'top', + 'extra' => {}, + 'level' => 0 + }, + 'normalized' => 'Top' }, - { - 'error_line' => ':1: perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo? -', - 'file_name' => '', - 'line_nr' => 1, - 'macro' => '', - 'text' => 'perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?', - 'type' => 'error' + 'menu_child' => { + 'extra' => { + 'manual_content' => [ + { + 'text' => 'ggg' + } + ] + } }, - { - 'error_line' => ':34: @detailmenu seen before first @node -', - 'file_name' => '', - 'line_nr' => 34, - 'macro' => '', - 'text' => '@detailmenu seen before first @node', - 'type' => 'error' + 'menus' => [ + { + 'cmdname' => 'menu', + 'extra' => { + 'end_command' => { + 'cmdname' => 'end', + 'extra' => { + 'command' => {}, + 'command_argument' => 'menu', + 'text_arg' => 'menu' + } + } + } + } + ], + 'node_next' => {}, + 'node_up' => { + 'extra' => { + 'manual_content' => [ + { + 'text' => 'dir' + } + ], + 'top_node_up' => {} + }, + 'type' => 'top_node_up' + } +}; +$result_nodes{'simple_menu'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'} = $result_nodes{'simple_menu'}{'menus'}[0]; +$result_nodes{'simple_menu'}{'node_next'} = $result_nodes{'simple_menu'}{'menu_child'}; +$result_nodes{'simple_menu'}{'node_up'}{'extra'}{'top_node_up'} = $result_nodes{'simple_menu'}; + +$result_menus{'simple_menu'} = { + 'cmdname' => 'node', + 'extra' => { + 'normalized' => 'Top' }, - { - 'error_line' => ':34: perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo? -', - 'file_name' => '', - 'line_nr' => 34, - 'macro' => '', - 'text' => 'perhaps your @top node should be wrapped in @ifnottex rather than @ifinfo?', - 'type' => 'error' + 'menu_child' => { + 'extra' => { + 'manual_content' => [ + { + 'text' => 'ggg' + } + ] + } } -]; +}; + +$result_errors{'simple_menu'} = []; $result_converted{'info'}->{'simple_menu'} = 'This is , produced from . + + +File: , Node: Top, Next: (ggg), Up: (dir) * Menu: @@ -2310,19 +2486,10 @@  Tag Table: +Node: Top27  End Tag Table '; - -$result_converted_errors{'info'}->{'simple_menu'} = [ - { - 'error_line' => 'warning: document without nodes -', - 'text' => 'document without nodes', - 'type' => 'warning' - } -]; - $result_converted{'html'}->{'simple_menu'} = ' @@ -2336,6 +2503,7 @@ +