From 907b8fe92ea75bf5f102e818a88568efd407a13b Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Mon, 6 Dec 2021 12:25:06 +0900 Subject: [PATCH] Imported Upstream version 1.47.2 --- README | 4 +- THANKS | 1 + build-aux/install-sh | 373 +++++++++++++++++++++---------------------- build-aux/missing | 2 +- configure | 36 +++-- debian/changelog | 7 + help2man-de.info | 2 +- help2man-es.info | 2 +- help2man-fr.info | 2 +- help2man-pl.info | 2 +- help2man-uk.info | 2 +- help2man.1 | 4 +- help2man.PL | 2 +- help2man.da.1 | 4 +- help2man.de.1 | 4 +- help2man.el.1 | 4 +- help2man.eo.1 | 4 +- help2man.es.1 | 4 +- help2man.fi.1 | 4 +- help2man.fr.1 | 4 +- help2man.hr.1 | Bin 4220 -> 4219 bytes help2man.hu.1 | 4 +- help2man.info | 2 +- help2man.it.1 | 4 +- help2man.ja.1 | Bin 5767 -> 5767 bytes help2man.nb.1 | 4 +- help2man.pl.1 | Bin 4454 -> 4455 bytes help2man.pt_BR.1 | 4 +- help2man.ru.1 | Bin 6577 -> 6577 bytes help2man.sr.1 | Bin 6340 -> 6364 bytes help2man.sv.1 | 4 +- help2man.uk.1 | Bin 7211 -> 7211 bytes help2man.vi.1 | Bin 5419 -> 5420 bytes help2man.zh_CN.1 | Bin 0 -> 3778 bytes locales | 1 + po/eo.gmo | Bin 9585 -> 9581 bytes po/eo.po | 4 +- po/zh_CN.gmo | Bin 0 -> 9203 bytes po/zh_CN.po | 435 +++++++++++++++++++++++++++++++++++++++++++++++++++ 39 files changed, 683 insertions(+), 246 deletions(-) create mode 100644 help2man.zh_CN.1 create mode 100644 po/zh_CN.gmo create mode 100644 po/zh_CN.po diff --git a/README b/README index 349e484..d887211 100644 --- a/README +++ b/README @@ -1,10 +1,10 @@ - README for GNU help2man version 1.47.1 + README for GNU help2man version 1.47.2 help2man is a script to create simple man pages from the --help and --version output of programs. http://www.gnu.org/software/help2man/ - ftp://ftp.gnu.org/gnu/help2man/help2man-1.47.1.tar.xz + ftp://ftp.gnu.org/gnu/help2man/help2man-1.47.2.tar.xz git://anonscm.debian.org/users/bod/help2man.git http://anonscm.debian.org/gitweb/?p=users/bod/help2man.git diff --git a/THANKS b/THANKS index aa51c23..6a27a33 100644 --- a/THANKS +++ b/THANKS @@ -60,6 +60,7 @@ Patrick Tullmann Balázs Úr Sven Utcke Tommi Vainikainen +Mingye Wang Mischa Williamson Christopher Yeoh Stefano Zacchiroli diff --git a/build-aux/install-sh b/build-aux/install-sh index 377bb86..59990a1 100755 --- a/build-aux/install-sh +++ b/build-aux/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2011-11-20.07; # UTC +scriptversion=2014-09-12.12; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -41,19 +41,15 @@ scriptversion=2011-11-20.07; # UTC # This script is compatible with the BSD install script, but was written # from scratch. +tab=' ' nl=' ' -IFS=" "" $nl" +IFS=" $tab$nl" -# set DOITPROG to echo to test this script +# Set DOITPROG to "echo" to test this script. -# Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} -if test -z "$doit"; then - doit_exec=exec -else - doit_exec=$doit -fi +doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. @@ -68,17 +64,6 @@ mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} -posix_glob='?' -initialize_posix_glob=' - test "$posix_glob" != "?" || { - if (set -f) 2>/dev/null; then - posix_glob= - else - posix_glob=: - fi - } -' - posix_mkdir= # Desired mode of installed file. @@ -97,7 +82,7 @@ dir_arg= dst_arg= copy_on_change=false -no_target_directory= +is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE @@ -137,46 +122,57 @@ while test $# -ne 0; do -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" - shift;; + shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; + case $mode in + *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; -o) chowncmd="$chownprog $2" - shift;; + shift;; -s) stripcmd=$stripprog;; - -t) dst_arg=$2 - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac - shift;; + -t) + is_target_a_directory=always + dst_arg=$2 + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; - -T) no_target_directory=true;; + -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; - --) shift - break;; + --) shift + break;; - -*) echo "$0: invalid option: $1" >&2 - exit 1;; + -*) echo "$0: invalid option: $1" >&2 + exit 1;; *) break;; esac shift done +# We allow the use of options -d and -T together, by making -d +# take the precedence; this is for compatibility with GNU install. + +if test -n "$dir_arg"; then + if test -n "$dst_arg"; then + echo "$0: target directory not allowed when installing a directory." >&2 + exit 1 + fi +fi + if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. @@ -208,6 +204,15 @@ if test $# -eq 0; then fi if test -z "$dir_arg"; then + if test $# -gt 1 || test "$is_target_a_directory" = always; then + if test ! -d "$dst_arg"; then + echo "$0: $dst_arg: Is not a directory." >&2 + exit 1 + fi + fi +fi + +if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 @@ -223,16 +228,16 @@ if test -z "$dir_arg"; then *[0-7]) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw='% 200' + u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw=,u+rw + u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac @@ -269,41 +274,15 @@ do # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then - if test -n "$no_target_directory"; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 + if test "$is_target_a_directory" = never; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else - # Prefer dirname, but fall back on a substitute if dirname fails. - dstdir=` - (dirname "$dst") 2>/dev/null || - expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$dst" : 'X\(//\)[^/]' \| \ - X"$dst" : 'X\(//\)$' \| \ - X"$dst" : 'X\(/\)' \| . 2>/dev/null || - echo X"$dst" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q' - ` - + dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi @@ -314,74 +293,81 @@ do if test $dstdir_status != 0; then case $posix_mkdir in '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + # $RANDOM is not portable (e.g. dash); use it when possible to + # lower collision chance + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # As "mkdir -p" follows symlinks and we work in /tmp possibly; so + # create the $tmpdir first (and fail if unsuccessful) to make sure + # that nobody tries to guess the $tmpdir name. + if (umask $mkdir_umask && + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null + fi + trap '' 0;; + esac;; esac if $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else @@ -391,53 +377,51 @@ do # directory the slow way, step by step, checking for races as we go. case $dstdir in - /*) prefix='/';; - [-=\(\)!]*) prefix='./';; - *) prefix='';; + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; esac - eval "$initialize_posix_glob" - oIFS=$IFS IFS=/ - $posix_glob set -f + set -f set fnord $dstdir shift - $posix_glob set +f + set +f IFS=$oIFS prefixes= for d do - test X"$d" = X && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ done if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true fi fi fi @@ -472,15 +456,12 @@ do # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - - eval "$initialize_posix_glob" && - $posix_glob set -f && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && - $posix_glob set +f && - + set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then @@ -493,24 +474,24 @@ do # to itself, or perhaps because mv is so ancient that it does not # support -f. { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 diff --git a/build-aux/missing b/build-aux/missing index db98974..f62bbae 100755 --- a/build-aux/missing +++ b/build-aux/missing @@ -3,7 +3,7 @@ scriptversion=2013-10-28.13; # UTC -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify diff --git a/configure b/configure index 4d025ce..ac7cee9 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 help2man 1.47.1. +# Generated by GNU Autoconf 2.69 for GNU help2man 1.47.2. # # Report bugs to . # @@ -579,8 +579,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='GNU help2man' PACKAGE_TARNAME='help2man' -PACKAGE_VERSION='1.47.1' -PACKAGE_STRING='GNU help2man 1.47.1' +PACKAGE_VERSION='1.47.2' +PACKAGE_STRING='GNU help2man 1.47.2' PACKAGE_BUGREPORT='bug-help2man@gnu.org' PACKAGE_URL='http://www.gnu.org/software/help2man/' @@ -628,6 +628,7 @@ infodir docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -698,6 +699,7 @@ datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' @@ -950,6 +952,15 @@ do | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1087,7 +1098,7 @@ fi for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1200,7 +1211,7 @@ if test "$ac_init_help" = "long"; then # 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 help2man 1.47.1 to adapt to many kinds of systems. +\`configure' configures GNU help2man 1.47.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1240,6 +1251,7 @@ Fine tuning of the installation directories: --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] @@ -1261,7 +1273,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GNU help2man 1.47.1:";; + short | recursive ) echo "Configuration of GNU help2man 1.47.2:";; esac cat <<\_ACEOF @@ -1348,7 +1360,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GNU help2man configure 1.47.1 +GNU help2man configure 1.47.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1449,7 +1461,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GNU help2man $as_me 1.47.1, which was +It was created by GNU help2man $as_me 1.47.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -1837,7 +1849,7 @@ $as_echo_n "checking for perl... " >&6; } if ${ac_cv_prog_PERL+:} false; then : $as_echo_n "(cached) " >&6 else - echo "configure:1840: ...version 5.008 required" >&5 + echo "configure:1852: ...version 5.008 required" >&5 # allow user to override if test -n "$PERL"; then ac_try="$PERL" @@ -1846,7 +1858,7 @@ else fi for ac_prog in $ac_try; do - echo "configure:1849: trying $ac_prog" >&5 + echo "configure:1861: trying $ac_prog" >&5 if ($ac_prog -e 'printf "found version %g\n",$] ;exit($]<5.008)') 1>&5 2>&1; then ac_cv_prog_PERL=$ac_prog break @@ -3765,7 +3777,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GNU help2man $as_me 1.47.1, which was +This file was extended by GNU help2man $as_me 1.47.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3820,7 +3832,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -GNU help2man config.status 1.47.1 +GNU help2man config.status 1.47.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/debian/changelog b/debian/changelog index eecb396..77deccb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +help2man (1.47.2) unstable; urgency=medium + + * Update Esperanto translation (thanks to Felipe Castro). + * Add Chinese (simplified) translation (thanks to Mingye Wang). + + -- Brendan O'Dea Fri, 11 Sep 2015 21:25:08 +1000 + help2man (1.47.1) unstable; urgency=medium * Set document language for localised info pages. diff --git a/help2man-de.info b/help2man-de.info index ba76ddf..bb7fe32 100644 --- a/help2man-de.info +++ b/help2man-de.info @@ -1,4 +1,4 @@ -This is help2man-de.info.tmp, produced by makeinfo version 5.2 from +This is help2man-de.info.tmp, produced by makeinfo version 6.0 from help2man-de.texi. Diese Datei dokumentiert den GNU-Befehl ‘help2man’, der einfache diff --git a/help2man-es.info b/help2man-es.info index 97500ad..87a7176 100644 --- a/help2man-es.info +++ b/help2man-es.info @@ -1,4 +1,4 @@ -This is help2man-es.info.tmp, produced by makeinfo version 5.2 from +This is help2man-es.info.tmp, produced by makeinfo version 6.0 from help2man-es.texi. Este fichero contiene la documentación del programa GNU ‘help2man’, el diff --git a/help2man-fr.info b/help2man-fr.info index 3152586..6fbbdc5 100644 --- a/help2man-fr.info +++ b/help2man-fr.info @@ -1,4 +1,4 @@ -This is help2man-fr.info.tmp, produced by makeinfo version 5.2 from +This is help2man-fr.info.tmp, produced by makeinfo version 6.0 from help2man-fr.texi. Ce fichier documente la commande GNU ‘help2man’ qui produit de simples diff --git a/help2man-pl.info b/help2man-pl.info index b7d04fb..71a9941 100644 --- a/help2man-pl.info +++ b/help2man-pl.info @@ -1,4 +1,4 @@ -This is help2man-pl.info.tmp, produced by makeinfo version 5.2 from +This is help2man-pl.info.tmp, produced by makeinfo version 6.0 from help2man-pl.texi. Ten plik opisuje polecenie GNU ‘help2man’, tworzące proste strony diff --git a/help2man-uk.info b/help2man-uk.info index dc08679..98451a9 100644 --- a/help2man-uk.info +++ b/help2man-uk.info @@ -1,4 +1,4 @@ -This is help2man-uk.info.tmp, produced by makeinfo version 5.2 from +This is help2man-uk.info.tmp, produced by makeinfo version 6.0 from help2man-uk.texi. У цьому файлі міститься документація до програми GNU ‘help2man’. diff --git a/help2man.1 b/help2man.1 index 876dedf..16f2954 100644 --- a/help2man.1 +++ b/help2man.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "June 2015" "help2man 1.47.1" "User Commands" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "September 2015" "help2man 1.47.2" "User Commands" .SH NAME help2man \- generate a simple manual page .SH SYNOPSIS diff --git a/help2man.PL b/help2man.PL index 96146eb..8110a2a 100755 --- a/help2man.PL +++ b/help2man.PL @@ -16,7 +16,7 @@ use 5.008; use Config; use Getopt::Long; -my ($program, $version) = ('help2man', '1.47.1'); +my ($program, $version) = ('help2man', '1.47.2'); my %opts; die "Usage: $0 [--quiet] [--stdout] [--with-gettext] [--name] [--version]\n" diff --git a/help2man.da.1 b/help2man.da.1 index ea61f41..575197c 100644 --- a/help2man.da.1 +++ b/help2man.da.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "juni 2015" "help2man 1.47.1" "Brugerkommandoer" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "september 2015" "help2man 1.47.2" "Brugerkommandoer" .SH NAVN help2man \- opret en simpel manualside .SH SYNOPSIS diff --git a/help2man.de.1 b/help2man.de.1 index adb5075..a21cd32 100644 --- a/help2man.de.1 +++ b/help2man.de.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "Juni 2015" "help2man 1.47.1" "Dienstprogramme für Benutzer" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "September 2015" "help2man 1.47.2" "Dienstprogramme für Benutzer" .SH BEZEICHNUNG help2man \- generiert eine einfache Handbuchseite .SH ÜBERSICHT diff --git a/help2man.el.1 b/help2man.el.1 index 7659eff..6fd1ace 100644 --- a/help2man.el.1 +++ b/help2man.el.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "Ιούνιος 2015" "help2man 1.47.1" "Εντολές χρήστη" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "Σεπτέμβριος 2015" "help2man 1.47.2" "Εντολές χρήστη" .SH NAME help2man \- δημιουργία απλής σελίδας εγχειριδίου .SH SYNOPSIS diff --git a/help2man.eo.1 b/help2man.eo.1 index 492405c..5a9969a 100644 --- a/help2man.eo.1 +++ b/help2man.eo.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "2015-06" "help2man 1.47.1" "Uzant-komandoj" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "2015-09" "help2man 1.47.2" "Uzant-komandoj" .SH NOMO help2man \- generas simplan man-paĝon .SH RESUMO diff --git a/help2man.es.1 b/help2man.es.1 index 04905dd..71fba3d 100644 --- a/help2man.es.1 +++ b/help2man.es.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "junio 2015" "help2man 1.47.1" "Órdenes de usuario" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "septiembre 2015" "help2man 1.47.2" "Órdenes de usuario" .SH NOMBRE help2man \- genera una página de manual básica .SH SINOPSIS diff --git a/help2man.fi.1 b/help2man.fi.1 index 31e3cdc..2b211d3 100644 --- a/help2man.fi.1 +++ b/help2man.fi.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "kesäkuu 2015" "help2man 1.47.1" "Käyttäjän sovellukset" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "syyskuu 2015" "help2man 1.47.2" "Käyttäjän sovellukset" .SH NIMI help2man \- luo yksinkertainen man-sivu .SH YLEISKATSAUS diff --git a/help2man.fr.1 b/help2man.fr.1 index 384bc81..1b23cfc 100644 --- a/help2man.fr.1 +++ b/help2man.fr.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "juin 2015" "help2man 1.47.1" "Commandes" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "septembre 2015" "help2man 1.47.2" "Commandes" .SH NOM help2man \- Créer une page de manuel sommaire .SH SYNOPSIS diff --git a/help2man.hr.1 b/help2man.hr.1 index 67e830d94a069ca1f9e9c5beac11616170e6f8b0..898f903df475711275a0158dac57c65ff9b50655 100644 GIT binary patch delta 44 ycmeyP@LOSm1EbMIM-iEz(yYWh1tSAPQzZqZjMSV0qg){0P|w6%&uC*2mjD1mKMf}U delta 45 zcmeyZ@JC^S1Eb+YM-f?{%!0(cECnM2LsKOMrHs^^0;Al-JOx8N6LUSojfGqS08@Gm Ag8%>k diff --git a/help2man.hu.1 b/help2man.hu.1 index 85b64e4..792dec0 100644 --- a/help2man.hu.1 +++ b/help2man.hu.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "2015. június" "help2man 1.47.1" "Felhasználói parancsok" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "2015. szeptember" "help2man 1.47.2" "Felhasználói parancsok" .SH NÉV help2man \- egy egyszerű kézikönyvoldal előállítása .SH LEÍRÁS diff --git a/help2man.info b/help2man.info index e9624b3..d54b766 100644 --- a/help2man.info +++ b/help2man.info @@ -1,4 +1,4 @@ -This is help2man.info, produced by makeinfo version 5.2 from +This is help2man.info, produced by makeinfo version 6.0 from help2man.texi. This file documents the GNU ‘help2man’ command which produces simple diff --git a/help2man.it.1 b/help2man.it.1 index f5cc8bf..db8b65f 100644 --- a/help2man.it.1 +++ b/help2man.it.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "giugno 2015" "help2man 1.47.1" "Comandi utente" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "settembre 2015" "help2man 1.47.2" "Comandi utente" .SH NOME help2man \- genera una semplice pagina di manuale .SH SINTASSI diff --git a/help2man.ja.1 b/help2man.ja.1 index 23f24c5bb72822723ac060c5d8d4144de2f8833e..6a0693cd833053113d7fcadd501e6b2262a8d874 100644 GIT binary patch delta 43 zcmZqIZP%UPz-TnlQCiIM*_;j~1*MGCoC2fV#5@H#5%+#YT3PuKorb-G*8L2r1M!AW33Wjy8%sY4005#>3cUaT diff --git a/help2man.pt_BR.1 b/help2man.pt_BR.1 index 461e487..9ead5c9 100644 --- a/help2man.pt_BR.1 +++ b/help2man.pt_BR.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "junho de 2015" "help2man 1.47.1" "Comandos de usuário" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "setembro de 2015" "help2man 1.47.2" "Comandos de usuário" .SH NOME help2man \- gera uma página de manual simples .SH SINOPSE diff --git a/help2man.ru.1 b/help2man.ru.1 index 15ba1e77436a6a227dc1dc838e61e1803daceeb4..0e9b636c299a0e52921e23223993197b3302d2da 100644 GIT binary patch delta 48 zcmdmJywP}q1EbMIM^R}*Jp)TUBLhQIB?YC7)SLpN+{8QuLp>97J)?<*ZHz`6f9#Y1 E08JYXh5!Hn delta 48 zcmdmJywP}q1Eb+YM^R}rJp(g6BLhQIB?YC7)SLpN+{8QuLp>97J;RBGZH$H+f9#Y1 E08KOwg#Z8m diff --git a/help2man.sr.1 b/help2man.sr.1 index 525d5c4bcde8a382d77f2efc0b5a58a108f64f0f..f306ab4c4d7c2925ddf4374f7e904fd165e1bf2f 100644 GIT binary patch delta 60 zcmX?Nc*k&p1EbMIM^VMb!xIi|1>*gOCmw2oviAV#jX=BsDAq7BUJj_TZXu)5W(CG2 F;sDrKA2a{} delta 36 scmca(c*Jmm1Eb+YM^VlhhbJCtK0M*j-ihUMK#^$+84WjEFfI`X03ehO@c;k- diff --git a/help2man.sv.1 b/help2man.sv.1 index bc6330e..efc0482 100644 --- a/help2man.sv.1 +++ b/help2man.sv.1 @@ -1,5 +1,5 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.1. -.TH HELP2MAN "1" "juni 2015" "help2man 1.47.1" "Användarkommandon" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.2. +.TH HELP2MAN "1" "september 2015" "help2man 1.47.2" "Användarkommandon" .SH NAMN help2man \- generera en enkel manualsida .SH BESKRIVNING diff --git a/help2man.uk.1 b/help2man.uk.1 index d5b139250d683d677963f7a48fc9ec823cf20fa9..28891de49819dfaaa5f6bcad3f80304a4e4cd1ae 100644 GIT binary patch delta 46 zcmZ2&vD#vS1EbMIM^Q;bJp)TULsKOMrHs^^0;Al-JOx8N6LUSIiTMqTMjJm^O9KEk C@C}s! delta 46 zcmZ2&vD#vS1Eb+YM^Q;LJp(g6LsKOMrHs^^0;Al-JOx8N6LUSoiTMqTh8sUvO9KEl C2Mv?} diff --git a/help2man.vi.1 b/help2man.vi.1 index f5b2909a76ddc4f75403e9e4cfbfb1c61abd8a57..d2fc71ac9013028ae4df743a66ac1e5b8aad6dff 100644 GIT binary patch delta 26 icmZ3jwMJ`#1EbMIM`_mNjKgd5CMJk68f`4!A_4$@NeOfS delta 25 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 T=v^qx`30{sIq$X0Lsj<|zfLo< delta 441 zcmXZYJxD@P7{>9(tjvhKVw$Cu_B9lGZTNDax ztUaiup{b$fAR>z9{-^HrJI~>q^Swk_2CTOU;*#&8=H7LCkW%^-jR}~$*b0s\n" "POT-Creation-Date: 2015-06-16 00:01+1000\n" -"PO-Revision-Date: 2014-07-02 08:23-0300\n" +"PO-Revision-Date: 2015-06-19 21:23-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" "Language: eo\n" diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo new file mode 100644 index 0000000000000000000000000000000000000000..28fce3c807ac4aa62f9b020fc7297fcd18d410e7 GIT binary patch literal 9203 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 WMUlf#rr01#*jMnw9Rhs%tn`1M!@nB< literal 0 HcmV?d00001 diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 0000000..568f720 --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,435 @@ +# zh_CN Tranalation for help2man. +# Copyright (C) 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the help2man package. +# Mingye Wang , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: help2man 1.46.6\n" +"Report-Msgid-Bugs-To: Brendan O'Dea \n" +"POT-Creation-Date: 2015-06-16 00:01+1000\n" +"PO-Revision-Date: 2015-09-04 18:51-0400\n" +"Last-Translator: Mingye Wang \n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.4\n" + +#: help2man:74 +#, perl-format +msgid "" +"GNU %s %s\n" +"\n" +"Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2009, " +"2010,\n" +"2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc.\n" +"This is free software; see the source for copying conditions. There is NO\n" +"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"\n" +"Written by Brendan O'Dea \n" +msgstr "" +"GNU %s %s\n" +"\n" +"版权所有 (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2009, " +"2010,\n" +"2011, 2012, 2013, 2014, 2015 自由软件基金会。\n" +"本软件为自由软件;参见源码以获取分发条件。本软件不含任何保证,甚至不含对于适" +"销性和对某一\n" +"特定用途的适用性的保证。\n" +"\n" +"作者 Brendan O'Dea \n" + +#: help2man:85 +#, perl-format +msgid "" +"`%s' generates a man page out of `--help' and `--version' output.\n" +"\n" +"Usage: %s [OPTION]... EXECUTABLE\n" +"\n" +" -n, --name=STRING description for the NAME paragraph\n" +" -s, --section=SECTION section number for manual page (1, 6, 8)\n" +" -m, --manual=TEXT name of manual (User Commands, ...)\n" +" -S, --source=TEXT source of program (FSF, Debian, ...)\n" +" -L, --locale=STRING select locale (default \"C\")\n" +" -i, --include=FILE include material from `FILE'\n" +" -I, --opt-include=FILE include material from `FILE' if it exists\n" +" -o, --output=FILE send output to `FILE'\n" +" -p, --info-page=TEXT name of Texinfo manual\n" +" -N, --no-info suppress pointer to Texinfo manual\n" +" -l, --libtool exclude the `lt-' from the program name\n" +" --help print this help, then exit\n" +" --version print version number, then exit\n" +"\n" +"EXECUTABLE should accept `--help' and `--version' options and produce output " +"on\n" +"stdout although alternatives may be specified using:\n" +"\n" +" -h, --help-option=STRING help option string\n" +" -v, --version-option=STRING version option string\n" +" --version-string=STRING version string\n" +" --no-discard-stderr include stderr when parsing option output\n" +"\n" +"Report bugs to .\n" +msgstr "" +"`%s' 根据 `--help' 和 `--version' 输出生成手册页面。\n" +"\n" +"用法:%s [选项]... 可执行程序\n" +"\n" +" -n, --name=STRING 名称段落的描述\n" +" -s, --section=SECTION 手册页章节号 (1, 6, 8)\n" +" -m, --manual=TEXT 手册名 (用户命令, ...)\n" +" -S, --source=TEXT 程序来源 (FSF, Debian, ...)\n" +" -L, --locale=STRING 选择语区 (默认 \"C\")\n" +" -i, --include=FILE 从 `FILE' 包含材料\n" +" -I, --opt-include=FILE 从 `FILE' 包含材料若其存在\n" +" -o, --output=FILE 输出到 `FILE'\n" +" -p, --info-page=TEXT Texinfo 手册名\n" +" -N, --no-info 不输出到 Texinfo 手册的指示\n" +" -l, --libtool 从程序名中忽略 `lt-' 前缀\n" +" --help 打印此帮助并退出\n" +" --version 打印版本号并退出\n" +"\n" +"可执行程序应接纳 `--help' 和 `--version' 选项并输出到标准输出,尽管你也可以这" +"样指定替代:\n" +"\n" +" -h, --help-option=STRING 帮助选项字串\n" +" -v, --version-option=STRING 版本选项字串\n" +" --version-string=STRING 版本字串\n" +" --no-discard-stderr 解析输出时包含标准错误\n" +"\n" +"报告错误给 .\n" + +#: help2man:183 +#, perl-format +msgid "%s: can't open `%s' (%s)" +msgstr "%s:无法打开 `%s' (%s)" + +#. Translators: "NAME", "SYNOPSIS" and other one or two word strings in all +#. upper case are manual page section headings. The man(1) manual page in your +#. language, if available should provide the conventional translations. +#: help2man:209 help2man:340 help2man:346 help2man:697 help2man.h2m.PL:88 +#: help2man.h2m.PL:138 +msgid "NAME" +msgstr "名称" + +#: help2man:209 help2man:415 help2man:697 help2man.h2m.PL:139 +msgid "SYNOPSIS" +msgstr "摘要" + +#: help2man:259 +#, perl-format +msgid "%s: no valid information found in `%s'" +msgstr "%s: `%s' 内找不到有效信息" + +#. Translators: the following message is a strftime(3) format string, which in +#. the English version expands to the month as a word and the full year. It +#. is used on the footer of the generated manual pages. If in doubt, you may +#. just use %x as the value (which should be the full locale-specific date). +#: help2man:289 +msgid "%B %Y" +msgstr "%Y %B" + +#: help2man:296 +#, perl-format +msgid "%s: can't unlink %s (%s)" +msgstr "%s: 无法取消链接 %s (%s)" + +#: help2man:300 +#, perl-format +msgid "%s: can't create %s (%s)" +msgstr "%s:无法创建 %s (%s)" + +#: help2man:354 +#, perl-format +msgid "%s \\- manual page for %s %s" +msgstr "%s \\- %s 手册 %s" + +#: help2man:368 +msgid "System Administration Utilities" +msgstr "系统管理实用工具" + +#: help2man:369 +msgid "Games" +msgstr "游戏" + +#: help2man:370 +msgid "User Commands" +msgstr "用户命令" + +#. Translators: "Usage" and "or" here are patterns (regular expressions) which +#. are used to match the usage synopsis in program output. An example from cp +#. (GNU coreutils) which contains both strings: +#. Usage: cp [OPTION]... [-T] SOURCE DEST +#. or: cp [OPTION]... SOURCE... DIRECTORY +#. or: cp [OPTION]... -t DIRECTORY SOURCE... +#: help2man:381 +msgid "Usage" +msgstr "用法" + +#: help2man:382 +msgid "or" +msgstr "或者" + +#: help2man:419 help2man:697 help2man.h2m.PL:140 +msgid "DESCRIPTION" +msgstr "描述" + +#. Translators: patterns are used to match common program output. In the source +#. these strings are all of the form of "my $PAT_something = _('...');" and are +#. regular expressions. If there is more than one commonly used string, you +#. may separate alternatives with "|". Spaces in these expressions are written +#. as " +" to indicate that more than one space may be matched. The string +#. "(?:[\\w-]+ +)?" in the bug reporting pattern is used to indicate an +#. optional word, so that either "Report bugs" or "Report _program_ bugs" will +#. be matched. +#: help2man:444 +msgid "Report +(?:[\\w-]+ +)?bugs|Email +bug +reports +to" +msgstr "" +"Report +(?:[\\w-]+ +)?bugs|Email +bug +reports +to|报告(程序)?(错误|臭虫|" +"bug)?(给|到)?:?|报(错|bug)(给|到)?:?|将(程序)?(错误|臭虫|bug)?报告(给|到)?" + +#: help2man:445 +msgid "Written +by" +msgstr "Written +by|编者|作者" + +#: help2man:446 +msgid "Options" +msgstr "选项" + +#: help2man:447 +msgid "Environment" +msgstr "环境" + +#: help2man:448 +msgid "Files" +msgstr "文件" + +#: help2man:449 +msgid "Examples" +msgstr "示例" + +#: help2man:450 +msgid "This +is +free +software" +msgstr "This +is +free +software|(此|本)(软件)?为(自由|免费)?软件" + +#: help2man:464 help2man:697 help2man.h2m.PL:141 +msgid "OPTIONS" +msgstr "选项" + +#: help2man:469 help2man:698 help2man.h2m.PL:142 +msgid "ENVIRONMENT" +msgstr "环境" + +#: help2man:474 help2man:698 help2man.h2m.PL:143 +msgid "FILES" +msgstr "文件" + +#: help2man:479 help2man:602 help2man:698 help2man.h2m.PL:144 +msgid "EXAMPLES" +msgstr "示例" + +#: help2man:495 help2man:623 help2man:699 help2man.h2m.PL:148 +msgid "COPYRIGHT" +msgstr "版权" + +#: help2man:501 help2man:629 help2man:699 help2man.h2m.PL:147 +msgid "REPORTING BUGS" +msgstr "报告程序臭虫" + +#: help2man:507 help2man:698 help2man.h2m.PL:146 +msgid "AUTHOR" +msgstr "作者" + +#: help2man:661 help2man:699 help2man.h2m.PL:149 +msgid "SEE ALSO" +msgstr "参见" + +#: help2man:664 +#, perl-format +msgid "" +"The full documentation for\n" +".B %s\n" +"is maintained as a Texinfo manual. If the\n" +".B info\n" +"and\n" +".B %s\n" +"programs are properly installed at your site, the command\n" +".IP\n" +".B info %s\n" +".PP\n" +"should give you access to the complete manual.\n" +msgstr "" +".B %s\n" +"的完整文档以 Texinfo 手册的形式维护。若\n" +".B info\n" +"和\n" +".B %s\n" +"程序在你处已安装妥当,运行命令\n" +".IP\n" +".B info %s\n" +".PP\n" +"应可提供完整文档。\n" + +#: help2man:730 +#, perl-format +msgid "%s: error writing to %s (%s)" +msgstr "%s:写入 %s 时出错 (%s)" + +#: help2man:756 +#, perl-format +msgid "%s: can't get `%s' info from %s%s" +msgstr "%s: 无法得到 `%s' 信息,从 %s%s" + +#: help2man:758 +msgid "Try `--no-discard-stderr' if option outputs to stderr" +msgstr "尝试 `--no-discard-stderr' 如果选项输出到了标准错误" + +#: help2man.h2m.PL:83 +msgid "Include file for help2man man page" +msgstr "help2man 手册页的包含文件" + +#: help2man.h2m.PL:89 +msgid "help2man \\- generate a simple manual page" +msgstr "help2man \\- 输出一份简单的手册页" + +#: help2man.h2m.PL:92 +msgid "INCLUDE FILES" +msgstr "包含文件" + +#: help2man.h2m.PL:94 +msgid "" +"Additional material may be included in the generated output with the\n" +".B \\-\\-include\n" +"and\n" +".B \\-\\-opt\\-include\n" +"options. The format is simple:\n" +"\n" +" [section]\n" +" text\n" +"\n" +" /pattern/\n" +" text\n" +msgstr "" +"附加材料可以通过\n" +".B \\-\\-include\n" +"和\n" +".B \\-\\-opt\\-include\n" +"选项加入生成的输出。格式很简单\n" +"\n" +" [章节]\n" +" 文字\n" +"\n" +" /正则表达式/\n" +" 文字\n" + +#: help2man.h2m.PL:109 +msgid "" +"Blocks of verbatim *roff text are inserted into the output either at\n" +"the start of the given\n" +".BI [ section ]\n" +"(case insensitive), or after a paragraph matching\n" +".BI / pattern /\\fR.\n" +msgstr "" +"逐字 *roff 文字块将在给定的\n" +".BI [ 章节 ]\n" +"(大小写不敏感)开始处,或在匹配\n" +".BI / 正则表达式 /\n" +"的段后加入。\n" + +#: help2man.h2m.PL:118 +msgid "" +"Patterns use the Perl regular expression syntax and may be followed by\n" +"the\n" +".IR i ,\n" +".I s\n" +"or\n" +".I m\n" +"modifiers (see\n" +".BR perlre (1)).\n" +msgstr "" +"正则表达式模式使用 Perl 正则表达式语法指定,并可以跟随如下修饰符:\n" +".IR i ,\n" +".I s\n" +"或\n" +".I m\n" +"(参见\n" +".BR perlre(1)\n" +").\n" + +#: help2man.h2m.PL:130 +msgid "" +"Lines before the first section or pattern which begin with `\\-' are\n" +"processed as options. Anything else is silently ignored and may be\n" +"used for comments, RCS keywords and the like.\n" +msgstr "" +"第一节前的行,或由 `\\-' 开始的模式,将被认为是选项。\n" +"其他的都将被安静地忽略,可被用作注释、RCS 关键字等。\n" + +#: help2man.h2m.PL:136 +msgid "The section output order (for those included) is:" +msgstr "章节输出(包含的)顺序为:" + +#: help2man.h2m.PL:145 +msgid "other" +msgstr "其它" + +#: help2man.h2m.PL:153 +msgid "" +"Any\n" +".B [NAME]\n" +"or\n" +".B [SYNOPSIS]\n" +"sections appearing in the include file will replace what would have\n" +"automatically been produced (although you can still override the\n" +"former with\n" +".B \\-\\-name\n" +"if required).\n" +msgstr "" +"在包含文件中的任何\n" +".B [名称]\n" +"或\n" +".B [摘要]\n" +"章节都将替换自动生成的内容。如果有必要的话,你还是可以用\n" +".B \\-\\-name\n" +"覆盖前者。\n" + +#: help2man.h2m.PL:166 +msgid "" +"Other sections are prepended to the automatically produced output for\n" +"the standard sections given above, or included at\n" +".I other\n" +"(above) in the order they were encountered in the include file.\n" +msgstr "" +"其他章节会自动附加到以上自动生成章节之上,或按照它们在包含文件中出现的顺序包" +"含于\n" +".I 其他\n" +"(以上)章节内。\n" + +#: help2man.h2m.PL:174 +msgid "" +"Placement of the text within the section may be explicitly requested by " +"using\n" +"the syntax\n" +".RI [< section ],\n" +".RI [= section ]\n" +"or\n" +".RI [> section ]\n" +"to place the additional text before, in place of, or after the default\n" +"output respectively.\n" +msgstr "" +"文字在章节中的位置可分别用分别用以下方式来指明:\n" +".RI [< 章节 ],\n" +".RI [= 章节 ]\n" +"或\n" +".RI [> 章节 ]\n" +",分别将附加文字置于默认文字之前、替代默认文字和置于其后。\n" + +#: help2man.h2m.PL:185 +msgid "AVAILABILITY" +msgstr "可用性" + +#: help2man.h2m.PL:186 +msgid "The latest version of this distribution is available on-line from:" +msgstr "本发行的最新版本可以在此处在线找到:" -- 2.7.4